/hg/icedtea6: Backport S6642612: JFileChooser's approve buttons ...
omajid at icedtea.classpath.org
omajid at icedtea.classpath.org
Mon Jan 17 13:57:43 PST 2011
changeset 974192ac0471 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=974192ac0471
author: Omair Majid <omajid at redhat.com>
date: Mon Jan 17 16:51:25 2011 -0500
Backport S6642612: JFileChooser's approve buttons should be the same
size (GTK)
2011-01-17 Omair Majid <omajid at redhat.com>
* Makefile.am (ICEDTEA_PATCHES): Add new patch.
* patches/openjdk/6642612-filechooser_button_sizes.patch: New file.
diffstat:
4 files changed, 75 insertions(+), 2 deletions(-)
ChangeLog | 5 +
Makefile.am | 3
NEWS | 2
patches/openjdk/6642612-filechooser_button_sizes.patch | 67 ++++++++++++++++
diffs (108 lines):
diff -r fd09f4a3b767 -r 974192ac0471 ChangeLog
--- a/ChangeLog Sun Jan 09 00:43:01 2011 +0000
+++ b/ChangeLog Mon Jan 17 16:51:25 2011 -0500
@@ -1,3 +1,8 @@ 2011-01-07 Andrew John Hughes <ahughes
+2011-01-17 Omair Majid <omajid at redhat.com>
+
+ * Makefile.am (ICEDTEA_PATCHES): Add new patch.
+ * patches/openjdk/6642612-filechooser_button_sizes.patch: New file.
+
2011-01-07 Andrew John Hughes <ahughes at redhat.com>
* patches/jtreg-TestXEmbedServer-fix.patch:
diff -r fd09f4a3b767 -r 974192ac0471 Makefile.am
--- a/Makefile.am Sun Jan 09 00:43:01 2011 +0000
+++ b/Makefile.am Mon Jan 17 16:51:25 2011 -0500
@@ -316,7 +316,8 @@ ICEDTEA_PATCHES = \
patches/openjdk/6687968-pngimagereader_mem_leak.patch \
patches/openjdk/6541476-png-iTXt-chunk.patch \
patches/openjdk/6782079-png_metadata_oom.patch \
- patches/661505-jpeg.patch
+ patches/661505-jpeg.patch \
+ patches/openjdk/6642612-filechooser_button_sizes.patch
if WITH_ALT_HSBUILD
ICEDTEA_PATCHES += \
diff -r fd09f4a3b767 -r 974192ac0471 NEWS
--- a/NEWS Sun Jan 09 00:43:01 2011 +0000
+++ b/NEWS Mon Jan 17 16:51:25 2011 -0500
@@ -55,7 +55,7 @@ New in release 1.10 (2010-XX-XX):
- S6541476, RH665355: PNG imageio plugin incorrectly handles iTXt chunk
- S6782079: PNG: reading metadata may cause OOM on truncated images
- RH661505: JPEGs with sRGB IEC61966-2.1 color profiles have wrong colors
-
+ - S6642612: JFileChooser's approve buttons should be the same size (GTK)
* Bug fixes
- S7003777, RH647674: JTextPane produces incorrect content after parsing the html text
- S7004655, PR590: Unable to activate (click) checkboxes in jtable
diff -r fd09f4a3b767 -r 974192ac0471 patches/openjdk/6642612-filechooser_button_sizes.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/openjdk/6642612-filechooser_button_sizes.patch Mon Jan 17 16:51:25 2011 -0500
@@ -0,0 +1,67 @@
+# HG changeset patch
+# User rupashka
+# Date 1209546061 -14400
+# Node ID 9a322f3dccd8bf3ab5726ec18fbaa0131938f2c4
+# Parent eca2e5716b86c31a2f6421473bcee3fec30a500f
+6642612: JFileChooser approve buttons should use Open and Save text (GTK)
+Summary: In FileChooser under GTK LaF "Ok" and "Cancel" buttons were made with the same size
+Reviewed-by: peterz
+
+diff -r eca2e5716b86 -r 9a322f3dccd8 src/share/classes/com/sun/java/swing/plaf/gtk/GTKFileChooserUI.java
+--- openjdk/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/GTKFileChooserUI.java Wed Apr 30 12:32:05 2008 +0400
++++ openjdk/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/GTKFileChooserUI.java Wed Apr 30 13:01:01 2008 +0400
+@@ -97,14 +97,11 @@
+ private static final Dimension hstrut3 = new Dimension(3, 1);
+ private static final Dimension vstrut10 = new Dimension(1, 10);
+
+- private static final Insets insets = new Insets(10, 10, 10, 10);
+-
+ private static Dimension prefListSize = new Dimension(75, 150);
+
+ private static Dimension PREF_SIZE = new Dimension(435, 360);
+ private static Dimension MIN_SIZE = new Dimension(200, 300);
+
+- private static Dimension PREF_ACC_SIZE = new Dimension(10, 10);
+ private static Dimension ZERO_ACC_SIZE = new Dimension(1, 1);
+
+ private static Dimension MAX_SIZE = new Dimension(Short.MAX_VALUE, Short.MAX_VALUE);
+@@ -125,7 +122,6 @@
+ private JPanel bottomButtonPanel;
+ private GTKDirectoryModel model = null;
+ private Action newFolderAction;
+- private JPanel interior;
+ private boolean readOnly;
+ private boolean showDirectoryIcons;
+ private boolean showFileIcons;
+@@ -710,15 +706,19 @@
+ bottomButtonPanel.setName("GTKFileChooser.bottomButtonPanel");
+ align(bottomButtonPanel);
+
++ JPanel pnButtons = new JPanel(new GridLayout(1, 2, 5, 0));
++
+ JButton cancelButton = getCancelButton(fc);
+ align(cancelButton);
+ cancelButton.setMargin(buttonMargin);
+- bottomButtonPanel.add(cancelButton);
++ pnButtons.add(cancelButton);
+
+- JButton approveButton = getApproveButton(fc);;
++ JButton approveButton = getApproveButton(fc);
+ align(approveButton);
+ approveButton.setMargin(buttonMargin);
+- bottomButtonPanel.add(approveButton);
++ pnButtons.add(approveButton);
++
++ bottomButtonPanel.add(pnButtons);
+
+ if (fc.getControlButtonsAreShown()) {
+ fc.add(bottomButtonPanel, BorderLayout.SOUTH);
+@@ -1108,7 +1108,7 @@
+ // Get the canonical (full) path. This has the side
+ // benefit of removing extraneous chars from the path,
+ // for example /foo/bar/ becomes /foo/bar
+- File canonical = null;
++ File canonical;
+ try {
+ canonical = fsv.createFileObject(ShellFolder.getNormalizedFile(directory).getPath());
+ } catch (IOException e) {
More information about the distro-pkg-dev
mailing list