Quaqua 5.4.1 2009-07-14

Serialized Form


Package ch.randelshofer.quaqua

Class ch.randelshofer.quaqua.BasicQuaquaLookAndFeel extends LookAndFeelProxy implements Serializable

Class ch.randelshofer.quaqua.DefaultBrowserCellRenderer extends javax.swing.JLabel implements Serializable

Serialized Fields

browser

JBrowser browser
Last browser the renderer was painted in.


selected

boolean selected
Is the value currently selected.


hasFocus

boolean hasFocus
True if has focus.


drawsFocusBorderAroundIcon

boolean drawsFocusBorderAroundIcon
True if draws focus border around icon as well.


drawDashedFocusIndicator

boolean drawDashedFocusIndicator
If true, a dashed line is drawn as the focus indicator.


treeBGColor

java.awt.Color treeBGColor
Background color of the browser.


focusBGColor

java.awt.Color focusBGColor
Color to draw the focus indicator in, determined from the background. color.


textSelectionColor

java.awt.Color textSelectionColor
Color to use for the foreground for selected nodes.


textNonSelectionColor

java.awt.Color textNonSelectionColor
Color to use for the foreground for non-selected nodes.


backgroundSelectionColor

java.awt.Color backgroundSelectionColor
Color to use for the background when a node is selected.


backgroundNonSelectionColor

java.awt.Color backgroundNonSelectionColor
Color to use for the background when the node isn't selected.


borderSelectionColor

java.awt.Color borderSelectionColor
Color to use for the focus indicator when the node has focus.

Class ch.randelshofer.quaqua.JBrowser extends javax.swing.JComponent implements Serializable

Serialized Fields

expandedPath

javax.swing.tree.TreePath expandedPath
The currently expanded path.

Note: This path does not include the additional column being shown when this path points to a non-leaf node.


fixedCellWidth

int fixedCellWidth
The fixed width of the column cells.


minimumCellWidth

int minimumCellWidth
The minimum width of the column cells.


treeModel

javax.swing.tree.TreeModel treeModel
The model that defines the tree displayed by this object.


treeRootHandler

ch.randelshofer.quaqua.JBrowser.TreeRootHandler treeRootHandler
Handles changes in the tree root. We need this special handler, because we do not display the root node using one of our columns and would thus miss changes on the root node.


cellRenderer

javax.swing.ListCellRenderer cellRenderer
The cell used to draw nodes. If null, the UI uses a default cellRenderer.

FIXME - the default cell renderer is provided by ListUI. We should have a BrowserUI which provides a better default cell renderer (one which shows an icon when a node is not a leaf).


previewRenderer

BrowserPreviewRenderer previewRenderer
The cell used to draw a node in the preview column. If null, no preview column is drawn.


previewColumn

javax.swing.JScrollPane previewColumn
This column is only non-null, when we have a preview renderer. The previewColumn contains a SizeConstrainedPanel as its child. The SizeConstrainedPanel contains the component returned by the preview renderer. The prefererred width of the SizeConstrainedPanel is set to the value of variable fixedCellWidth.


prototypeCellValue

java.lang.Object prototypeCellValue

isShowCellTips

boolean isShowCellTips
If this is set to true, JBrowser shows tooltips with the cell value for cells which don't fit into the current width of a column.


cellTipOrigin

java.awt.Point cellTipOrigin
Origin of the cell tip relative to the origin of the cell renderer.


dragEnabled

boolean dragEnabled
Holds the value of the dragEnabled property.


columnsResizable

boolean columnsResizable
Should columns should be resizable?

Class ch.randelshofer.quaqua.JBrowser.BrowserScrollPaneLayout extends QuaquaScrollPaneLayout implements Serializable

Class ch.randelshofer.quaqua.JBrowser.SizeHandle extends javax.swing.JComponent implements Serializable

Serialized Fields

column

int column

startMouseX

int startMouseX

startWidth

int startWidth

Class ch.randelshofer.quaqua.JBrowserViewport extends javax.swing.JViewport implements Serializable

Class ch.randelshofer.quaqua.JSheet extends javax.swing.JDialog implements Serializable

Serialized Fields

listenerList

javax.swing.event.EventListenerList listenerList
Event listener list.


ownerMovementHandler

java.awt.event.ComponentListener ownerMovementHandler
This handler is used to handle movements of the owner. If the owner moves, we have to change the location of the sheet as well.


shiftBackLocation

java.awt.Point shiftBackLocation
If this is non-null, we put the owner to the specified location, when the sheet is hidden.


oldLocation

java.awt.Point oldLocation
We need to keep track of the old owner position, in order to avoid processing duplicate owner moved events.


oldFocusOwner

java.awt.Component oldFocusOwner
Focus owner on the owner window, before the sheet is shown.


isInstalled

boolean isInstalled
This is set to true, when the listeners for the JSheet are installed on the parent component.


isAnimated

boolean isAnimated
If this is set to true, the JSheet uses a transition effect when shown and when hidden.


ownersGlassPane

java.awt.Component ownersGlassPane
This variable is only used in Java 1.5 and previous versions. In order to make the sheet document modal, we have to block events on the owner window. We do this by setting a JPanel as the glass pane on the owner window. Before we do this, we store the glass pane of the owner window here, and restore it after we have finished.

Class ch.randelshofer.quaqua.LookAndFeelProxy extends javax.swing.plaf.basic.BasicLookAndFeel implements Serializable

Serialized Fields

target

javax.swing.LookAndFeel target
The target LookAndFeel.

Class ch.randelshofer.quaqua.Quaqua14TitlePane extends javax.swing.JComponent implements Serializable

Serialized Fields

windowPropertyListener

java.beans.PropertyChangeListener windowPropertyListener
PropertyChangeListener added to the Window.


rootPropertyListener

java.beans.PropertyChangeListener rootPropertyListener
PropertyChangeListener added to the JRootPane.


menuBar

javax.swing.JMenuBar menuBar
JMenuBar, typically renders the system menu items.


closeAction

javax.swing.Action closeAction
Action used to close the Window.


iconifyAction

javax.swing.Action iconifyAction
Action used to iconify the Frame.


