|
CSP for Java (JCSP) 1.0-rc7 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.awt.Component | +--java.awt.Container | +--java.awt.Window | +--java.awt.Frame | +--jcsp.awt.ActiveFrame
java.awt.Frame
with a channel interface.
_________________ | | | |event
| |----->----- | | (java.awt.event.WindowEvent) | | | |containerEvent
| |----->----- | | (java.awt.event.ContainerEvent) | | | |componentEvent
| |----->----- | | (java.awt.event.ComponentEvent) | |configure
| |focusEvent
----->-----| ActiveFrame |----->----- (java.lang.Boolean) | | (java.awt.event.FocusEvent) (ActiveFrame.Configure
) | | | |keyEvent
| |----->----- | | (java.awt.event.KeyEvent) | | | |mouseEvent
| |----->----- | | (java.awt.event.MouseEvent) | | | |mouseMotionEvent
| |----->----- | | (java.awt.event.MouseEvent) |_________________|
All channels are optional. The configure and event channels are settable from a constructor. The event channel delivers a WindowEvent whenever one is generated on the ActiveFrame. Other event channels can be added to notify the occurrence of any other events the component generates (by calling the appropriate addXXXEventChannel method before the process is run). Messages can be sent down the configure channel at any time to configure the component. See the table below for details.
All channels are managed by independent internal handler processes. It is, therefore, safe for a serial application process both to service an event channel and configure the component -- no deadlock can occur.
IMPORTANT: it is essential that event channels from this process are always serviced -- otherwise the Java Event Thread will be blocked and the GUI will stop responding. A simple way to guarantee this is to use channels configured with overwriting buffers. For example:
final One2OneChannel myWindowEvent = One2OneChannel.create (new OverWriteOldestBuffer (n)); final One2OneChannel myMouseEvent = One2OneChannel.create (new OverWriteOldestBuffer (n)); final ActiveFrame myFrame = new ActiveFrame (myWindowEvent); myFrame.addMouseEventChannel (myMouseEvent);This will ensure that the Java Event Thread will never be blocked. Slow or inattentive readers may miss rapidly generated events, but the n most recent events will always be available.
Input Channels | ||
---|---|---|
configure | Boolean |
|
ActiveFrame.Configure | Invoke the user-defined Configure.configure method on the frame. | |
Output Channels | ||
event | WindowEvent | The WindowEvent generated by the component |
containerEvent | ContainerEvent | See the addContainerEventChannel method. |
componentEvent | ComponentEvent | See the addComponentEventChannel method. |
focusEvent | FocusEvent | See the addFocusEventChannel method. |
keyEvent | KeyEvent | See the addKeyEventChannel method. |
mouseEvent | MouseEvent | See the addMouseEventChannel method. |
mouseMotionEvent | MouseEvent | See the addMouseMotionEventChannel method. |
import java.awt.*; import java.awt.event.*; import jcsp.lang.*; import jcsp.util.*; import jcsp.awt.*; public class ActiveFrameButtonExample { public static void main (String argv[]) { final Any2OneChannel windowEvent = Any2OneChannel.create (new OverWriteOldestBuffer (10)); final ActiveFrame frame = new ActiveFrame (null, windowEvent, "ActiveButton Example"); final String[] label = {"Hello World", "Rocket Science", "CSP", "Monitors", "Ignore Me", "Goodbye World"}; final Any2OneChannel buttonEvent = Any2OneChannel.create (new OverWriteOldestBuffer (10)); final ActiveButton[] button = new ActiveButton[label.length]; for (int i = 0; i < label.length; i++) { button[i] = new ActiveButton (null, buttonEvent, label[i]); } frame.setSize (300, 200); frame.setLayout (new GridLayout (label.length/2, 2)); for (int i = 0; i < label.length; i++) { frame.add (button[i]); } frame.setVisible (true); new Parallel ( new CSProcess[] { new Parallel (button), new CSProcess () { // respond to window events public void run () { boolean running = true; while (running) { final WindowEvent w = (WindowEvent) windowEvent.read (); switch (w.getID ()) { case WindowEvent.WINDOW_CLOSING: System.out.println ("*** WINDOW_CLOSING ..."); running = false; break; default: System.out.println (w); break; } } frame.setVisible (false); System.exit (0); } }, new CSProcess () { // respond to button events public void run () { boolean running = true; while (running) { final String s = (String) buttonEvent.read (); System.out.println ("Button `" + s + "' pressed ..."); running = (s != label[label.length - 1]); } frame.setVisible (false); System.exit (0); } } } ).run (); } }
ActiveClosingFrame
,
Frame
,
ContainerEvent
,
ComponentEvent
,
FocusEvent
,
KeyEvent
,
MouseEvent
,
OverWriteOldestBuffer
, Serialized FormInner Class Summary | |
static interface |
ActiveFrame.Configure
This enables general configuration of this component. |
Inner classes inherited from class java.awt.Frame |
Frame.AccessibleAWTFrame |
Inner classes inherited from class java.awt.Window |
Window.AccessibleAWTWindow |
Inner classes inherited from class java.awt.Container |
Container.AccessibleAWTContainer |
Inner classes inherited from class java.awt.Component |
Component.AccessibleAWTComponent |
Fields inherited from class java.awt.Frame |
CROSSHAIR_CURSOR, DEFAULT_CURSOR, E_RESIZE_CURSOR, HAND_CURSOR, ICONIFIED, MOVE_CURSOR, N_RESIZE_CURSOR, NE_RESIZE_CURSOR, NORMAL, NW_RESIZE_CURSOR, S_RESIZE_CURSOR, SE_RESIZE_CURSOR, SW_RESIZE_CURSOR, TEXT_CURSOR, W_RESIZE_CURSOR, WAIT_CURSOR |
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 | |
ActiveFrame()
Constructs a new ActiveFrame with no title and no configuration or event channels. |
|
ActiveFrame(ChannelInput configure,
ChannelOutput event)
Constructs a new ActiveFrame with configuration and event channels, but no title. |
|
ActiveFrame(ChannelInput configure,
ChannelOutput event,
String title)
Constructs a new ActiveFrame with configuration and event channels and a title. |
|
ActiveFrame(String title)
Constructs a new ActiveFrame with a title but no configuration or event channels. |
Method Summary | |
void |
addComponentEventChannel(ChannelOutput componentEvent)
Add a new channel to this component that will be used to notify that a ComponentEvent has occurred. |
void |
addContainerEventChannel(ChannelOutput containerEvent)
Add a new channel to this component that will be used to notify that a ContainerEvent has occurred. |
void |
addFocusEventChannel(ChannelOutput focusEvent)
Add a new channel to this component that will be used to notify that a FocusEvent has occurred. |
void |
addKeyEventChannel(ChannelOutput keyEvent)
Add a new channel to this component that will be used to notify that a KeyEvent has occurred. |
void |
addMouseEventChannel(ChannelOutput mouseEvent)
Add a new channel to this component that will be used to notify that a MouseEvent has occurred. |
void |
addMouseMotionEventChannel(ChannelOutput mouseMotionEvent)
Add a new channel to this component that will be used to notify that a MouseMotionEvent has occurred. |
void |
run()
The main body of this process. |
void |
setConfigureChannel(ChannelInput configure)
Sets the configuration channel for this ActiveFrame. |
Methods inherited from class java.awt.Frame |
addNotify, finalize, getAccessibleContext, getCursorType, getFrames, getIconImage, getMenuBar, getState, getTitle, isResizable, paramString, remove, removeNotify, setCursor, setIconImage, setMenuBar, setResizable, setState, setTitle |
Methods inherited from class java.awt.Window |
addWindowListener, applyResourceBundle, applyResourceBundle, dispose, getFocusOwner, getGraphicsConfiguration, getInputContext, getListeners, getLocale, getOwnedWindows, getOwner, getToolkit, getWarningString, hide, isShowing, pack, postEvent, processEvent, processWindowEvent, removeWindowListener, setCursor, show, toBack, toFront |
Methods inherited from class java.awt.Container |
add, add, add, add, add, addContainerListener, addImpl, countComponents, deliverEvent, doLayout, findComponentAt, findComponentAt, getAlignmentX, getAlignmentY, getComponent, getComponentAt, getComponentAt, getComponentCount, getComponents, getInsets, getLayout, getMaximumSize, getMinimumSize, getPreferredSize, insets, invalidate, isAncestorOf, layout, list, list, locate, minimumSize, paint, paintComponents, preferredSize, print, printComponents, processContainerEvent, remove, remove, removeAll, removeContainerListener, setFont, setLayout, update, validate, validateTree |
Methods inherited from class java.lang.Object |
clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.awt.MenuContainer |
getFont, postEvent |
Constructor Detail |
public ActiveFrame()
public ActiveFrame(String title)
title
- the title for the frame.public ActiveFrame(ChannelInput configure, ChannelOutput event)
configure
- the channel for configuration events
-- can be null if no configuration is required.event
- a WindowEvent will be output whenever it occurs
-- can be null if no notification is required.public ActiveFrame(ChannelInput configure, ChannelOutput event, String title)
configure
- the channel for configuration events
-- can be null if no configuration is required.event
- a WindowEvent will be output whenever it occurs
-- can be null if no notification is required.title
- the title for the frame.Method Detail |
public void setConfigureChannel(ChannelInput configure)
configure
- the channel for configuration events
-- can be null if no configuration is required.public void addContainerEventChannel(ChannelOutput containerEvent)
NOTE: This method must be called before this process is run.
containerEvent
- the channel down which to send ContainerEvents.public void addComponentEventChannel(ChannelOutput componentEvent)
NOTE: This method must be called before this process is run.
componentEvent
- the channel down which to send ComponentEvents.public void addFocusEventChannel(ChannelOutput focusEvent)
NOTE: This method must be called before this process is run.
focusEvent
- the channel down which to send FocusEvents.public void addKeyEventChannel(ChannelOutput keyEvent)
NOTE: This method must be called before this process is run.
keyEvent
- the channel down which to send KeyEvents.public void addMouseEventChannel(ChannelOutput mouseEvent)
NOTE: This method must be called before this process is run.
mouseEvent
- the channel down which to send MouseEvents.public void addMouseMotionEventChannel(ChannelOutput mouseMotionEvent)
NOTE: This method must be called before this process is run.
mouseMotionEvent
- the channel down which to send MouseMotionEvents.public void run()
run
in interface CSProcess
|
CSP for Java (JCSP) 1.0-rc7 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |