summaryrefslogtreecommitdiffstats
path: root/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImagePublishedWindowLayout.java
diff options
context:
space:
mode:
authorJonathan Bauer2016-05-12 11:37:49 +0200
committerJonathan Bauer2016-05-12 11:37:49 +0200
commit7c284dca69f4c42ca3e188479034db107d982f77 (patch)
tree95eb7e808ebff9449b6537cc3b269066277eca7b /dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImagePublishedWindowLayout.java
parent[client] add confirmation message before uploading an image to the masterserver (diff)
downloadtutor-module-7c284dca69f4c42ca3e188479034db107d982f77.tar.gz
tutor-module-7c284dca69f4c42ca3e188479034db107d982f77.tar.xz
tutor-module-7c284dca69f4c42ca3e188479034db107d982f77.zip
[client] add search field to the ImagePublishedWindow
Diffstat (limited to 'dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImagePublishedWindowLayout.java')
-rw-r--r--dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImagePublishedWindowLayout.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImagePublishedWindowLayout.java b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImagePublishedWindowLayout.java
index 256d763f..8f69d1f4 100644
--- a/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImagePublishedWindowLayout.java
+++ b/dozentenmodul/src/main/java/org/openslx/dozmod/gui/window/layout/ImagePublishedWindowLayout.java
@@ -23,10 +23,10 @@ public class ImagePublishedWindowLayout extends JDialog {
protected final ImagePublishedTable imagePublishedTable;
private static final int ICON_SIZE_Y = 24;
+ protected final JTextField txtSearch;
protected final JButton btnDownload;
protected final JButton btnSatDownload;
protected final JButton btnClose;
- protected final JTextField txtSearch;
private static String title = "Öffentliche VMs";
@@ -35,7 +35,6 @@ public class ImagePublishedWindowLayout extends JDialog {
: ModalityType.MODELESS);
GridManager grid = new GridManager(this, 1);
-
// --------------- filter field --------------------------------------
JPanel filterPanel = new JPanel();
filterPanel.setLayout(new BoxLayout(filterPanel, BoxLayout.LINE_AXIS));
@@ -71,8 +70,8 @@ public class ImagePublishedWindowLayout extends JDialog {
// --------------- end button panel ----------------------------------
// pack it all
-// grid.add(filterPanel).fill(true, false).expand(true, false);
-// grid.nextRow(); // TODO working search box
+ grid.add(filterPanel).fill(true, false).expand(true, false);
+ grid.nextRow();
grid.add(listPane).fill(true, true).expand(true, true);
grid.nextRow();
grid.add(buttonPanel).fill(true, false).expand(true, false);