restoreAction

javax.swing.Action restoreAction
Action to restore the Frame size.


maximizeAction

javax.swing.Action maximizeAction
Action to restore the Frame size.


toggleButton

javax.swing.JButton toggleButton
Button used to maximize or restore the Frame.


iconifyButton

javax.swing.JButton iconifyButton
Button used to maximize or restore the Frame.


closeButton

javax.swing.JButton closeButton
Button used to maximize or restore the Frame.


maximizeIcon

javax.swing.Icon maximizeIcon
Icon used for toggleButton when window is normal size.


minimizeIcon

javax.swing.Icon minimizeIcon
Icon used for toggleButton when window is maximized.


windowListener

java.awt.event.WindowListener windowListener
Listens for changes in the state of the Window listener to update the state of the widgets.


window

java.awt.Window window
Window we're currently in.


rootPane

javax.swing.JRootPane rootPane
JRootPane rendering for.


buttonsWidth

int buttonsWidth
Room remaining in title for bumps.


state

int state
Buffered Frame.state property. As state isn't bound, this is kept to determine when to avoid updating widgets.


rootPaneUI

Quaqua14RootPaneUI rootPaneUI
Quaqua14RootPaneUI that created us.


inactiveBackground

java.awt.Color inactiveBackground

inactiveForeground

java.awt.Color inactiveForeground

inactiveShadow

java.awt.Color inactiveShadow

activeBackground

java.awt.Color activeBackground

activeForeground

java.awt.Color activeForeground

activeShadow

java.awt.Color activeShadow

armer1

javax.swing.JComponent armer1

armer2

javax.swing.JComponent armer2

Class ch.randelshofer.quaqua.QuaquaArrowButton extends javax.swing.JButton implements Serializable

Serialized Fields

scrollbar

javax.swing.JScrollBar scrollbar

Class ch.randelshofer.quaqua.QuaquaBorders.OptionDialogBorder extends javax.swing.border.AbstractBorder implements Serializable

Serialized Fields

titleHeight

int titleHeight

Class ch.randelshofer.quaqua.QuaquaBorders.PaletteBorder extends javax.swing.border.AbstractBorder implements Serializable

Serialized Fields

titleHeight

int titleHeight

Class ch.randelshofer.quaqua.QuaquaButtonMarginBorder extends javax.swing.border.AbstractBorder implements Serializable

Class ch.randelshofer.quaqua.QuaquaCaret extends javax.swing.text.DefaultCaret implements Serializable

Serialized Fields

isFocused

boolean isFocused

Class ch.randelshofer.quaqua.QuaquaComboBoxButton extends javax.swing.JButton implements Serializable

Serialized Fields

comboBox

javax.swing.JComboBox comboBox

listBox

javax.swing.JList listBox

rendererPane

javax.swing.CellRendererPane rendererPane

comboIcon

javax.swing.Icon comboIcon

iconOnly

boolean iconOnly

Class ch.randelshofer.quaqua.QuaquaComboBoxVisualMargin extends VisualMargin implements Serializable

Class ch.randelshofer.quaqua.QuaquaComboPopup extends javax.swing.plaf.basic.BasicComboPopup implements Serializable

Serialized Fields

qqui

QuaquaComboBoxUI qqui

handler

ch.randelshofer.quaqua.QuaquaComboPopup.Handler handler

lastFocused

java.awt.Component lastFocused

invokerRootPane

javax.swing.JRootPane invokerRootPane

focusTraversalKeysEnabled

boolean focusTraversalKeysEnabled

Class ch.randelshofer.quaqua.QuaquaDefaultListCellRenderer extends javax.swing.DefaultListCellRenderer.UIResource implements Serializable

Class ch.randelshofer.quaqua.QuaquaDefaultTableCellRenderer extends javax.swing.table.DefaultTableCellRenderer.UIResource implements Serializable

Class ch.randelshofer.quaqua.QuaquaEditorKit extends javax.swing.text.DefaultEditorKit implements Serializable

Class ch.randelshofer.quaqua.QuaquaLazyActionMap extends javax.swing.plaf.ActionMapUIResource implements Serializable

Class ch.randelshofer.quaqua.QuaquaLookAndFeel extends LookAndFeelProxy implements Serializable

Class ch.randelshofer.quaqua.QuaquaScrollPaneBorder extends VisualMargin implements Serializable

Serialized Fields

scrollPaneImagesLocation

java.lang.String scrollPaneImagesLocation
Location of the border images.


textFieldImagesLocation

java.lang.String textFieldImagesLocation

scrollPaneBorders

javax.swing.border.Border[] scrollPaneBorders
Array with image bevel borders. This array is created lazily.


textFieldBorders

javax.swing.border.Border[] textFieldBorders

Class ch.randelshofer.quaqua.QuaquaScrollPaneBorder.UIResource extends QuaquaScrollPaneBorder implements Serializable

Class ch.randelshofer.quaqua.QuaquaScrollPaneLayout extends javax.swing.ScrollPaneLayout implements Serializable

Class ch.randelshofer.quaqua.QuaquaScrollPaneLayout.UIResource extends QuaquaScrollPaneLayout implements Serializable

Class ch.randelshofer.quaqua.QuaquaSplitPaneDivider extends javax.swing.plaf.basic.BasicSplitPaneDivider implements Serializable

Class ch.randelshofer.quaqua.QuaquaTextFieldBorder extends VisualMargin implements Serializable

Serialized Fields

imagesLocation

java.lang.String imagesLocation
Location of the border images.


imageInsets

java.awt.Insets imageInsets

searchImageInsets

java.awt.Insets searchImageInsets

smallSearchImageInsets

java.awt.Insets smallSearchImageInsets

searchImagesLocation

java.lang.String searchImagesLocation

smallSearchImagesLocation

java.lang.String smallSearchImagesLocation

plainBorders

javax.swing.border.Border[] plainBorders
Array with image bevel plainBorders. This array is created lazily.


searchBorders

javax.swing.border.Border[] searchBorders

smallSearchBorders

javax.swing.border.Border[] smallSearchBorders

textFieldBackground

javax.swing.border.Border textFieldBackground

