ij2x.plugin.frame
Interface ColorPickerConstance

All Known Implementing Classes:
ColorPicker, JColorPicker

public interface ColorPickerConstance

Title:

Description:

Copyright: Copyright (c) 2011

Company:


Field Summary
static int BLUE
          Used to indicate when we're in "blue mode".
static int BRI
          Used to indicate when we're in "brightness mode".
static int GREEN
          Used to indicate when we're in "green mode".
static int HUE
          Used to indicate when we're in "hue mode".
static java.lang.String MODE_CONTROLS_VISIBLE_PROPERTY
          PropertyChangeEvents will be triggered for this property when setModeControlsVisible() is called.
static java.lang.String MODE_PROPERTY
          PropertyChangeEvents will be triggered when the mode changes.
static java.lang.String OPACITY_PROPERTY
          PropertyChangeEvents will be triggered when the opacity value is adjusted.
static int RED
          Used to indicate when we're in "red mode".
static int SAT
          Used to indicate when we're in "saturation mode".
static java.lang.String SELECTED_COLOR_PROPERTY
          PropertyChangeEvents will be triggered for this property when the selected color changes.
 

Field Detail

SELECTED_COLOR_PROPERTY

static final java.lang.String SELECTED_COLOR_PROPERTY
PropertyChangeEvents will be triggered for this property when the selected color changes.

(Events are only created when then RGB values of the color change. This means, for example, that the change from HSB(0,0,0) to HSB(.4,0,0) will not generate events, because when the brightness stays zero the RGB color remains (0,0,0). So although the hue moved around, the color is still black, so no events are created.)

See Also:
Constant Field Values

MODE_CONTROLS_VISIBLE_PROPERTY

static final java.lang.String MODE_CONTROLS_VISIBLE_PROPERTY
PropertyChangeEvents will be triggered for this property when setModeControlsVisible() is called.

See Also:
Constant Field Values

OPACITY_PROPERTY

static final java.lang.String OPACITY_PROPERTY
PropertyChangeEvents will be triggered when the opacity value is adjusted.

See Also:
Constant Field Values

MODE_PROPERTY

static final java.lang.String MODE_PROPERTY
PropertyChangeEvents will be triggered when the mode changes. (That is, when the wheel switches from HUE, SAT, BRI, RED, GREEN, or BLUE modes.)

See Also:
Constant Field Values

HUE

static final int HUE
Used to indicate when we're in "hue mode".

See Also:
Constant Field Values

BRI

static final int BRI
Used to indicate when we're in "brightness mode".

See Also:
Constant Field Values

SAT

static final int SAT
Used to indicate when we're in "saturation mode".

See Also:
Constant Field Values

RED

static final int RED
Used to indicate when we're in "red mode".

See Also:
Constant Field Values

GREEN

static final int GREEN
Used to indicate when we're in "green mode".

See Also:
Constant Field Values

BLUE

static final int BLUE
Used to indicate when we're in "blue mode".

See Also:
Constant Field Values