Serialized Form
Package ch.randelshofer.quaqua |
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.
textLabel
javax.swing.JLabel textLabel
arrowLabel
javax.swing.JLabel arrowLabel
browser
JBrowser browser
expandedIcon
javax.swing.Icon expandedIcon
selectedExpandedIcon
javax.swing.Icon selectedExpandedIcon
focusedSelectedExpandedIcon
javax.swing.Icon focusedSelectedExpandedIcon
expandingIcon
javax.swing.Icon expandingIcon
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.
expandedPathIsLeaf
boolean expandedPathIsLeaf
- Whether the last path component of the expanded path is a leaf.
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 preferred 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?
column
int column
startMouseX
int startMouseX
startWidth
int startWidth
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.
windowEventHandler
java.awt.event.WindowListener windowEventHandler
- This handler is used to handle window events of the owner.
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.
isExperimentalSheet
boolean isExperimentalSheet
- If this is set to true, the JSheet tries to use an experimental JNI method to be shown as a native window.
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.
target
javax.swing.LookAndFeel target
- The target LookAndFeel.
target
javax.swing.LookAndFeel target
- The target LookAndFeel.
scrollbar
javax.swing.JScrollBar scrollbar
titleHeight
int titleHeight
titleHeight
int titleHeight
isFocused
boolean isFocused
comboBox
javax.swing.JComboBox comboBox
listBox
javax.swing.JList listBox
rendererPane
javax.swing.CellRendererPane rendererPane
comboIcon
javax.swing.Icon comboIcon
iconOnly
boolean iconOnly
qqui
QuaquaComboBoxUI qqui
handler
ch.randelshofer.quaqua.QuaquaComboPopup.Handler handler
lastFocused
java.awt.Component lastFocused
invokerRootPane
javax.swing.JRootPane invokerRootPane
focusTraversalKeysEnabled
boolean focusTraversalKeysEnabled
activeColors
java.awt.Color[] activeColors
inactiveColors
java.awt.Color[] inactiveColors
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
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
ch.randelshofer.quaqua.QuaquaTextFieldBorder.BgBorder textFieldBackground
windowPropertyListener
java.beans.PropertyChangeListener windowPropertyListener
- PropertyChangeListener added to the Window.
rootPropertyListener
java.beans.PropertyChangeListener rootPropertyListener
- PropertyChangeListener added to the JRootPane.
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
QuaquaRootPaneUI rootPaneUI
- QuaquaRootPaneUI 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
borderColor
java.awt.Color borderColor
orientation
int orientation
offset
java.awt.Point offset
direction
int direction
addToSelection
boolean addToSelection
- Set to true if append to selection.
changeSelection
boolean changeSelection
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
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
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.
pane
javax.swing.JComponent pane
option
int option
value
java.lang.Object value
inputValue
java.lang.Object inputValue
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 |
color1
java.awt.Color color1
color2
java.awt.Color color2
isActive
boolean isActive
isTransparent
boolean isTransparent
inactiveRGB
int inactiveRGB
argb
int argb
texture
java.awt.Image texture
Package ch.randelshofer.quaqua.colorchooser |
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
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
paletteCombo
javax.swing.JComboBox paletteCombo
paletteLabel
javax.swing.JLabel paletteLabel
paletteList
javax.swing.JList paletteList
paletteScrollPane
javax.swing.JScrollPane paletteScrollPane
sliders
java.util.LinkedList<E> sliders
- JSlider's associated to this ColorSliderModel.
listeners
java.util.LinkedList<E> listeners
- ChangeListener's listening to changes in this ColorSliderModel.
components
javax.swing.DefaultBoundedRangeModel[] components
- Components of the color model.
values
int[] values
- Speed optimization. This way, we do not need to create a new array
for each invocation of method getInterpolatedRGB().
Note: This variable must not use in reentrant methods.
slidersComboBox
javax.swing.JComboBox slidersComboBox
slidersHolder
javax.swing.JPanel slidersHolder
colorWheel
JColorWheel colorWheel
ccModel
HSBColorSliderModel ccModel
updatingChooser
int updatingChooser
brightnessSlider
javax.swing.JSlider brightnessSlider
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.
crayons
Crayons crayons
ccModel
GrayColorSliderModel 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
colorSpace
java.awt.color.ColorSpace colorSpace
rgb
float[] rgb
gray
float[] gray
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
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
isWebSaveOnly
boolean isWebSaveOnly
colorSpace
java.awt.color.ICC_ColorSpace colorSpace
cmyk
float[] cmyk
rgb
float[] rgb
wheelInsets
java.awt.Insets wheelInsets
colorWheelImage
java.awt.Image colorWheelImage
colorWheelProducer
ColorWheelImageProducer colorWheelProducer
model
HSBColorSliderModel model
mouseHandler
ch.randelshofer.quaqua.colorchooser.JColorWheel.MouseHandler mouseHandler
modelHandler
ch.randelshofer.quaqua.colorchooser.JColorWheel.ModelHandler modelHandler
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
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.
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
ccModel
ColorSliderModel ccModel
updateRecursion
int updateRecursion
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
swatchPanel
SwatchPanel swatchPanel
scrollPane
javax.swing.JScrollPane scrollPane
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 |
serialVersionUID: -6568722458793895906L
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 |
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
rule
int rule
- The composite rule for this object.
k1
float k1
k2
float k2
k3
float k3
k4
float k4
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
mode
int mode
- The pad mode for this object.
Package ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.tiff |
decodePaletteAsShorts
boolean decodePaletteAsShorts
ifdOffset
java.lang.Long ifdOffset
convertJPEGYCbCrToRGB
boolean convertJPEGYCbCrToRGB
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.
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 |
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 |
forbidden
java.util.HashSet<E> forbidden
labelForeground
java.awt.Color labelForeground
labelDisabledForeground
java.awt.Color labelDisabledForeground
selectedExpandingIcon
javax.swing.Icon selectedExpandingIcon
selectedExpandedIcon
javax.swing.Icon selectedExpandedIcon
focusedSelectedExpandingIcon
javax.swing.Icon focusedSelectedExpandingIcon
focusedSelectedExpandedIcon
javax.swing.Icon focusedSelectedExpandedIcon
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.icon |
width
int width
height
int height
Package ch.randelshofer.quaqua.jaguar |
directories
java.lang.Object[] directories
selectedDirectory
java.lang.Object selectedDirectory
chooser
javax.swing.JFileChooser chooser
fsv
javax.swing.filechooser.FileSystemView fsv
filters
javax.swing.filechooser.FileFilter[] filters
Package ch.randelshofer.quaqua.jaguar.filechooser |
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 |
layoutStyle
javax.swing.LayoutStyle layoutStyle
path
javax.swing.tree.TreePath path
selectedDirectory
FileSystemTreeModel.Node selectedDirectory
chooser
javax.swing.JFileChooser chooser
fsv
javax.swing.filechooser.FileSystemView fsv
filters
javax.swing.filechooser.FileFilter[] filters
Package ch.randelshofer.quaqua.leopard.filechooser |
labelForeground
java.awt.Color labelForeground
labelDisabledForeground
java.awt.Color labelDisabledForeground
selectedExpandingIcon
javax.swing.Icon selectedExpandingIcon
selectedExpandedIcon
javax.swing.Icon selectedExpandedIcon
focusedSelectedExpandingIcon
javax.swing.Icon focusedSelectedExpandingIcon
focusedSelectedExpandedIcon
javax.swing.Icon focusedSelectedExpandedIcon
expandingIcon
javax.swing.Icon expandingIcon
expandedIcon
javax.swing.Icon expandedIcon
emptyIcon
javax.swing.Icon emptyIcon
fileChooser
javax.swing.JFileChooser fileChooser
textIconGap
int textIconGap
textArrowIconGap
int textArrowIconGap
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
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
volumesPath
javax.swing.tree.TreePath volumesPath
- Holds the tree volumesPath to the /Volumes folder.
model
javax.swing.tree.TreeModel model
- Holds the FileSystemTreeModel.
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 |
path
javax.swing.tree.TreePath path
selectedDirectory
FileSystemTreeModel.Node selectedDirectory
chooser
javax.swing.JFileChooser chooser
fsv
javax.swing.filechooser.FileSystemView fsv
filters
javax.swing.filechooser.FileFilter[] filters
Package ch.randelshofer.quaqua.panther.filechooser |
fileChooser
javax.swing.JFileChooser fileChooser
isFileIconAvailable
boolean isFileIconAvailable
emptyPreview
javax.swing.JPanel emptyPreview
info
FileInfo info
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
previewCheckBox
javax.swing.JCheckBox previewCheckBox
previewLabel
javax.swing.JLabel previewLabel
sizeLabel
javax.swing.JLabel sizeLabel
sizeText
javax.swing.JTextArea sizeText
whereLabel
javax.swing.JLabel whereLabel
whereText
javax.swing.JTextArea whereText
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
path
javax.swing.tree.TreePath path
- Holds the tree path to the /Volumes folder.
model
javax.swing.tree.TreeModel model
- Holds the FileSystemTreeModel.
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.snow_leopard |
layoutStyle
javax.swing.LayoutStyle layoutStyle
Package ch.randelshofer.quaqua.subset |
myDefaults
javax.swing.UIDefaults myDefaults
- Holds a bug fixed version of the UIDefaults provided by the target
LookAndFeel.
- See Also:
QuaquaLeopardFileChooserLAF.initialize()
,
QuaquaLeopardFileChooserLAF.getDefaults()
myDefaults
javax.swing.UIDefaults myDefaults
- Holds a bug fixed version of the UIDefaults provided by the target
LookAndFeel.
- See Also:
QuaquaPantherFileChooserLAF.initialize()
,
QuaquaPantherFileChooserLAF.getDefaults()
Package ch.randelshofer.quaqua.tiger |
Package ch.randelshofer.quaqua.util |
preferredWidth
int preferredWidth
preferredHeight
int preferredHeight