Class ch.randelshofer.quaqua.QuaquaTextFieldBorder.UIResource extends QuaquaTextFieldBorder implements Serializable

Class ch.randelshofer.quaqua.QuaquaToolBarBorder extends javax.swing.border.AbstractBorder implements Serializable

Class ch.randelshofer.quaqua.QuaquaToolBarBorder.UIResource extends QuaquaToolBarBorder implements Serializable

Class ch.randelshofer.quaqua.QuaquaTreeUI.TreeCancelEditingAction extends javax.swing.AbstractAction implements Serializable

Class ch.randelshofer.quaqua.QuaquaTreeUI.TreeHomeAction extends javax.swing.AbstractAction implements Serializable

Serialized Fields

direction

int direction

addToSelection

boolean addToSelection
Set to true if append to selection.


changeSelection

boolean changeSelection

Class ch.randelshofer.quaqua.QuaquaTreeUI.TreeIncrementAction extends javax.swing.AbstractAction implements Serializable

Serialized Fields

direction

int direction
Specifies the direction to adjust the selection by.


addToSelection

boolean addToSelection
If true the new item is added to the selection, if false the selection is reset.


changeSelection

boolean changeSelection

Class ch.randelshofer.quaqua.QuaquaTreeUI.TreePageAction extends javax.swing.AbstractAction implements Serializable

Serialized Fields

direction

int direction
Specifies the direction to adjust the selection by.


addToSelection

boolean addToSelection
True indicates should set selection from anchor leadPath.


changeSelection

boolean changeSelection

Class ch.randelshofer.quaqua.QuaquaTreeUI.TreeToggleAction extends javax.swing.AbstractAction implements Serializable

Class ch.randelshofer.quaqua.QuaquaTreeUI.TreeTraverseAction extends javax.swing.AbstractAction implements Serializable

Serialized Fields

direction

int direction
Determines direction to traverse, 1 means expand, -1 means collapse.


changeSelection

boolean changeSelection
True if the selection is reset, false means only the lead leadPath changes.

Class ch.randelshofer.quaqua.SheetEvent extends java.util.EventObject implements Serializable

Serialized Fields

pane

javax.swing.JComponent pane

option

int option

value

java.lang.Object value

inputValue

java.lang.Object inputValue

Class ch.randelshofer.quaqua.VisualMargin extends javax.swing.border.AbstractBorder implements Serializable

Serialized Fields

layoutMargin

java.awt.Insets layoutMargin
Defines the margin from the clip bounds of the component to its visually perceived borderline.


uiManagerPropertyName

java.lang.String uiManagerPropertyName
The UIManager Property to be used for the default margin.


propertyName

java.lang.String propertyName
The Client Property to be used for the default margin.


isTopFixed

boolean isTopFixed

isLeftFixed

boolean isLeftFixed

isBottomFixed

boolean isBottomFixed

isRightFixed

boolean isRightFixed

Package ch.randelshofer.quaqua.color

Class ch.randelshofer.quaqua.color.AlphaColorUIResource extends java.awt.Color implements Serializable

Class ch.randelshofer.quaqua.color.GradientColor extends PaintableColor implements Serializable

Serialized Fields

color1

java.awt.Color color1

color2

java.awt.Color color2

Class ch.randelshofer.quaqua.color.InactivatableColorUIResource extends java.awt.Color implements Serializable

Serialized Fields

isActive

boolean isActive

isTransparent

boolean isTransparent

inactiveRGB

int inactiveRGB

Class ch.randelshofer.quaqua.color.MutableColorUIResource extends java.awt.Color implements Serializable

Serialized Fields

argb

int argb

Class ch.randelshofer.quaqua.color.PaintableColor extends java.awt.Color implements Serializable

Class ch.randelshofer.quaqua.color.TextureColor extends PaintableColor implements Serializable

Serialized Fields

texture

java.awt.Image texture

Class ch.randelshofer.quaqua.color.TextureColor.UIResource extends TextureColor implements Serializable


Package ch.randelshofer.quaqua.colorchooser

Class ch.randelshofer.quaqua.colorchooser.CMYKChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

ccModel

ColorSliderModel ccModel

updateRecursion

int updateRecursion

blackField

javax.swing.JTextField blackField

blackFieldLabel

javax.swing.JLabel blackFieldLabel

blackFieldPanel

javax.swing.JPanel blackFieldPanel

blackLabel

javax.swing.JLabel blackLabel

blackSlider

javax.swing.JSlider blackSlider

cyanField

javax.swing.JTextField cyanField

cyanFieldLabel

javax.swing.JLabel cyanFieldLabel

cyanFieldPanel

javax.swing.JPanel cyanFieldPanel

cyanLabel

javax.swing.JLabel cyanLabel

cyanSlider

javax.swing.JSlider cyanSlider

magentaField

javax.swing.JTextField magentaField

magentaFieldLabel

javax.swing.JLabel magentaFieldLabel

magentaFieldPanel

javax.swing.JPanel magentaFieldPanel

magentaLabel

javax.swing.JLabel magentaLabel

magentaSlider

javax.swing.JSlider magentaSlider

springPanel

javax.swing.JPanel springPanel

yellowField

javax.swing.JTextField yellowField

yellowFieldLabel

javax.swing.JLabel yellowFieldLabel

yellowFieldPanel

javax.swing.JPanel yellowFieldPanel

yellowLabel

javax.swing.JLabel yellowLabel

yellowSlider

javax.swing.JSlider yellowSlider

Class ch.randelshofer.quaqua.colorchooser.ColorChooserMainPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

chooserPanelHolder

javax.swing.JPanel chooserPanelHolder

mainPanel

javax.swing.JPanel mainPanel

northPanel

javax.swing.JPanel northPanel

previewPanelHolder

javax.swing.JPanel previewPanelHolder

toolBar

javax.swing.JToolBar toolBar

toolBarButtonGroup

javax.swing.ButtonGroup toolBarButtonGroup

Class ch.randelshofer.quaqua.colorchooser.ColorPalettesChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

paletteCombo

javax.swing.JComboBox paletteCombo

paletteLabel

javax.swing.JLabel paletteLabel

paletteList

javax.swing.JList paletteList

paletteScrollPane

javax.swing.JScrollPane paletteScrollPane

Class ch.randelshofer.quaqua.colorchooser.ColorSlidersChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

slidersComboBox

javax.swing.JComboBox slidersComboBox

slidersHolder

javax.swing.JPanel slidersHolder

Class ch.randelshofer.quaqua.colorchooser.ColorWheel extends javax.swing.JPanel implements Serializable

Serialized Fields

wheelInsets

java.awt.Insets wheelInsets

colorWheelImage

java.awt.Image colorWheelImage

colorWheelProducer

ColorWheelImageProducer colorWheelProducer

model

HSBColorSliderModel model

mouseHandler

ch.randelshofer.quaqua.colorchooser.ColorWheel.MouseHandler mouseHandler

modelHandler

ch.randelshofer.quaqua.colorchooser.ColorWheel.ModelHandler modelHandler

Class ch.randelshofer.quaqua.colorchooser.ColorWheelChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

colorWheel

ColorWheel colorWheel

ccModel

HSBColorSliderModel ccModel

updatingChooser

int updatingChooser

brightnessSlider

javax.swing.JSlider brightnessSlider

Class ch.randelshofer.quaqua.colorchooser.Crayons extends javax.swing.JPanel implements Serializable

Serialized Fields

crayonsImage

java.awt.Image crayonsImage
Shared crayons image.


color

java.awt.Color color
Current color.


selectedCrayon

ch.randelshofer.quaqua.colorchooser.Crayons.Crayon selectedCrayon
Selected crayon.


mouseHandler

ch.randelshofer.quaqua.colorchooser.Crayons.MouseHandler mouseHandler

crayons

ch.randelshofer.quaqua.colorchooser.Crayons.Crayon[] crayons
Crayons.

Class ch.randelshofer.quaqua.colorchooser.CrayonsChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

crayons

Crayons crayons

Class ch.randelshofer.quaqua.colorchooser.GrayChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

ccModel

ColorSliderModel ccModel

updateRecursion

int updateRecursion
We have to prevent us from constantly updating the color model, because the gray chooser is not able to preserve all color components.


brightnessField

javax.swing.JTextField brightnessField

brightnessFieldLabel

javax.swing.JLabel brightnessFieldLabel

brightnessFieldPanel

javax.swing.JPanel brightnessFieldPanel

brightnessLabel

javax.swing.JLabel brightnessLabel

brightnessSlider

javax.swing.JSlider brightnessSlider

fiftyPercentButton

javax.swing.JButton fiftyPercentButton

hundredPercentButton

javax.swing.JButton hundredPercentButton

percentPanel

javax.swing.JPanel percentPanel

seventyFivePercentButton

javax.swing.JButton seventyFivePercentButton

springPanel

javax.swing.JPanel springPanel

twentyFivePercentButton

javax.swing.JButton twentyFivePercentButton

zeroPercentButton

javax.swing.JButton zeroPercentButton

Class ch.randelshofer.quaqua.colorchooser.HSBChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

ccModel

ColorSliderModel ccModel

updatingChooser

int updatingChooser

brightnessField

javax.swing.JTextField brightnessField

brightnessFieldLabel

javax.swing.JLabel brightnessFieldLabel

brightnessFieldPanel

javax.swing.JPanel brightnessFieldPanel

brightnessLabel

javax.swing.JLabel brightnessLabel

brightnessSlider

javax.swing.JSlider brightnessSlider

hueField

javax.swing.JTextField hueField

hueFieldLabel

javax.swing.JLabel hueFieldLabel

hueFieldPanel

javax.swing.JPanel hueFieldPanel

hueLabel

javax.swing.JLabel hueLabel

hueSlider

javax.swing.JSlider hueSlider

saturationField

javax.swing.JTextField saturationField

saturationFieldLabel

javax.swing.JLabel saturationFieldLabel

saturationFieldPanel

javax.swing.JPanel saturationFieldPanel

saturationLabel

javax.swing.JLabel saturationLabel

saturationSlider

javax.swing.JSlider saturationSlider

springPanel

javax.swing.JPanel springPanel

Class ch.randelshofer.quaqua.colorchooser.HTMLChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

ccModel

HTMLColorSliderModel ccModel

htmlListener

javax.swing.event.ChangeListener htmlListener

updateRecursion

int updateRecursion
We have to prevent us from constantly updating the color model, because the gray chooser is not able to preserve all color components.


blueField

javax.swing.JTextField blueField

blueLabel

javax.swing.JLabel blueLabel

blueSlider

javax.swing.JSlider blueSlider

greenField

javax.swing.JTextField greenField

greenLabel

javax.swing.JLabel greenLabel

greenSlider

javax.swing.JSlider greenSlider

htmlField

javax.swing.JTextField htmlField

htmlLabel

javax.swing.JLabel htmlLabel

htmlPanel

javax.swing.JPanel htmlPanel

redField

javax.swing.JTextField redField

redLabel

javax.swing.JLabel redLabel

redSlider

javax.swing.JSlider redSlider

springPanel

javax.swing.JPanel springPanel

webSaveCheckBox

javax.swing.JCheckBox webSaveCheckBox

Class ch.randelshofer.quaqua.colorchooser.PaletteEntryCellRenderer extends javax.swing.DefaultListCellRenderer implements Serializable

Serialized Fields

closestMarker1

java.awt.Color closestMarker1
The following colors are used to draw the marker that marks the closest color in the palette. The "closest color" is used, when the palette does not contain an exact match to the currently selected color in the color chooser. The marker is used to help the user finding the closest color in the palette.


closestMarker2

java.awt.Color closestMarker2

closestMarker3

java.awt.Color closestMarker3

icon

ch.randelshofer.quaqua.colorchooser.PaletteEntryCellRenderer.ColorIcon icon

isClosestColor

boolean isClosestColor

Class ch.randelshofer.quaqua.colorchooser.PaletteListModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

name

java.lang.String name
Name of the palette.


info

java.lang.String info
Informatation about the palette, such as the copyright.


entries

PaletteEntry[] entries

