public interface CDockablePropertyListener
CDockable
, this listener will get informed
about property changes of CDockable
.CDockableStateListener
Modifier and Type | Method and Description |
---|---|
void |
actionChanged(CDockable dockable,
String key,
CAction oldAction,
CAction newAction)
Called when an action that is returned by
CDockable.getAction(String)
has been exchanged. |
void |
closeableChanged(CDockable dockable)
Called when the
closeable -property has
changed. |
void |
enabledChanged(CDockable dockable)
Called if the result of
CDockable.isEnabled(bibliothek.gui.dock.common.EnableableItem) changed
for any argument. |
void |
externalizableChanged(CDockable dockable)
Called when the
externalizable -property
has changed. |
void |
maximizableChanged(CDockable dockable)
Called when the
maximizable -property
has changed. |
void |
minimizableChanged(CDockable dockable)
Called when the
minimizable -property
has changed. |
void |
minimizeSizeChanged(CDockable dockable)
Called when the property
CDockable.getMinimizedSize() has changed. |
void |
normalizeableChanged(CDockable dockable)
Called when the
CDockable.isNormalizeable() -property has changed. |
void |
resizeLockedChanged(CDockable dockable)
Called when the
CDockable.isResizeLockedHorizontally() or
CDockable.isResizeLockedVertically() -property has changed. |
void |
singleTabShownChanged(CDockable dockable)
Called when the property
CDockable.isSingleTabShown() has changed. |
void |
stickyChanged(CDockable dockable)
Called when the
CDockable#isMinimizedHold() -property has changed. |
void |
stickySwitchableChanged(CDockable dockable)
Called when the property
CDockable#isMinimizedHoldSwitchable() has changed. |
void |
titleShownChanged(CDockable dockable)
Called when the property
CDockable.isTitleShown() has changed. |
void closeableChanged(CDockable dockable)
closeable
-property has
changed.dockable
- the source of the eventvoid minimizableChanged(CDockable dockable)
minimizable
-property
has changed.dockable
- the source of the eventvoid maximizableChanged(CDockable dockable)
maximizable
-property
has changed.dockable
- the source of the eventvoid externalizableChanged(CDockable dockable)
externalizable
-property
has changed.dockable
- the source of the eventvoid normalizeableChanged(CDockable dockable)
CDockable.isNormalizeable()
-property has changed.dockable
- the source of the eventvoid resizeLockedChanged(CDockable dockable)
CDockable.isResizeLockedHorizontally()
or
CDockable.isResizeLockedVertically()
-property has changed.dockable
- the source of the eventvoid stickyChanged(CDockable dockable)
CDockable#isMinimizedHold()
-property has changed.dockable
- the source of the eventvoid minimizeSizeChanged(CDockable dockable)
CDockable.getMinimizedSize()
has changed.dockable
- the source of the eventvoid stickySwitchableChanged(CDockable dockable)
CDockable#isMinimizedHoldSwitchable()
has changed.dockable
- the source of the eventvoid titleShownChanged(CDockable dockable)
CDockable.isTitleShown()
has changed.dockable
- the source of the eventvoid singleTabShownChanged(CDockable dockable)
CDockable.isSingleTabShown()
has changed.dockable
- the source of the eventvoid actionChanged(CDockable dockable, String key, CAction oldAction, CAction newAction)
CDockable.getAction(String)
has been exchanged.dockable
- the source of the eventkey
- the name of the exchanged actionoldAction
- the old action, can be null
newAction
- the new action, can be null
void enabledChanged(CDockable dockable)
CDockable.isEnabled(bibliothek.gui.dock.common.EnableableItem)
changed
for any argument.dockable
- the source of the event