| de.ug2t.unifiedGui.interfaces.IUnEventChannel
All known Subclasses: de.ug2t.channel.ho.server.generic.HoSrvGenericEventChannel, de.ug2t.channel.markup.generic.MuGenericEventChannel, de.ug2t.channel.ho.client.swing.HoSwingEventChannel,
IUnEventChannel | public interface IUnEventChannel extends IKeTreeNode(Code) | | author: Dirk author: date: 10.09.2003 project: WiSer-Framework author: author: This is the common interface to an event-channel. The purpose of an author: event-channel is to receive, transport and deliver an event. The current author: interface supports the following event-types: Drag, Drop, Getfocus, Lostfocus author: and Click author:
|
Inner Class :public static class Factory | |
Inner Class :public class UnEventChannelHelper | |
EVENT_CLICK | final public static int EVENT_CLICK(Code) | | |
EVENT_DBCLICK | final public static int EVENT_DBCLICK(Code) | | |
EVENT_DRAG | final public static int EVENT_DRAG(Code) | | |
EVENT_DROP | final public static int EVENT_DROP(Code) | | |
EVENT_GETF | final public static int EVENT_GETF(Code) | | |
EVENT_KEYACTION | final public static int EVENT_KEYACTION(Code) | | |
EVENT_LOSTF | final public static int EVENT_LOSTF(Code) | | |
EVENT_MOUSEENTER | final public static int EVENT_MOUSEENTER(Code) | | |
EVENT_MOUSELEAVE | final public static int EVENT_MOUSELEAVE(Code) | | |
EVENT_MOVE | final public static int EVENT_MOVE(Code) | | |
EVENT_POSITION | final public static int EVENT_POSITION(Code) | | |
EVENT_RCLICK | final public static int EVENT_RCLICK(Code) | | |
EVENT_SCROLL | final public static int EVENT_SCROLL(Code) | | |
EVENT_SELECT | final public static int EVENT_SELECT(Code) | | |
pcmf_addListener | public void pcmf_addListener(IUnGuiEventListener xListener)(Code) | |
Adds a listener to the widget. The listener is called every time the value
of the widget is changed by the gui.
Parameters: xListener - listener to add |
pcmf_disableSubmit | public void pcmf_disableSubmit()(Code) | |
Disables the submit Flag of a component
|
pcmf_enableSubmit | public void pcmf_enableSubmit()(Code) | |
Enables the submit flag of a widget. If this flag is enabled a change of
the widget value within the gui, or lost of focus leads to a server-side
event-dispatch.
|
pcmf_getKeyFilter | public String pcmf_getKeyFilter()(Code) | |
Gets the keyFilter for a keyeventchannel.
keyeventfilter as regexp |
pcmf_getType | public int pcmf_getType()(Code) | |
Gets the type of the event.
event-type: EVENT_DRAG, EVENT_DROP, EVENT_GETF, EVENT_LOSTF,EVENT_CLICK, EVENT_RCLICK, EVENT_MOVE |
pcmf_getUnComponent | public UnComponent pcmf_getUnComponent()(Code) | |
Gets the associated gui-object which implements all common methods.
gui-object |
pcmf_isReceiveEvent | public boolean pcmf_isReceiveEvent()(Code) | |
Returns the receive flag
flag |
pcmf_isRefreshParent | public boolean pcmf_isRefreshParent()(Code) | |
Returns the refresh flag
flag |
pcmf_isSubmit | public boolean pcmf_isSubmit()(Code) | |
Disables the submit flag of a widget. If this flag is disabled the widgets
value will be stored at client-side until an other widget initiates a
server-side event-dispatch
|
pcmf_receiveEvent | public void pcmf_receiveEvent()(Code) | |
Sets the channel as the receiver of the event. Default is that the parent
receives the event. That means that the channel listener is called but the
parent is given as paramter to the listener
|
pcmf_refreshParent | public void pcmf_refreshParent()(Code) | |
Sets that the parent node is refreshed when a channels event comes up. As a
result listenrs to the channels parent are called when a channeled event
ocures. The default is not to refresh the parent
|
pcmf_remListener | public void pcmf_remListener(IUnGuiEventListener xListener)(Code) | |
Removes a listener from a widget.
Parameters: xListener - listener to remove |
pcmf_setKeyFilter | public void pcmf_setKeyFilter(String xFilter)(Code) | |
Sets the keyFilter for a keyeventchannel.
Parameters: keyfilter - string as regular expression |
|
|