closestIndex

int closestIndex
Index of the color which is closest to the current color in the color chooser.

Class ch.randelshofer.quaqua.colorchooser.Quaqua15ColorPicker extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

pickerFrame

java.awt.Dialog pickerFrame
This frame is constantly moved to the current location of the mouse. This ensures that we can trap mouse clicks while the picker cursor is showing. Also, by tying the picker cursor to this frame, we ensure that the picker cursor (the magnifying glass) is shown.


pickerTimer

javax.swing.Timer pickerTimer

cursorImage

java.awt.image.BufferedImage cursorImage
Holds the image of the picker cursor.


cursorGraphics

java.awt.Graphics2D cursorGraphics
Graphics object used for drawing on the cursorImage.


pickerCursor

java.awt.Cursor pickerCursor
The picker cursor.


hotSpot

java.awt.Point hotSpot
The hot spot of the cursor.


pickOffset

java.awt.Point pickOffset
Offset from the hot spot of the pickerCursor to the pixel that we want to pick. We can't pick the color at the hotSpot of the cursor, because this point is obscured by the pickerFrame.


magnifierImage

java.awt.image.BufferedImage magnifierImage
The magnifying glass image.


robot

java.awt.Robot robot
The robot is used for creating screen captures.


captureScreen

java.awt.GraphicsDevice captureScreen
The graphics device for which we created the robot.


isBadScreen

boolean isBadScreen
This is true, if we can't capture from this screen.


previousColor

java.awt.Color previousColor

previousLoc

java.awt.Point previousLoc

pickLoc

java.awt.Point pickLoc

captureOffset

java.awt.Point captureOffset

captureRect

java.awt.Rectangle captureRect

zoomRect

java.awt.Rectangle zoomRect

glassRect

java.awt.Rectangle glassRect

pickerButton

javax.swing.JButton pickerButton

Class ch.randelshofer.quaqua.colorchooser.QuaquaColorPreviewPanel extends javax.swing.JPanel implements Serializable

Class ch.randelshofer.quaqua.colorchooser.RGBChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

ccModel

ColorSliderModel ccModel

blueField

javax.swing.JTextField blueField

blueLabel

javax.swing.JLabel blueLabel

blueSlider

javax.swing.JSlider blueSlider

greenField

javax.swing.JTextField greenField

greenLabel

javax.swing.JLabel greenLabel

greenSlider

javax.swing.JSlider greenSlider

redField

javax.swing.JTextField redField

redLabel

javax.swing.JLabel redLabel

redSlider

javax.swing.JSlider redSlider

springPanel

javax.swing.JPanel springPanel

Class ch.randelshofer.quaqua.colorchooser.SwatchesChooser extends javax.swing.colorchooser.AbstractColorChooserPanel implements Serializable

Serialized Fields

swatchPanel

SwatchPanel swatchPanel

scrollPane

javax.swing.JScrollPane scrollPane

Class ch.randelshofer.quaqua.colorchooser.SwatchPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

colors

java.awt.Color[] colors

swatchSize

java.awt.Dimension swatchSize

defaultSwatchSize

java.awt.Dimension defaultSwatchSize

numSwatches

java.awt.Dimension numSwatches

gap

java.awt.Dimension gap

Package ch.randelshofer.quaqua.datatransfer

Class ch.randelshofer.quaqua.datatransfer.MimeType extends java.lang.Object implements Serializable

serialVersionUID: -6568722458793895906L

Serialization Methods

readExternal

public void readExternal(java.io.ObjectInput in)
                  throws java.io.IOException,
                         java.lang.ClassNotFoundException
The object implements the readExternal method to restore its contents by calling the methods of DataInput for primitive types and readObject for objects, strings and arrays. The readExternal method must read the values in the same sequence and with the same types as were written by writeExternal.

Throws:
java.lang.ClassNotFoundException - If the class for an object being restored cannot be found.
java.io.IOException

writeExternal

public void writeExternal(java.io.ObjectOutput out)
                   throws java.io.IOException
The object implements the writeExternal method to save its contents by calling the methods of DataOutput for its primitive values or calling the writeObject method of ObjectOutput for objects, strings and arrays.

Throws:
java.io.IOException - Includes any I/O exceptions that may occur

Package ch.randelshofer.quaqua.ext.batik.ext.awt.image

Class ch.randelshofer.quaqua.ext.batik.ext.awt.image.CompositeRule extends java.lang.Object implements Serializable

Serialization Methods

readResolve

private java.lang.Object readResolve()
                              throws java.io.ObjectStreamException
This is called by the serialization code before it returns an unserialized object. To provide for unicity of instances, the instance that was read is replaced by its static equivalent. See the serialiazation specification for further details on this method's logic.

Throws:
java.io.ObjectStreamException
Serialized Fields

rule

int rule
The composite rule for this object.


k1

float k1

k2

float k2

k3

float k3

k4

float k4

Class ch.randelshofer.quaqua.ext.batik.ext.awt.image.PadMode extends java.lang.Object implements Serializable

Serialization Methods

readResolve

private java.lang.Object readResolve()
                              throws java.io.ObjectStreamException
This is called by the serialization code before it returns an unserialized object. To provide for unicity of instances, the instance that was read is replaced by its static equivalent. See the serialiazation specification for further details on this method's logic.

Throws:
java.io.ObjectStreamException
Serialized Fields

mode

int mode
The pad mode for this object.


Package ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.tiff

Class ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.tiff.TIFFDecodeParam extends java.lang.Object implements Serializable

Serialized Fields

decodePaletteAsShorts

boolean decodePaletteAsShorts

ifdOffset

java.lang.Long ifdOffset

convertJPEGYCbCrToRGB

boolean convertJPEGYCbCrToRGB

Class ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.tiff.TIFFDirectory extends java.lang.Object implements Serializable

Serialized Fields

isBigEndian

boolean isBigEndian
A boolean storing the endianness of the stream.


numEntries

int numEntries
The number of entries in the IFD.


fields

TIFFField[] fields
An array of TIFFFields.


fieldIndex

java.util.Map<K,V> fieldIndex
A Hashtable indexing the fields by tag number.


