Panel |
---|
| This component does not have scripting functions associated with it. |
Panel |
---|
| This component does not have extension functions associated with it.
|
Panel |
---|
|
Expand |
---|
|
Expand |
---|
| This event occurs when a component that can receive input, such as a text box, receives the input focus. This usually occurs when a user clicks on the component or tabs over to it. .source | The component that fired this event | .oppositeComponent | The other component involved in thie focus change. That is, the component that lost focus in order for this one to gain it, or vise versa. |
|
Expand |
---|
| This event occurs when a component that had the input focus lost it to another component. .source | The component that fired this event | .oppositeComponent | The other component involved in thie focus change. That is, the component that lost focus in order for this one to gain it, or vise versa. |
|
|
Expand |
---|
|
Expand |
---|
| An integer that indicates whether the state was changed to "Selected" (on) or "Deselected" (off). Compare this to the event object's constants to determine what the new state is. .source | The component that fired this event | .keyCode | The key code for this event. Used with the keyPressed and keyReleased events. | .keyChar | The character that was typed. Used with the keyTyped event. | .keyLocation | Returns the location of the key that originated this key event. Some keys occur more than once on a key board, e.g. Additionally, some keys occur on the numeric keypad. This provides a way of distinguishing such keys. See the KEY_LOCATION constants in the | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
Expand |
---|
| Fires when a key is released and the source component has the input focus. Works for all characters, including non-printable ones, such as SHIFT and F3. .source | The component that fired this event | .keyCode | The key code for this event. Used with the keyPressed and keyReleased events. | .keyChar | The character that was typed. Used with the keyTyped event. | .keyLocation | Returns the location of the key that originated this key event. Some keys occur more than once on a key board, e.g. Additionally, some keys occur on the numeric keypad. This provides a way of distinguishing such keys. See the KEY_LOCATION constants in the | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
Expand |
---|
| Fires whenever a bindable property of the source component changes. This works for standard and custom (dynamic) properties. .source | The component that fired this event | .keyCode | The key code for this event. Used with the keyPressed and keyReleased events. | .keyChar | The character that was typed. Used with the keyTyped event. | .keyLocation | Returns the location of the key that originated this key event. Some keys occur more than once on a key board, e.g. Additionally, some keys occur on the numeric keypad. This provides a way of distinguishing such keys. See the KEY_LOCATION constants in the | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
|
Expand |
---|
|
Expand |
---|
| This event signifies a mouse click on the source component. A mouse click the combination of a mouse press and a mouse release, both of which must have occurred over the source component. Note that this event fires after the pressed and released events have fired. .source | The component that fired this event | .button | The code for the button that coused this event to fire. | .clickCount | The number of mouse clicks associated with this event. | .x | The x-coordinate (with respect to the source component) of this mouse event. | .y | The y-coordinate (with respect to the source component) of this mouse event. | .popupTrigger | Returns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists. | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
Expand |
---|
| This event fires when the mouse enters the space over the source component. .source | The component that fired this event | .button | The code for the button that coused this event to fire. | .clickCount | The number of mouse clicks associated with this event. | .x | The x-coordinate (with respect to the source component) of this mouse event. | .y | The y-coordinate (with respect to the source component) of this mouse event. | .popupTrigger | Returns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists. | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
Expand |
---|
| This event fires when the mouse leaves the space over the source component. .source | The component that fired this event | .button | The code for the button that coused this event to fire. | .clickCount | The number of mouse clicks associated with this event. | .x | The x-coordinate (with respect to the source component) of this mouse event. | .y | The y-coordinate (with respect to the source component) of this mouse event. | .popupTrigger | Returns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists. | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
Expand |
---|
| This event fires when a mouse button is pressed down on the source component. .source | The component that fired this event | .button | The code for the button that coused this event to fire. | .clickCount | The number of mouse clicks associated with this event. | .x | The x-coordinate (with respect to the source component) of this mouse event. | .y | The y-coordinate (with respect to the source component) of this mouse event. | .popupTrigger | Returns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists. | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
Expand |
---|
| This event fires when a mouse button is released, if that mouse button's press happened over this component. .source | The component that fired this event | .button | The code for the button that caused this event to fire. | .clickCount | The number of mouse clicks associated with this event. | .x | The x-coordinate (with respect to the source component) of this mouse event. | .y | The y-coordinate (with respect to the source component) of this mouse event. | .popupTrigger | Returns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists. | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
|
Expand |
---|
|
Expand |
---|
| Fires when the mouse moves over a component after a button has been pushed. .source | The component that fired this event | .button | The code for the button that coused this event to fire. | .clickCount | The number of mouse clicks associated with this event. | .x | The x-coordinate (with respect to the source component) of this mouse event. | .y | The y-coordinate (with respect to the source component) of this mouse event. | .popupTrigger | Returns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists. | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
Expand |
---|
| Fires when the mouse moves over a component, but no buttons are pushed. .source | The component that fired this event | .button | The code for the button that coused this event to fire. | .clickCount | The number of mouse clicks associated with this event. | .x | The x-coordinate (with respect to the source component) of this mouse event. | .y | The y-coordinate (with respect to the source component) of this mouse event. | .popupTrigger | Returns True (1) if this mouse event is a popup trigger. What constitutes a popup trigger is operating system dependent, which is why this abstraction exists. | .altDown | True (1) if the Alt key was held down during this event, false (0) otherwise. | .controlDown | True (1) if the Control key was held down during this event, false (0) otherwise. | .shiftDown | True (1) if the Shift key was held down during this event, false (0) otherwise. |
|
|
Expand |
---|
|
Expand |
---|
| Fires whenever a bindable property of the source component changes. This works for standard and custom (dynamic) properties. .source | The component that fired this event | .graphics | An instance of java.awt.Graphics2D that can be used to paint this component. The point (0,0) is located at the upper left of the component. | .width | The width of the paintable area of the component. This takes into account the component's border. | .height | The height of the paintable area of the component. This takes into account the component's border. |
|
|
|
|