|
JIDE 3.5.15 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.EventObject java.awt.AWTEvent com.jidesoft.docking.event.DockableFrameEvent
public class DockableFrameEvent
An AWTEvent
that adds support for DockableFrame
objects as the event source.
DockableFrame
,
DockableFrameListener
,
Serialized FormField Summary | |
---|---|
static int |
DOCKABLE_FRAME_ACTIVATED
This event indicates that the DockableFrame becomes active. |
static int |
DOCKABLE_FRAME_ADDED
This event is delivered when the DockableFrame is first added to DockingManager. |
static int |
DOCKABLE_FRAME_AUTOHIDDEN
This event indicates that the DockableFrame has been changed from other states to the autohide
state. |
static int |
DOCKABLE_FRAME_AUTOHIDESHOWING
This event indicates that the DockableFrame has been changed from other states to the
autohide-showing state. |
static int |
DOCKABLE_FRAME_DEACTIVATED
This event indicates that the DockableFrame becomes inactive. |
static int |
DOCKABLE_FRAME_DOCKED
This event indicates that the DockableFrame has been changed from other states to the docking state
or position changed while in the docking state. |
static int |
DOCKABLE_FRAME_FIRST
The first number in the range of IDs used for DockableFrame events. |
static int |
DOCKABLE_FRAME_FLOATING
This event indicates that the DockableFrame has been changed from other states to the floating state
or position changed while in the floating state. |
static int |
DOCKABLE_FRAME_HIDDEN
This event is delivered when hideFrame is called on the DockableFrame . |
static int |
DOCKABLE_FRAME_LAST
The last number in the range of IDs used for DockableFrame events. |
static int |
DOCKABLE_FRAME_MAXIMIZED
This event indicates that the DockableFrame becomes maximized. |
static int |
DOCKABLE_FRAME_MOVED
This event indicates that the DockableFrame was moved without dock mode change. |
static int |
DOCKABLE_FRAME_REMOVED
This event is delivered when the DockableFrame is removed from DockingManager. |
static int |
DOCKABLE_FRAME_RESTORED
This event indicates that the DockableFrame restored from maximized state. |
static int |
DOCKABLE_FRAME_SHOWN
This event is delivered when showFrame is called on the DockableFrame . |
static int |
DOCKABLE_FRAME_TABHIDDEN
This event indicates that the DockableFrame becomes invisible because its tab is deselected. |
static int |
DOCKABLE_FRAME_TABSHOWN
This event indicates that the DockableFrame becomes visible because its tab is selected. |
static int |
DOCKABLE_FRAME_TRANSFERRED
This event indicates that the DockableFrame was dragged from one DockingManager to another one. |
Fields inherited from class java.util.EventObject |
---|
source |
Constructor Summary | |
---|---|
DockableFrameEvent(DockableFrame source,
int id)
Constructs an DockableFrameEvent object. |
|
DockableFrameEvent(DockableFrame source,
int id,
DockableFrame opposite)
Constructs an DockableFrameEvent object. |
|
DockableFrameEvent(DockableFrame source,
int id,
DockingManager opposite)
Constructs an DockableFrameEvent object. |
Method Summary | |
---|---|
DockableFrame |
getDockableFrame()
Returns the originator of the event. |
DockableFrame |
getOppositeDockableFrame()
Gets the opposite dockable frame. |
DockingManager |
getOppositeDockingManger()
Gets the opposite docking manager. |
String |
paramString()
Returns a parameter string identifying this event. |
Methods inherited from class java.awt.AWTEvent |
---|
consume, getID, isConsumed, setSource, toString |
Methods inherited from class java.util.EventObject |
---|
getSource |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final int DOCKABLE_FRAME_FIRST
DockableFrame
events.
public static final int DOCKABLE_FRAME_LAST
DockableFrame
events.
public static final int DOCKABLE_FRAME_ADDED
DockableFrame
is first added to DockingManager.
public static final int DOCKABLE_FRAME_REMOVED
DockableFrame
is removed from DockingManager.
public static final int DOCKABLE_FRAME_SHOWN
DockableFrame
.
public static final int DOCKABLE_FRAME_HIDDEN
DockableFrame
. You can veto this event by
overriding DockableFrame.shouldVetoHiding()
method and return true.
public static final int DOCKABLE_FRAME_DOCKED
DockableFrame
has been changed from other states to the docking state
or position changed while in the docking state.
public static final int DOCKABLE_FRAME_FLOATING
DockableFrame
has been changed from other states to the floating state
or position changed while in the floating state.
public static final int DOCKABLE_FRAME_AUTOHIDDEN
DockableFrame
has been changed from other states to the autohide
state.
Component.show()
,
Constant Field Valuespublic static final int DOCKABLE_FRAME_AUTOHIDESHOWING
DockableFrame
has been changed from other states to the
autohide-showing state.
Component.show()
,
Constant Field Valuespublic static final int DOCKABLE_FRAME_ACTIVATED
DockableFrame
becomes active.
public static final int DOCKABLE_FRAME_DEACTIVATED
DockableFrame
becomes inactive.
public static final int DOCKABLE_FRAME_TABSHOWN
DockableFrame
becomes visible because its tab is selected.
public static final int DOCKABLE_FRAME_TABHIDDEN
DockableFrame
becomes invisible because its tab is deselected.
public static final int DOCKABLE_FRAME_MAXIMIZED
DockableFrame
becomes maximized.
public static final int DOCKABLE_FRAME_RESTORED
DockableFrame
restored from maximized state.
public static final int DOCKABLE_FRAME_TRANSFERRED
DockableFrame
was dragged from one DockingManager to another one.
public static final int DOCKABLE_FRAME_MOVED
DockableFrame
was moved without dock mode change.
Constructor Detail |
---|
public DockableFrameEvent(DockableFrame source, int id)
DockableFrameEvent
object.
source
- the DockableFrame
object that originated the eventid
- an integer indicating the type of eventpublic DockableFrameEvent(DockableFrame source, int id, DockableFrame opposite)
DockableFrameEvent
object.
source
- the DockableFrame
object that originated the eventid
- an integer indicating the type of eventopposite
- the opposite DockableFrame. This is only used by activated and deactivated event.public DockableFrameEvent(DockableFrame source, int id, DockingManager opposite)
DockableFrameEvent
object.
source
- the DockableFrame
object that originated the eventid
- an integer indicating the type of eventopposite
- the opposite DockingManager. This is only used by transfer event.Method Detail |
---|
public String paramString()
paramString
in class AWTEvent
public DockableFrame getDockableFrame()
DockableFrame
object that originated the eventpublic DockableFrame getOppositeDockableFrame()
public DockingManager getOppositeDockingManger()
|
JIDE 3.5.15 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |