|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--java.awt.Component
|
+--java.awt.Container
|
+--javax.swing.JComponent
|
+--com.monkeycoder.monkeynes.gui.StateLight
This is a graphics component representing a boolean value as a light.
Originally part of the MonkeyNES project.
| Field Summary |
| Fields inherited from class javax.swing.JComponent |
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
| Fields inherited from class java.awt.Component |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
| Fields inherited from interface java.awt.image.ImageObserver |
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
| Constructor Summary | |
StateLight(boolean inState,
Color inTrueColor,
Color inFalseColor)
Creates a new StateLight using the specified colors for true and false, and in the specified state. |
|
StateLight(boolean inState,
Color inTrueColor,
Color inTrueBorderColor,
Color inFalseColor,
Color inFalseBorderColor)
Creates a new StateLight using the specified colors and border colors for true and false, and in the specified state. |
|
StateLight(Color inTrueColor,
Color inFalseColor)
Creates a new StateLight using the specified colors for true and false. |
|
StateLight(Color inTrueColor,
Color inTrueBorderColor,
Color inFalseColor,
Color inFalseBorderColor)
Creates a new StateLight using the specified colors and border colors for true and false. |
|
| Method Summary | |
Dimension |
getPreferredSize()
Returns the size this light prefers to be the parent drawing component. |
boolean |
getState()
Gets the current state of the light. |
void |
paint(Graphics g)
Paints the surface of this component based on the current state and colors. |
void |
setState(boolean inState)
Sets the current state of the light. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public StateLight(Color inTrueColor,
Color inFalseColor)
inTrueColor - The color to use when the light is representing true.inFalseColor - The color to use when the light is representing false.
public StateLight(boolean inState,
Color inTrueColor,
Color inFalseColor)
inState - The state this light is in upon creation.inTrueColor - The color to use when the light is representing true.inFalseColor - The color to use when the light is representing false.
public StateLight(Color inTrueColor,
Color inTrueBorderColor,
Color inFalseColor,
Color inFalseBorderColor)
inTrueColor - The color to use when the light is representing true.inTrueBorderColor - The border color to use when the light is representing true.inFalseColor - The color to use when the light is representing false.inFalseBorderColor - The border color to use when the light is representing false.
public StateLight(boolean inState,
Color inTrueColor,
Color inTrueBorderColor,
Color inFalseColor,
Color inFalseBorderColor)
inState - The state this light is in upon creation.inTrueColor - The color to use when the light is representing true.inTrueBorderColor - The border color to use when the light is representing true.inFalseColor - The color to use when the light is representing false.inFalseBorderColor - The border color to use when the light is representing false.| Method Detail |
public boolean getState()
public void setState(boolean inState)
inState - The current state of the light.public Dimension getPreferredSize()
getPreferredSize in class JComponentpublic void paint(Graphics g)
paint in class JComponentg - The graphics component that will be used for drawing this component.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||