[RFC][Icedtea-web]: Make itweb-settings resizable.
Deepak Bhole
dbhole at redhat.com
Tue Jun 14 09:01:51 PDT 2011
* Andrew Su <asu at redhat.com> [2011-06-14 10:33]:
> Hello,
>
> This patch is to allow itweb-settings to be resizable.
>
> Issue was that in gnome3 some buttons were being pushed off the visible areas.
>
Tried this out and everything is now correctly resizable.
It seems there is an unnecessary change in CertificatePane.java. After
removing that, this one is OK for head and 1.1.
Cheers,
Deepak
>
> ChangeLog:
> 2011-06-14 Andrew Su <asu at redhat.com>
>
> * netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java:
> (ControlPanel): Removed line that prevents resizing.
> (createMainSettingsPanel): Detect the minimum size of panels
> instead of fixed size.
> * netx/net/sourceforge/jnlp/controlpanel/NetworkSettingsPanel.java:
> (addComponents): Changed to update size when tool is being resized.
> * netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java
> (addComponents): Changed to a layout that will resize itself.
>
> Ok for HEAD?
>
> Cheers,
> Andrew
> diff -r 0398f63d1b21 netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java
> --- a/netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java Fri Jun 10 13:15:00 2011 -0400
> +++ b/netx/net/sourceforge/jnlp/controlpanel/ControlPanel.java Tue Jun 14 10:11:23 2011 -0400
> @@ -115,7 +115,6 @@
> setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
> pack();
> setMinimumSize(getPreferredSize());
> - setResizable(false);
> }
>
> private JPanel createTopPanel() {
> @@ -232,9 +231,23 @@
>
> // Add panels.
> final JPanel settingsPanel = new JPanel(new CardLayout());
> +
> + // Calculate largest minimum size we should use.
> + int height = 0;
> + int width = 0;
> for (SettingsPanel panel : panels) {
> JPanel p = panel.getPanel();
> - p.setPreferredSize(new Dimension(530, 360));
> + Dimension d = p.getMinimumSize();
> + if (d.height > height)
> + height = d.height;
> + if (d.width > width)
> + width = d.width;
> + }
> + Dimension dim = new Dimension(width, height);
> +
> + for (SettingsPanel panel : panels) {
> + JPanel p = panel.getPanel();
> + p.setPreferredSize(dim);
> settingsPanel.add(p, panel.toString());
> }
>
> diff -r 0398f63d1b21 netx/net/sourceforge/jnlp/controlpanel/NetworkSettingsPanel.java
> --- a/netx/net/sourceforge/jnlp/controlpanel/NetworkSettingsPanel.java Fri Jun 10 13:15:00 2011 -0400
> +++ b/netx/net/sourceforge/jnlp/controlpanel/NetworkSettingsPanel.java Tue Jun 14 10:11:23 2011 -0400
> @@ -25,6 +25,7 @@
> import java.awt.FlowLayout;
> import java.awt.GridBagConstraints;
> import java.awt.GridBagLayout;
> +import java.awt.GridLayout;
> import java.awt.event.ActionEvent;
> import java.awt.event.ActionListener;
> import java.awt.event.ItemEvent;
> @@ -108,8 +109,8 @@
> this.description.add(description[i], String.valueOf(i - 1));
>
> // Settings for selecting Proxy Server
> - JPanel proxyServerPanel = new JPanel(new BorderLayout());
> - JPanel proxyLocationPanel = new JPanel(new FlowLayout(FlowLayout.LEADING));
> + JPanel proxyServerPanel = new JPanel(new GridLayout(0, 1));
> + JPanel proxyLocationPanel = new JPanel(new GridBagLayout());
> JPanel proxyBypassPanel = new JPanel(new FlowLayout(FlowLayout.LEADING));
>
> JLabel addressLabel = new JLabel(Translator.R("NSAddress") + ":");
> @@ -140,17 +141,24 @@
> config.setProperty(properties[3], String.valueOf(e.getStateChange() == ItemEvent.SELECTED));
> }
> });
> - proxyLocationPanel.add(Box.createRigidArea(new Dimension(13, 0)));
> - proxyLocationPanel.add(addressLabel);
> - proxyLocationPanel.add(addressField);
> - proxyLocationPanel.add(portLabel);
> - proxyLocationPanel.add(portField);
> - proxyLocationPanel.add(advancedProxyButton);
> - proxyBypassPanel.add(Box.createRigidArea(new Dimension(10, 0)));
> + c.gridy = 0;
> + c.gridx = GridBagConstraints.RELATIVE;
> + c.weightx = 0;
> + proxyLocationPanel.add(Box.createHorizontalStrut(20), c);
> + proxyLocationPanel.add(addressLabel, c);
> + c.weightx = 1;
> + proxyLocationPanel.add(addressField, c);
> + c.weightx = 0;
> + proxyLocationPanel.add(portLabel, c);
> + c.weightx = 1;
> + proxyLocationPanel.add(portField, c);
> + c.weightx = 0;
> + proxyLocationPanel.add(advancedProxyButton, c);
> + proxyBypassPanel.add(Box.createHorizontalStrut(5));
> proxyBypassPanel.add(bypassCheckBox);
>
> - proxyServerPanel.add(proxyLocationPanel, BorderLayout.CENTER);
> - proxyServerPanel.add(proxyBypassPanel, BorderLayout.SOUTH);
> + proxyServerPanel.add(proxyLocationPanel);
> + proxyServerPanel.add(proxyBypassPanel);
>
> JRadioButton directConnection = new JRadioButton(Translator.R("NSDirectConnection"), config.getProperty(properties[0]).equals("0"));
> directConnection.setActionCommand("0");
> @@ -175,15 +183,20 @@
> modeSelect.add(directConnection);
>
> // Settings for Automatic Proxy Configuration Script
> - JPanel proxyAutoPanel = new JPanel(new FlowLayout(FlowLayout.LEADING));
> + JPanel proxyAutoPanel = new JPanel(new GridBagLayout());
> JLabel locationLabel = new JLabel(Translator.R("NSScriptLocation") + ":");
> final JTextField locationField = new JTextField(config.getProperty(properties[4]), 20);
> locationField.getDocument().addDocumentListener(new DocumentAdapter(config, properties[4]));
>
> - proxyAutoPanel.add(Box.createRigidArea(new Dimension(13, 0)));
> - proxyAutoPanel.add(locationLabel);
> - proxyAutoPanel.add(locationField);
> + c.gridx = 0;
> + proxyAutoPanel.add(Box.createHorizontalStrut(20), c);
> + c.gridx = GridBagConstraints.RELATIVE;
> + proxyAutoPanel.add(locationLabel, c);
> + c.weightx = 1;
> + proxyAutoPanel.add(locationField, c);
>
> + c.weighty = 0;
> + c.gridx = 0;
> c.gridy = 0;
> settingPanel.add(networkDesc, c);
> c.gridy = 1;
> diff -r 0398f63d1b21 netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java
> --- a/netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java Fri Jun 10 13:15:00 2011 -0400
> +++ b/netx/net/sourceforge/jnlp/security/viewer/CertificatePane.java Tue Jun 14 10:11:23 2011 -0400
> @@ -42,6 +42,7 @@
> import java.awt.BorderLayout;
> import java.awt.Dimension;
> import java.awt.FlowLayout;
> +import java.awt.GridLayout;
> import java.awt.event.ActionEvent;
> import java.awt.event.ActionListener;
> import java.awt.event.KeyEvent;
> @@ -241,6 +242,8 @@
> closePanel.add(closeButton, BorderLayout.EAST);
> main.add(closePanel, BorderLayout.SOUTH);
> }
> +
> + setLayout(new GridLayout(0,1));
> add(main);
>
> }
More information about the distro-pkg-dev
mailing list