IFDOffset

long IFDOffset
The offset of this IFD.


nextIFDOffset

long nextIFDOffset
The offset of the next IFD.

Class ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.tiff.TIFFField extends java.lang.Object implements Serializable

Serialized Fields

tag

int tag
The tag number.


type

int type
The tag type.


count

int count
The number of data items present in the field.


data

java.lang.Object data
The field data.


Package ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.util

Package ch.randelshofer.quaqua.ext.nanoxml

Class ch.randelshofer.quaqua.ext.nanoxml.XMLParseException extends java.lang.RuntimeException implements Serializable

Serialized Fields

lineNr

int lineNr
The line number in the source code where the error occurred, or NO_LINE if the line number is unknown.
Invariants:
  • lineNr > 0 || lineNr == NO_LINE


Package ch.randelshofer.quaqua.filechooser

Class ch.randelshofer.quaqua.filechooser.FileRenderer extends javax.swing.JComponent implements Serializable

Serialized Fields

labelForeground

java.awt.Color labelForeground

labelDisabledForeground

java.awt.Color labelDisabledForeground

selectedExpandingIcon

javax.swing.Icon selectedExpandingIcon

selectedExpandedIcon

javax.swing.Icon selectedExpandedIcon

expandingIcon

javax.swing.Icon expandingIcon

expandedIcon

javax.swing.Icon expandedIcon

emptyIcon

javax.swing.Icon emptyIcon

fileChooser

javax.swing.JFileChooser fileChooser

icon

javax.swing.Icon icon

text

java.lang.String text

arrowIcon

javax.swing.Icon arrowIcon

labelColor

java.awt.Color labelColor

labelBrightColor

java.awt.Color labelBrightColor

isSelected

boolean isSelected

isGrayed

boolean isGrayed

Package ch.randelshofer.quaqua.jaguar

Class ch.randelshofer.quaqua.jaguar.Quaqua14JaguarLookAndFeel extends BasicQuaquaLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.jaguar.Quaqua15JaguarLookAndFeel extends BasicQuaquaLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.jaguar.QuaquaJaguarFileChooserUI.ApproveSelectionAction extends javax.swing.AbstractAction implements Serializable

Class ch.randelshofer.quaqua.jaguar.QuaquaJaguarFileChooserUI.DirectoryComboBoxAction extends javax.swing.AbstractAction implements Serializable

Class ch.randelshofer.quaqua.jaguar.QuaquaJaguarFileChooserUI.DirectoryComboBoxModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

directories

java.lang.Object[] directories

selectedDirectory

java.lang.Object selectedDirectory

chooser

javax.swing.JFileChooser chooser

fsv

javax.swing.filechooser.FileSystemView fsv

Class ch.randelshofer.quaqua.jaguar.QuaquaJaguarFileChooserUI.FilterComboBoxModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

filters

javax.swing.filechooser.FileFilter[] filters

Class ch.randelshofer.quaqua.jaguar.QuaquaJaguarFileChooserUI.FilterComboBoxRenderer extends javax.swing.DefaultListCellRenderer implements Serializable

Class ch.randelshofer.quaqua.jaguar.QuaquaJaguarFileChooserUI.NewFolderAction extends javax.swing.AbstractAction implements Serializable


Package ch.randelshofer.quaqua.jaguar.filechooser

Class ch.randelshofer.quaqua.jaguar.filechooser.QuaquaJaguarFileChooserPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

accessoryPanel

javax.swing.JPanel accessoryPanel

approveButton

javax.swing.JButton approveButton

browser

JBrowser browser

browserScrollPane

javax.swing.JScrollPane browserScrollPane

buttonPanel

javax.swing.JPanel buttonPanel

cancelButton

javax.swing.JButton cancelButton

directoryComboBox

javax.swing.JComboBox directoryComboBox

fc

javax.swing.JPanel fc

fileNameLabel

javax.swing.JLabel fileNameLabel

fileNameTextField

javax.swing.JTextField fileNameTextField

filesOfTypeLabel

javax.swing.JLabel filesOfTypeLabel

filterComboBox

javax.swing.JComboBox filterComboBox

formatPanel

javax.swing.JPanel formatPanel

formatPanel2

javax.swing.JPanel formatPanel2

fromPanel

javax.swing.JPanel fromPanel

lookInLabel

javax.swing.JLabel lookInLabel

newFolderButton

javax.swing.JButton newFolderButton

separatorPanel

javax.swing.JPanel separatorPanel

separatorPanel1

javax.swing.JPanel separatorPanel1

separatorPanel2

javax.swing.JPanel separatorPanel2

strutPanel1

javax.swing.JPanel strutPanel1

strutPanel2

javax.swing.JPanel strutPanel2

Package ch.randelshofer.quaqua.leopard

Class ch.randelshofer.quaqua.leopard.Quaqua14LeopardCrossPlatformLookAndFeel extends Quaqua14LeopardLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.leopard.Quaqua14LeopardLookAndFeel extends BasicQuaquaLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.leopard.Quaqua15LeopardCrossPlatformLookAndFeel extends Quaqua15LeopardLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.leopard.Quaqua15LeopardLookAndFeel extends BasicQuaquaLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.leopard.Quaqua16LeopardLookAndFeel extends Quaqua15LeopardLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.leopard.QuaquaLeopardFileChooserUI.DirectoryComboBoxAction extends javax.swing.AbstractAction implements Serializable

Class ch.randelshofer.quaqua.leopard.QuaquaLeopardFileChooserUI.DirectoryComboBoxModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

path

javax.swing.tree.TreePath path

selectedDirectory

AliasFileSystemTreeModel.Node selectedDirectory

chooser

javax.swing.JFileChooser chooser

fsv

javax.swing.filechooser.FileSystemView fsv

Class ch.randelshofer.quaqua.leopard.QuaquaLeopardFileChooserUI.FilterComboBoxModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

filters

javax.swing.filechooser.FileFilter[] filters

Class ch.randelshofer.quaqua.leopard.QuaquaLeopardFileChooserUI.FilterComboBoxRenderer extends javax.swing.DefaultListCellRenderer implements Serializable

