- java.lang.Object
-
- ij.gui.ColorChooser
-
- All Implemented Interfaces:
AdjustmentListener,TextListener,EventListener
public class ColorChooser extends Object implements TextListener, AdjustmentListener
Displays a dialog that allows the user to select a color using three sliders.
-
-
Constructor Summary
Constructors Constructor Description ColorChooser(String title, Color initialColor, boolean useHSB)Constructs a ColorChooser using the specified title and initial color.ColorChooser(String title, Color initialColor, boolean useHSB, Frame frame)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadjustmentValueChanged(AdjustmentEvent e)ColorgetColor()Displays a color selection dialog and returns the color selected by the user.voidtextValueChanged(TextEvent e)
-
-
-
Method Detail
-
getColor
public Color getColor()
Displays a color selection dialog and returns the color selected by the user.
-
textValueChanged
public void textValueChanged(TextEvent e)
- Specified by:
textValueChangedin interfaceTextListener
-
adjustmentValueChanged
public void adjustmentValueChanged(AdjustmentEvent e)
- Specified by:
adjustmentValueChangedin interfaceAdjustmentListener
-
-