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/image/FTPSearchDownloader_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/image/FTPSearchDownloader_GUI.java')
| -rw-r--r-- | dozentenmodul/src/main/java/gui/image/FTPSearchDownloader_GUI.java | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/dozentenmodul/src/main/java/gui/image/FTPSearchDownloader_GUI.java b/dozentenmodul/src/main/java/gui/image/FTPSearchDownloader_GUI.java index dc5de7b0..49098677 100644 --- a/dozentenmodul/src/main/java/gui/image/FTPSearchDownloader_GUI.java +++ b/dozentenmodul/src/main/java/gui/image/FTPSearchDownloader_GUI.java @@ -93,6 +93,10 @@ public class FTPSearchDownloader_GUI extends JFrame implements private boolean isCurrentlyLoading = false; // currently up or downloading // file private boolean isAborted = false; // down- or upload was manually aborted + private static final String HELP_MESSAGE = "<html><div align=\"center\">" + + "Hier können Sie Images herunterladen.<br />" + + "Klicken Sie anschließend auf \"Zurück\" oder \"Hauptmenü\", um zu Ihrer vorherigen Auswahl oder zum Menü zurückzugelangen.<br />" + + "</div></html>"; /** * Create the frame. @@ -325,7 +329,7 @@ public class FTPSearchDownloader_GUI extends JFrame implements contentPanel.add(lblSchritt_3); JLabel lblKlickenSieAuf = new JLabel( - "Klicken Sie auf \"Fertigstellen\"."); + "Klicken Sie auf \"Zurück\" oder \"Fertigstellen\"."); lblKlickenSieAuf.setBounds(102, 423, 241, 14); contentPanel.add(lblKlickenSieAuf); @@ -495,6 +499,16 @@ public class FTPSearchDownloader_GUI extends JFrame implements btnMainMenu.setActionCommand("Cancel"); buttonPane.add(btnMainMenu); } + + 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); + setVisible(true); } |
