public class JColorChooser extends JComponent implements Accessible
JColorChooser
provides a pane of controls designed to allow a user to manipulate and select a color. For information about using color choosers, see How to Use Color Choosers, a section in The Java Tutorial.
This class provides three levels of API:
ActionListeners
can be specified to be invoked when the user presses one of the dialog buttons. JColorChooser
panes directly (within any container). PropertyChange
listeners can be added to detect when the current "color" property changes. Warning: Swing is not thread safe. For more information see Swing's Threading Policy.
Warning: Serialized objects of this class will not be compatible with future Swing releases. The current serialization support is appropriate for short term storage or RMI between applications running the same version of Swing. As of 1.4, support for long term storage of all JavaBeans™ has been added to the java.beans
package. Please see XMLEncoder
.
Modifier and Type | Class and Description |
---|---|
protected class |
JColorChooser.AccessibleJColorChooser This class implements accessibility support for the |
JComponent.AccessibleJComponent
Container.AccessibleAWTContainer
Component.AccessibleAWTComponent, Component.BaselineResizeBehavior, Component.BltBufferStrategy, Component.FlipBufferStrategy
public static final String SELECTION_MODEL_PROPERTY
The selection model property name.
public static final String PREVIEW_PANEL_PROPERTY
The preview panel property name.
public static final String CHOOSER_PANELS_PROPERTY
The chooserPanel array property name.
protected AccessibleContext accessibleContext
public JColorChooser()
Creates a color chooser pane with an initial color of white.
public JColorChooser(Color initialColor)
Creates a color chooser pane with the specified initial color.
initialColor
- the initial color set in the chooserpublic JColorChooser(ColorSelectionModel model)
Creates a color chooser pane with the specified ColorSelectionModel
.
model
- the ColorSelectionModel
to be usedpublic static Color showDialog(Component component, String title, Color initialColor) throws HeadlessException
Shows a modal color-chooser dialog and blocks until the dialog is hidden. If the user presses the "OK" button, then this method hides/disposes the dialog and returns the selected color. If the user presses the "Cancel" button or closes the dialog without pressing "OK", then this method hides/disposes the dialog and returns null
.
component
- the parent Component
for the dialogtitle
- the String containing the dialog's titleinitialColor
- the initial Color set when the color-chooser is shownnull
if the user opted outHeadlessException
- if GraphicsEnvironment.isHeadless() returns true.GraphicsEnvironment.isHeadless()
public static JDialog createDialog(Component c, String title, boolean modal, JColorChooser chooserPane, ActionListener okListener, ActionListener cancelListener) throws HeadlessException
Creates and returns a new dialog containing the specified ColorChooser
pane along with "OK", "Cancel", and "Reset" buttons. If the "OK" or "Cancel" buttons are pressed, the dialog is automatically hidden (but not disposed). If the "Reset" button is pressed, the color-chooser's color will be reset to the color which was set the last time show
was invoked on the dialog and the dialog will remain showing.
c
- the parent component for the dialogtitle
- the title for the dialogmodal
- a boolean. When true, the remainder of the program is inactive until the dialog is closed.chooserPane
- the color-chooser to be placed inside the dialogokListener
- the ActionListener invoked when "OK" is pressedcancelListener
- the ActionListener invoked when "Cancel" is pressedHeadlessException
- if GraphicsEnvironment.isHeadless() returns true.GraphicsEnvironment.isHeadless()
public ColorChooserUI getUI()
Returns the L&F object that renders this component.
ColorChooserUI
object that renders this componentpublic void setUI(ColorChooserUI ui)
Sets the L&F object that renders this component.
ui
- the ColorChooserUI
L&F objectUIDefaults.getUI(javax.swing.JComponent)
public void updateUI()
Notification from the UIManager
that the L&F has changed. Replaces the current UI object with the latest version from the UIManager
.
updateUI
in class JComponent
JComponent.updateUI()
public String getUIClassID()
Returns the name of the L&F class that renders this component.
getUIClassID
in class JComponent
JComponent.getUIClassID()
, UIDefaults.getUI(javax.swing.JComponent)
public Color getColor()
Gets the current color value from the color chooser. By default, this delegates to the model.
public void setColor(Color color)
Sets the current color of the color chooser to the specified color. The ColorSelectionModel
will fire a ChangeEvent
color
- the color to be set in the color chooserContainer.addPropertyChangeListener(java.beans.PropertyChangeListener)
public void setColor(int r, int g, int b)
Sets the current color of the color chooser to the specified RGB color. Note that the values of red, green, and blue should be between the numbers 0 and 255, inclusive.
r
- an int specifying the amount of Redg
- an int specifying the amount of Greenb
- an int specifying the amount of BlueIllegalArgumentException
- if r,g,b values are out of rangeColor
public void setColor(int c)
Sets the current color of the color chooser to the specified color.
c
- an integer value that sets the current color in the chooser where the low-order 8 bits specify the Blue value, the next 8 bits specify the Green value, and the 8 bits above that specify the Red value.public void setDragEnabled(boolean b)
Sets the dragEnabled
property, which must be true
to enable automatic drag handling (the first part of drag and drop) on this component. The transferHandler
property needs to be set to a non-null
value for the drag to do anything. The default value of the dragEnabled
property is false
.
When automatic drag handling is enabled, most look and feels begin a drag-and-drop operation when the user presses the mouse button over the preview panel. Some look and feels might not support automatic drag and drop; they will ignore this property. You can work around such look and feels by modifying the component to directly call the exportAsDrag
method of a TransferHandler
.
b
- the value to set the dragEnabled
property toHeadlessException
- if b
is true
and GraphicsEnvironment.isHeadless()
returns true
GraphicsEnvironment.isHeadless()
, getDragEnabled()
, JComponent.setTransferHandler(javax.swing.TransferHandler)
, TransferHandler
public boolean getDragEnabled()
Gets the value of the dragEnabled
property.
dragEnabled
propertysetDragEnabled(boolean)
public void setPreviewPanel(JComponent preview)
Sets the current preview panel. This will fire a PropertyChangeEvent
for the property named "previewPanel".
preview
- the JComponent
which displays the current colorContainer.addPropertyChangeListener(java.beans.PropertyChangeListener)
public JComponent getPreviewPanel()
Returns the preview panel that shows a chosen color.
JComponent
object -- the preview panelpublic void addChooserPanel(AbstractColorChooserPanel panel)
Adds a color chooser panel to the color chooser.
panel
- the AbstractColorChooserPanel
to be addedpublic AbstractColorChooserPanel removeChooserPanel(AbstractColorChooserPanel panel)
Removes the Color Panel specified.
panel
- a string that specifies the panel to be removedIllegalArgumentException
- if panel is not in list of known chooser panelspublic void setChooserPanels(AbstractColorChooserPanel[] panels)
Specifies the Color Panels used to choose a color value.
panels
- an array of AbstractColorChooserPanel
objectspublic AbstractColorChooserPanel[] getChooserPanels()
Returns the specified color panels.
AbstractColorChooserPanel
objectspublic ColorSelectionModel getSelectionModel()
Returns the data model that handles color selections.
ColorSelectionModel
objectpublic void setSelectionModel(ColorSelectionModel newModel)
Sets the model containing the selected color.
newModel
- the new ColorSelectionModel
objectprotected String paramString()
Returns a string representation of this JColorChooser
. This method is intended to be used only for debugging purposes, and the content and format of the returned string may vary between implementations. The returned string may be empty but may not be null
.
paramString
in class JComponent
JColorChooser
public AccessibleContext getAccessibleContext()
Gets the AccessibleContext associated with this JColorChooser. For color choosers, the AccessibleContext takes the form of an AccessibleJColorChooser. A new AccessibleJColorChooser instance is created if necessary.
getAccessibleContext
in interface Accessible
getAccessibleContext
in class Component
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.