Serialized Fields

border

javax.swing.border.Border border

Class ch.randelshofer.quaqua.leopard.QuaquaLeopardFileChooserUI.NewFolderAction extends javax.swing.AbstractAction implements Serializable

Class ch.randelshofer.quaqua.leopard.QuaquaLeopardFileChooserUI.QuaquaApproveSelectionAction extends javax.swing.AbstractAction implements Serializable


Package ch.randelshofer.quaqua.leopard.filechooser

Class ch.randelshofer.quaqua.leopard.filechooser.LeopardFileRenderer extends javax.swing.JComponent implements Serializable

Serialized Fields

labelForeground

java.awt.Color labelForeground

labelDisabledForeground

java.awt.Color labelDisabledForeground

selectedExpandingIcon

javax.swing.Icon selectedExpandingIcon

selectedExpandedIcon

javax.swing.Icon selectedExpandedIcon

expandingIcon

javax.swing.Icon expandingIcon

expandedIcon

javax.swing.Icon expandedIcon

emptyIcon

javax.swing.Icon emptyIcon

fileChooser

javax.swing.JFileChooser fileChooser

icon

javax.swing.Icon icon

text

java.lang.String text

arrowIcon

javax.swing.Icon arrowIcon

labelColor

java.awt.Color labelColor

labelBrightColor

java.awt.Color labelBrightColor

isSelected

boolean isSelected

isGrayed

boolean isGrayed

Class ch.randelshofer.quaqua.leopard.filechooser.QuaquaLeopardFileChooserPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

accessoryPanel

javax.swing.JPanel accessoryPanel

approveButton

javax.swing.JButton approveButton

browser

JBrowser browser

browserScrollPane

javax.swing.JScrollPane browserScrollPane

browserToggleButton

javax.swing.JToggleButton browserToggleButton

buttonsPanel

javax.swing.JPanel buttonsPanel

cancelButton

javax.swing.JButton cancelButton

cancelOpenPanel

javax.swing.JPanel cancelOpenPanel

controlsPanel

javax.swing.JPanel controlsPanel

directoryComboBox

javax.swing.JComboBox directoryComboBox

fc

javax.swing.JPanel fc

fileNameLabel

javax.swing.JLabel fileNameLabel

fileNamePanel

javax.swing.JPanel fileNamePanel

fileNameSpringPanel

javax.swing.JPanel fileNameSpringPanel

fileNameTextField

javax.swing.JTextField fileNameTextField

filesOfTypeLabel

javax.swing.JLabel filesOfTypeLabel

filterComboBox

javax.swing.JComboBox filterComboBox

formatPanel

javax.swing.JPanel formatPanel

formatSpringPanel

javax.swing.JPanel formatSpringPanel

mainPanel

javax.swing.JPanel mainPanel

navigationButtonsPanel

javax.swing.JPanel navigationButtonsPanel

navigationPanel

javax.swing.JPanel navigationPanel

navigationSpringPanel

javax.swing.JPanel navigationSpringPanel

newFolderButton

javax.swing.JButton newFolderButton

nextButton

javax.swing.JButton nextButton

previousButton

javax.swing.JButton previousButton

separator

javax.swing.JSeparator separator

sidebarScrollPane

javax.swing.JScrollPane sidebarScrollPane

sidebarTree

javax.swing.JTree sidebarTree

splitPane

javax.swing.JSplitPane splitPane

table

javax.swing.JTable table

tableScrollPane

javax.swing.JScrollPane tableScrollPane

tableToggleButton

javax.swing.JToggleButton tableToggleButton

viewGroup

javax.swing.ButtonGroup viewGroup

viewsPanel

javax.swing.JPanel viewsPanel

Class ch.randelshofer.quaqua.leopard.filechooser.SidebarTreeModel extends javax.swing.tree.DefaultTreeModel implements Serializable

Serialized Fields

volumesPath

javax.swing.tree.TreePath volumesPath
Holds the tree volumesPath to the /Volumes folder.


model

javax.swing.tree.TreeModel model
Holds the AliasFileSystemTreeModel.


devicesNode

javax.swing.tree.DefaultMutableTreeNode devicesNode
Represents the "Devices" node in the sidebar.


placesNode

javax.swing.tree.DefaultMutableTreeNode placesNode
Represents the "Places" node in the sidebar.


bestBefore

long bestBefore
Time for next validation of the model.


fileChooser

javax.swing.JFileChooser fileChooser
The JFileChooser.


dispatcher

SequentialDispatcher dispatcher
Sequential dispatcher for the lazy creation of icons.


systemItemsMap

java.util.HashMap<K,V> systemItemsMap
This hash map is used to determine the sequence and visibility of the items in the system list. HashMap


Package ch.randelshofer.quaqua.panther

Class ch.randelshofer.quaqua.panther.Quaqua14PantherLookAndFeel extends BasicQuaquaLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.panther.Quaqua15PantherLookAndFeel extends BasicQuaquaLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.panther.QuaquaPantherFileChooserUI.DirectoryComboBoxAction extends javax.swing.AbstractAction implements Serializable

Class ch.randelshofer.quaqua.panther.QuaquaPantherFileChooserUI.DirectoryComboBoxModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

path

javax.swing.tree.TreePath path

selectedDirectory

AliasFileSystemTreeModel.Node selectedDirectory

chooser

javax.swing.JFileChooser chooser

fsv

javax.swing.filechooser.FileSystemView fsv

Class ch.randelshofer.quaqua.panther.QuaquaPantherFileChooserUI.FilterComboBoxModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

filters

javax.swing.filechooser.FileFilter[] filters

Class ch.randelshofer.quaqua.panther.QuaquaPantherFileChooserUI.FilterComboBoxRenderer extends javax.swing.DefaultListCellRenderer implements Serializable

Class ch.randelshofer.quaqua.panther.QuaquaPantherFileChooserUI.NewFolderAction extends javax.swing.AbstractAction implements Serializable

Class ch.randelshofer.quaqua.panther.QuaquaPantherFileChooserUI.QuaquaApproveSelectionAction extends javax.swing.AbstractAction implements Serializable


