diff options
| author | Michael Wilson | 2014-10-07 14:02:16 +0200 |
|---|---|---|
| committer | Michael Wilson | 2014-10-07 14:02:16 +0200 |
| commit | 6db33b5e74bd351bc7d9f1130fe725479d861ba1 (patch) | |
| tree | 2ca010e3552bfa23d35b890520de33bcb3c3c426 /dozentenmodul/src/main/java/gui/lecture/EditLectureLink_GUI.java | |
| parent | -Verwaltung von Rechten ist nun in der PermissionCreateImage_GUI.java möglich (diff) | |
| parent | Merge branch 'master' of ssh://git.openslx.org/openslx-ng/tutor-module (diff) | |
| download | tutor-module-6db33b5e74bd351bc7d9f1130fe725479d861ba1.tar.gz tutor-module-6db33b5e74bd351bc7d9f1130fe725479d861ba1.tar.xz tutor-module-6db33b5e74bd351bc7d9f1130fe725479d861ba1.zip | |
Merge branch 'master' of ssh://git.openslx.org/openslx-ng/tutor-module
Diffstat (limited to 'dozentenmodul/src/main/java/gui/lecture/EditLectureLink_GUI.java')
| -rw-r--r-- | dozentenmodul/src/main/java/gui/lecture/EditLectureLink_GUI.java | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/gui/lecture/EditLectureLink_GUI.java b/dozentenmodul/src/main/java/gui/lecture/EditLectureLink_GUI.java index dce2ec2a..63827070 100644 --- a/dozentenmodul/src/main/java/gui/lecture/EditLectureLink_GUI.java +++ b/dozentenmodul/src/main/java/gui/lecture/EditLectureLink_GUI.java @@ -119,6 +119,13 @@ public class EditLectureLink_GUI extends JFrame { modelMyImages); final TableRowSorter<TableModel> rowSorterPublicVorlagen = new TableRowSorter<TableModel>( modelPublicVorlagen); + private JTextField textField; + + private static final String HELP_MESSAGE = "<html><div align=\"center\">" + + "Ändern Sie hier das Image, zu dem Ihre Veranstaltung gehört.<br />" + + "Wählen Sie das Image aus, das zu Ihrer Veranstaltung passt und klicken Sie anschließend auf \"Veranstaltung ändern und abschließen\"." + + "</div></html>"; + /** * Create the dialog. */ @@ -224,7 +231,7 @@ public class EditLectureLink_GUI extends JFrame { getContentPane().add(panel); panel.setLayout(null); { - JLabel lblNewLabel = new JLabel("Image verlinken"); + JLabel lblNewLabel = new JLabel("Veranstaltung auf ein Image verlinken"); lblNewLabel.setBounds(10, 11, 509, 22); panel.add(lblNewLabel); lblNewLabel.setFont(new Font("Tahoma", Font.BOLD, 18)); @@ -927,6 +934,15 @@ public class EditLectureLink_GUI extends JFrame { }); mnNewMenu_1.add(mntmAbout); + JMenu mnNewMenu_Info = new JMenu("Info"); + mnNewMenu_Info.addMouseListener(new MouseAdapter() { + @Override + public void mouseClicked(MouseEvent arg0) { + JOptionPane.showMessageDialog(null, HELP_MESSAGE, "Hilfe zu dieser Oberfläche", JOptionPane.INFORMATION_MESSAGE); + } + }); + menuBar.add(mnNewMenu_Info); + } // Initiale Beffuelung eines Table models |
