summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-04-25 23:00:42 -0700
committerKeith Packard <keithp@keithp.com>2011-04-25 23:00:42 -0700
commit72a03baa73698fc1213a74320e6253c2380dd8fa (patch)
tree2121e556ddaf08b80cfc76cfe175b5e5d9a37e26
parente3bf13a38d24e95b16df1e2f01952d10f24cda10 (diff)
altosui: Fix BT manage dialog so that the device lists resize
This makes the device scrolling lists fill any extra space when the window is resized. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altosui/AltosBTManage.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/altosui/AltosBTManage.java b/altosui/AltosBTManage.java
index 98a8b757..10fdab3b 100644
--- a/altosui/AltosBTManage.java
+++ b/altosui/AltosBTManage.java
@@ -241,6 +241,8 @@ public class AltosBTManage extends JDialog implements ActionListener, Iterable<A
c.gridy = 0;
c.gridwidth = 1;
c.gridheight = 1;
+ c.weightx = 0;
+ c.weighty = 0;
pane.add(new JLabel("Known Devices"), c);
known_devices = new DeviceList();
@@ -256,6 +258,8 @@ public class AltosBTManage extends JDialog implements ActionListener, Iterable<A
c.gridy = 1;
c.gridwidth = 1;
c.gridheight = 2;
+ c.weightx = 1;
+ c.weighty = 1;
pane.add(known_list_scroller, c);
/*
@@ -267,6 +271,9 @@ public class AltosBTManage extends JDialog implements ActionListener, Iterable<A
c.gridy = 0;
c.gridwidth = 1;
c.gridheight = 1;
+ c.weightx = 0;
+ c.weighty = 0;
+
pane.add(new JLabel("Visible Devices"), c);
visible_devices = new DeviceList();
@@ -279,6 +286,8 @@ public class AltosBTManage extends JDialog implements ActionListener, Iterable<A
c.gridy = 1;
c.gridheight = 2;
c.gridwidth = 1;
+ c.weightx = 1;
+ c.weighty = 1;
pane.add(visible_list_scroller, c);
/*
@@ -293,6 +302,8 @@ public class AltosBTManage extends JDialog implements ActionListener, Iterable<A
c.gridy = 1;
c.gridheight = 1;
c.gridwidth = 1;
+ c.weightx = 0;
+ c.weighty = 0;
pane.add(select_arrow, c);
BasicArrowButton deselect_arrow = new BasicArrowButton(SwingConstants.EAST);
@@ -304,6 +315,8 @@ public class AltosBTManage extends JDialog implements ActionListener, Iterable<A
c.gridy = 2;
c.gridheight = 1;
c.gridwidth = 1;
+ c.weightx = 0;
+ c.weighty = 0;
pane.add(deselect_arrow, c);
JButton cancel_button = new JButton("Cancel");
@@ -315,6 +328,8 @@ public class AltosBTManage extends JDialog implements ActionListener, Iterable<A
c.gridy = 3;
c.gridheight = 1;
c.gridwidth = 1;
+ c.weightx = 0;
+ c.weighty = 0;
pane.add(cancel_button, c);
JButton ok_button = new JButton("OK");
@@ -326,6 +341,8 @@ public class AltosBTManage extends JDialog implements ActionListener, Iterable<A
c.gridy = 3;
c.gridheight = 1;
c.gridwidth = 1;
+ c.weightx = 0;
+ c.weighty = 0;
pane.add(ok_button, c);
getRootPane().setDefaultButton(ok_button);