Package ch.randelshofer.quaqua.panther.filechooser

Class ch.randelshofer.quaqua.panther.filechooser.FilePreview extends javax.swing.JPanel implements Serializable

Serialized Fields

fileChooser

javax.swing.JFileChooser fileChooser

isFileIconAvailable

boolean isFileIconAvailable

emptyPreview

javax.swing.JPanel emptyPreview

iconLabel

javax.swing.JLabel iconLabel

kindLabel

javax.swing.JLabel kindLabel

kindText

javax.swing.JTextArea kindText

modifiedLabel

javax.swing.JLabel modifiedLabel

modifiedText

javax.swing.JTextArea modifiedText

nameLabel

javax.swing.JLabel nameLabel

nameText

javax.swing.JTextArea nameText

northPanel

javax.swing.JPanel northPanel

originalLabel

javax.swing.JLabel originalLabel

originalText

javax.swing.JTextArea originalText

sizeLabel

javax.swing.JLabel sizeLabel

sizeText

javax.swing.JTextArea sizeText

whereLabel

javax.swing.JLabel whereLabel

whereText

javax.swing.JTextArea whereText

Class ch.randelshofer.quaqua.panther.filechooser.QuaquaPantherFileChooserPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

accessoryPanel

javax.swing.JPanel accessoryPanel

approveButton

javax.swing.JButton approveButton

browser

JBrowser browser

browserScrollPane

javax.swing.JScrollPane browserScrollPane

browserToggleButton

javax.swing.JToggleButton browserToggleButton

buttonsPanel

javax.swing.JPanel buttonsPanel

cancelButton

javax.swing.JButton cancelButton

cancelOpenPanel

javax.swing.JPanel cancelOpenPanel

controlsPanel

javax.swing.JPanel controlsPanel

directoryComboBox

javax.swing.JComboBox directoryComboBox

fc

javax.swing.JPanel fc

fileNameLabel

javax.swing.JLabel fileNameLabel

fileNamePanel

javax.swing.JPanel fileNamePanel

fileNameSpringPanel

javax.swing.JPanel fileNameSpringPanel

fileNameTextField

javax.swing.JTextField fileNameTextField

filesOfTypeLabel

javax.swing.JLabel filesOfTypeLabel

filterComboBox

javax.swing.JComboBox filterComboBox

formatPanel

javax.swing.JPanel formatPanel

formatSpringPanel

javax.swing.JPanel formatSpringPanel

mainPanel

javax.swing.JPanel mainPanel

navigationButtonsPanel

javax.swing.JPanel navigationButtonsPanel

navigationPanel

javax.swing.JPanel navigationPanel

navigationSpringPanel

javax.swing.JPanel navigationSpringPanel

newFolderButton

javax.swing.JButton newFolderButton

nextButton

javax.swing.JButton nextButton

previousButton

javax.swing.JButton previousButton

separator

javax.swing.JSeparator separator

sidebarList

javax.swing.JList sidebarList

sidebarScrollPane

javax.swing.JScrollPane sidebarScrollPane

splitPane

javax.swing.JSplitPane splitPane

table

javax.swing.JTable table

tableScrollPane

javax.swing.JScrollPane tableScrollPane

tableToggleButton

javax.swing.JToggleButton tableToggleButton

viewGroup

javax.swing.ButtonGroup viewGroup

viewsPanel

javax.swing.JPanel viewsPanel

Class ch.randelshofer.quaqua.panther.filechooser.SidebarListModel extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

path

javax.swing.tree.TreePath path
Holds the tree path to the /Volumes folder.


model

javax.swing.tree.TreeModel model
Holds the AliasFileSystemTreeModel.


fileChooser

javax.swing.JFileChooser fileChooser
The JFileChooser.


dispatcher

SequentialDispatcher dispatcher
Sequential dispatcher for the lazy creation of icons.


isComputerVisible

boolean isComputerVisible
Set this to true, if the computer shall be listed in the sidebar.


userItems

java.util.ArrayList<E> userItems
This array list holds the user items.


viewToModel

ch.randelshofer.quaqua.panther.filechooser.SidebarListModel.Row[] viewToModel
This array holds the view to model mapping of the system items.


modelToView

int[] modelToView
This array holds the model to view mapping of the system items.


systemItemsMap

java.util.HashMap<K,V> systemItemsMap
This hash map is used to determine the sequence and visibility of the items in the system list. HashMap


bestBefore

long bestBefore
Time for next validation of the model.


Package ch.randelshofer.quaqua.subset

Class ch.randelshofer.quaqua.subset.Quaqua14FileChooserLAF extends LookAndFeelProxy implements Serializable

Serialized Fields

myDefaults

javax.swing.UIDefaults myDefaults
Holds a bug fixed version of the UIDefaults provided by the target LookAndFeel.

See Also:
Quaqua14FileChooserLAF.initialize(), Quaqua14FileChooserLAF.getDefaults()

Class ch.randelshofer.quaqua.subset.QuaquaLeopardFileChooserLAF extends LookAndFeelProxy implements Serializable

Serialized Fields

myDefaults

javax.swing.UIDefaults myDefaults
Holds a bug fixed version of the UIDefaults provided by the target LookAndFeel.

See Also:
QuaquaLeopardFileChooserLAF.initialize(), QuaquaLeopardFileChooserLAF.getDefaults()

Package ch.randelshofer.quaqua.tiger

Class ch.randelshofer.quaqua.tiger.Quaqua14TigerCrossPlatformLookAndFeel extends Quaqua14TigerLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.tiger.Quaqua14TigerLookAndFeel extends BasicQuaquaLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.tiger.Quaqua15TigerCrossPlatformLookAndFeel extends Quaqua15TigerLookAndFeel implements Serializable

Class ch.randelshofer.quaqua.tiger.Quaqua15TigerLookAndFeel extends BasicQuaquaLookAndFeel implements Serializable


Package ch.randelshofer.quaqua.util

Class ch.randelshofer.quaqua.util.SizeConstrainedPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

preferredWidth

int preferredWidth

preferredHeight

int preferredHeight


Copyright 2003-2007 (c) Werner Randelshofer.
All rights reserved.