Package | Description |
---|---|
bibliothek.gui.dock.action |
The components dealing with the logic of
DockAction s. |
bibliothek.gui.dock.action.actions |
Contains a set of different
DockAction s
and supporting classes.The actions in this package will create views, which show Icon s,
text, tooltips and other gimmicks. |
bibliothek.gui.dock.event |
Listeners, adapters and events used in the whole framework.
A Listener is added to some object that needs to be observed, the Listener will be informed whenever the observed object changes. An Adapter is an implementation of a Listener, but the methods of an Adapter are empty. An Event is an object carrying information from an observed object to a Listener. |
bibliothek.gui.dock.station.flap |
Elements that are related to the
FlapDockStation . |
bibliothek.gui.dock.themes.basic.action |
Elements handling the view of
DockAction s.They way from a DockAction to its view normally involves four objects:
The DockAction itself, providing the basic set of properties
A handler listening to changes of the
action and forwarding the changes to the model. |
bibliothek.gui.dock.themes.basic.action.dropdown |
Handlers taking various kinds of
DockAction and presenting them
as DropDownViewItem
in order to display them as children of a
DropDownAction |
bibliothek.gui.dock.themes.basic.action.menu |
Handlers taking various kinds of
DockAction and presenting them
as MenuViewItem in
order to display the actions in a menu. |
Modifier and Type | Class and Description |
---|---|
protected class |
StationChildrenActionSource.FocusAction
An action that can transfer the focus
|
Modifier and Type | Field and Description |
---|---|
static ActionType<SelectableDockAction> |
ActionType.CHECK
The action behaves like a checkbox: when it is triggered,
it changes it's state from selected to unselected, or vice versa.
|
static ActionType<SelectableDockAction> |
ActionType.RADIO
The action behaves like a radiobutton: when it is triggered,
it changes to the selected-state, but some other actions
may change to the unselected-state
|
Modifier and Type | Interface and Description |
---|---|
interface |
SharingSelectableDockAction
A
SelectableDockAction whose properties are shared among all Dockable s, clients
can modify the properties. |
Modifier and Type | Class and Description |
---|---|
class |
GroupedSelectableDockAction<K>
An action that can change between selected and not selected.
|
static class |
GroupedSelectableDockAction.Check<K>
An action intended to use as type
ActionType.CHECK |
static class |
GroupedSelectableDockAction.Radio<K>
An action intended to use as type
ActionType.RADIO |
class |
SimpleSelectableAction
A
DockAction that has a state selected . |
static class |
SimpleSelectableAction.Check
A
SimpleSelectableAction that is visualized as
a ActionType.CHECK . |
static class |
SimpleSelectableAction.Radio
A
SimpleSelectableAction that is visualized as
a ActionType.RADIO . |
Modifier and Type | Method and Description |
---|---|
void |
SelectableDockActionGroup.addAction(SelectableDockAction action)
Adds an action that has to be observed
|
void |
SelectableDockActionGroup.removeAction(SelectableDockAction action)
Removes an action.
|
Constructor and Description |
---|
GroupedSelectableDockAction(GroupKeyGenerator<? extends K> generator,
ActionType<SelectableDockAction> type)
Creates a new action.
|
SimpleSelectableAction(ActionType<SelectableDockAction> type,
boolean monitorDisabling)
Creates a new action.
|
Modifier and Type | Method and Description |
---|---|
void |
SelectableDockActionListener.selectedChanged(SelectableDockAction action,
Set<Dockable> dockables)
Triggered by a
SelectableDockAction if the selection-state of
a Dockable has changed. |
Modifier and Type | Class and Description |
---|---|
class |
FlapDockHoldToggle
This
DockAction is shown together with the children of a
FlapDockStation , and allows to "stick" a Dockable . |
Constructor and Description |
---|
BasicSelectableHandler.Check(SelectableDockAction action,
Dockable dockable)
Creates a new handler
|
BasicSelectableHandler.Radio(SelectableDockAction action,
Dockable dockable)
Creates a new handler
|
BasicSelectableHandler(SelectableDockAction action,
Dockable dockable)
Creates a new handler
|
Constructor and Description |
---|
SelectableDropDownHandler(SelectableDockAction action,
Dockable dockable,
JMenuItem item)
Creates a new handler.
|
Constructor and Description |
---|
SelectableMenuHandler(SelectableDockAction action,
Dockable dockable,
JMenuItem item)
Creates a new handler
|