Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 144813 Details for
Bug 211701
dev-java/quaqua-4.2.3 (New Package)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
quaqua-4.2.3 build patch
quaqua-4.2.3-build.patch (text/plain), 5.21 KB, created by
Alexey Fansky
on 2008-02-28 08:42:04 UTC
(
hide
)
Description:
quaqua-4.2.3 build patch
Filename:
MIME Type:
Creator:
Alexey Fansky
Created:
2008-02-28 08:42:04 UTC
Size:
5.21 KB
patch
obsolete
>diff -urN ./src/ch/randelshofer/quaqua/panther/filechooser/FilePreview.java ../Quaqua 4.2.3/src/ch/randelshofer/quaqua/panther/filechooser/FilePreview.java >--- ./src/ch/randelshofer/quaqua/panther/filechooser/FilePreview.java 2008-02-21 07:42:30.000000000 +0200 >+++ ../Quaqua 4.2.3/src/ch/randelshofer/quaqua/panther/filechooser/FilePreview.java 2008-02-28 01:23:58.000000000 +0200 >@@ -13,17 +13,27 @@ > > package ch.randelshofer.quaqua.panther.filechooser; > >-import ch.randelshofer.quaqua.*; >-import ch.randelshofer.quaqua.filechooser.*; >-import ch.randelshofer.quaqua.util.*; >+import ch.randelshofer.quaqua.BrowserPreviewRenderer; >+import ch.randelshofer.quaqua.JBrowser; >+import ch.randelshofer.quaqua.filechooser.AliasFileSystemTreeModel; >+import ch.randelshofer.quaqua.filechooser.FileInfo; >+import ch.randelshofer.quaqua.filechooser.Files; >+import ch.randelshofer.quaqua.filechooser.QuaquaFileSystemView; >+import ch.randelshofer.quaqua.util.Methods; >+import ch.randelshofer.quaqua.util.SwingWorker; >+ >+import javax.swing.*; >+import javax.swing.filechooser.FileSystemView; >+import javax.swing.tree.TreePath; > import java.awt.*; >-import java.awt.event.*; >-import java.io.*; >-import java.text.*; >+import java.awt.event.MouseAdapter; >+import java.awt.event.MouseEvent; >+import java.awt.event.MouseListener; >+import java.io.File; >+import java.text.DateFormat; >+import java.text.MessageFormat; >+import java.text.NumberFormat; > import java.util.*; >-import javax.swing.*; >-import javax.swing.filechooser.*; >-import javax.swing.tree.*; > /** > * The FilePreview is used to render the preview column in the JBrowser in > * Quaqua's FileChooserUI's. >diff -urN ./src/ch/randelshofer/quaqua/Quaqua14LayoutStyle.java ../Quaqua 4.2.3/src/ch/randelshofer/quaqua/Quaqua14LayoutStyle.java >--- ./src/ch/randelshofer/quaqua/Quaqua14LayoutStyle.java 2008-02-21 07:42:30.000000000 +0200 >+++ ../Quaqua 4.2.3/src/ch/randelshofer/quaqua/Quaqua14LayoutStyle.java 2008-02-28 01:22:51.000000000 +0200 >@@ -13,11 +13,12 @@ > > package ch.randelshofer.quaqua; > >-import org.jdesktop.layout.*; >-import java.awt.*; >+import org.jdesktop.layout.LayoutStyle; >+ > import javax.swing.*; >-import java.lang.reflect.*; >-import java.util.*; >+import java.awt.*; >+import java.lang.reflect.Method; >+import java.util.HashMap; > /** > * A Quaqua14LayoutStyle can be queried for the preferred gaps between two > * JComponents, or between a JComponent and a parent Container. >diff -urN ./src/ch/randelshofer/quaqua/QuaquaIconFactory.java ../Quaqua 4.2.3/src/ch/randelshofer/quaqua/QuaquaIconFactory.java >--- ./src/ch/randelshofer/quaqua/QuaquaIconFactory.java 2008-02-21 07:42:30.000000000 +0200 >+++ ../Quaqua 4.2.3/src/ch/randelshofer/quaqua/QuaquaIconFactory.java 2008-02-28 01:23:29.000000000 +0200 >@@ -15,22 +15,13 @@ > > import ch.randelshofer.quaqua.osx.Application; > import ch.randelshofer.quaqua.util.*; >-import ch.randelshofer.quaqua.util.ButtonFocusIcon; >-import ch.randelshofer.quaqua.util.ButtonStateIcon; >-import ch.randelshofer.quaqua.util.FrameButtonStateIcon; >-import ch.randelshofer.quaqua.util.OverlayIcon; >-import ch.randelshofer.quaqua.util.SliderThumbIcon; >-import java.net.*; >-import java.awt.*; >-import java.awt.image.*; >+import ch.randelshofer.quaqua.util.SwingWorker; >+ > import javax.swing.*; >-import javax.swing.plaf.*; >-//import javax.imageio.*; >-//import javax.imageio.stream.*; >-import java.io.*; >-import java.util.*; >-import ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.tiff.*; >-import ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.util.*; >+import javax.swing.plaf.IconUIResource; >+import java.awt.*; >+import java.awt.image.BufferedImage; >+import java.net.URL; > > /** > * QuaquaIconFactory. >diff -urN ./src/ch/randelshofer/quaqua/QuaquaUtilities.java ../Quaqua 4.2.3/src/ch/randelshofer/quaqua/QuaquaUtilities.java >--- ./src/ch/randelshofer/quaqua/QuaquaUtilities.java 2008-02-21 07:42:32.000000000 +0200 >+++ ../Quaqua 4.2.3/src/ch/randelshofer/quaqua/QuaquaUtilities.java 2008-02-28 01:23:19.000000000 +0200 >@@ -13,7 +13,6 @@ > package ch.randelshofer.quaqua; > > import ch.randelshofer.quaqua.util.*; >-import com.sun.java.swing.SwingUtilities2; > import java.applet.*; > import java.awt.*; > import java.awt.event.*; >diff -urN ./src/test/GroupLayoutTest.java ../Quaqua 4.2.3/src/test/GroupLayoutTest.java >--- ./src/test/GroupLayoutTest.java 2008-02-21 07:42:30.000000000 +0200 >+++ ../Quaqua 4.2.3/src/test/GroupLayoutTest.java 2008-02-28 01:24:45.000000000 +0200 >@@ -12,9 +12,11 @@ > * Werner Randelshofer. For details see accompanying license terms. > */ > >-import ch.randelshofer.quaqua.*; >+import org.jdesktop.layout.GroupLayout; >+import org.jdesktop.layout.LayoutStyle; >+ > import javax.swing.*; >-import org.jdesktop.layout.*; >+ > /** > * GroupLayoutTest. > * >diff -urN ./src/test/LayoutAHIG15_1Test.java ../Quaqua 4.2.3/src/test/LayoutAHIG15_1Test.java >--- ./src/test/LayoutAHIG15_1Test.java 2008-02-21 07:42:30.000000000 +0200 >+++ ../Quaqua 4.2.3/src/test/LayoutAHIG15_1Test.java 2008-02-28 01:22:01.000000000 +0200 >@@ -13,9 +13,11 @@ > > package test; > >-import ch.randelshofer.quaqua.*; >+import ch.randelshofer.quaqua.QuaquaLookAndFeel; >+import org.jdesktop.layout.GroupLayout; >+import org.jdesktop.layout.LayoutStyle; >+ > import javax.swing.*; >-import org.jdesktop.layout.*; > > /** > * LayoutAHIG15_1Test: "A Simple Preferences Dialog".
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 211701
:
144811
| 144813