| Package | Description |
|---|---|
| bibliothek.gui |
The high level interfaces of the framework and the most often used classes.
|
| bibliothek.gui.dock.action |
The components dealing with the logic of
DockActions. |
| bibliothek.gui.dock.action.actions |
Contains a set of different
DockActions
and supporting classes.The actions in this package will create views, which show Icons,
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.station.screen |
Elements that are related to the
ScreenDockStation. |
| bibliothek.gui.dock.station.split |
Elements which are needed by the
SplitDockStation,
and which are needed to interact with the station. |
| bibliothek.gui.dock.themes.basic.action |
Elements handling the view of
DockActions.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.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 |
|---|---|
class |
DockFrontend.Hider
An object which is action and
ActionGuard at the same time. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ButtonDockAction
An action that can be pressed like a button.
|
interface |
DropDownAction
A DockAction that consists of other actions.
|
interface |
MenuDockAction
Represents a menu.
|
interface |
SelectableDockAction
An action which has two states "selected" and "not selected".
|
interface |
StandardDropDownItemAction
A combination of a
DropDownItemAction and a StandardDockAction. |
| Modifier and Type | Class and Description |
|---|---|
protected class |
StationChildrenActionSource.FocusAction
An action that can transfer the focus
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
SharingDropDownDockAction
A
SharingDropDownDockAction is a DropDownAction whose properties are shared by
all Dockables and whose properties can be set by the client. |
interface |
SharingDropDownItemAction
A
DropDownItemAction whose properties are shared among all Dockables, the
properties can be modified by the client. |
interface |
SharingSelectableDockAction
A
SelectableDockAction whose properties are shared among all Dockables, clients
can modify the properties. |
interface |
SharingStandardDockAction
A
SharingStandardDockAction is a StandardDockAction whose properties are
shared by all Dockables and whose properties can be modified by the client. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractSimpleDropDownAction
A dropdown action based on one
DockActionSource which has to be specified
by a subclass. |
class |
AbstractStandardDockAction
An abstract implementation of the
DockAction-interface. |
class |
GroupedButtonDockAction<K>
A
GroupedDockAction that provides the functionality of
a ButtonDockAction. |
class |
GroupedDockAction<K,D extends SimpleDockAction>
A
DockAction which classifies its Dockables
in groups. |
class |
GroupedDropDownItemAction<K,D extends SimpleDropDownItemAction>
An action that can be shown as child of a
DropDownAction. |
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 |
SimpleButtonAction
A
ButtonDockAction that has the same properties for all
Dockables which use the action. |
class |
SimpleDockAction
A simple implementation of
DockAction. |
class |
SimpleDropDownAction
A dropdown action that has the same properties for all Dockables.
|
class |
SimpleDropDownItemAction
An action that can be shown as child of a
DropDownAction and
which has advanced information for the DropDownAction. |
class |
SimpleMenuAction
An action that provides a menu which contains other actions.
|
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 |
DockActionAdapter.actionDisabledIconChanged(StandardDockAction action,
Set<Dockable> dockables) |
void |
StandardDockActionListener.actionEnabledChanged(StandardDockAction action,
Set<Dockable> dockables)
Invoked when the enabled-state of a
StandardDockAction has been changed. |
void |
DockActionAdapter.actionEnabledChanged(StandardDockAction action,
Set<Dockable> dockables) |
void |
StandardDockActionListener.actionIconChanged(StandardDockAction action,
ActionContentModifier modifier,
Set<Dockable> dockables)
Invoked when the icon of a
StandardDockAction has been changed. |
void |
DockActionAdapter.actionIconChanged(StandardDockAction action,
Set<Dockable> dockables) |
void |
StandardDockActionListener.actionRepresentativeChanged(StandardDockAction action,
Set<Dockable> dockables)
Invoked when the representative-property of a
StandardDockAction has been changed. |
void |
DockActionAdapter.actionRepresentativeChanged(StandardDockAction action,
Set<Dockable> dockables) |
void |
StandardDockActionListener.actionTextChanged(StandardDockAction action,
Set<Dockable> dockables)
Invoked when the text of a
StandardDockAction has been changed. |
void |
DockActionAdapter.actionTextChanged(StandardDockAction action,
Set<Dockable> dockables) |
void |
StandardDockActionListener.actionTooltipTextChanged(StandardDockAction action,
Set<Dockable> dockables)
Invoked when the tooltip of a
StandardDockAction has been changed. |
void |
DockActionAdapter.actionTooltipTextChanged(StandardDockAction action,
Set<Dockable> dockables) |
| Modifier and Type | Class and Description |
|---|---|
class |
FlapDockDirection
This
DockAction is used as an action of a FlapDockStation. |
class |
FlapDockHoldToggle
This
DockAction is shown together with the children of a
FlapDockStation, and allows to "stick" a Dockable. |
| Modifier and Type | Class and Description |
|---|---|
class |
ScreenFullscreenAction
This
DockAction is mainly used by the ScreenDockStation
to allow it's children to go into fullscreen-mode. |
| Modifier and Type | Class and Description |
|---|---|
class |
SplitFullScreenAction
This
DockAction is mainly used by the SplitDockStation
to allow it's children to get in fullscreen-mode. |
| Modifier and Type | Class and Description |
|---|---|
class |
BasicHandler<D extends StandardDockAction>
A class connecting a
DockAction with a BasicButtonModel. |
| Modifier and Type | Method and Description |
|---|---|
void |
BasicHandler.Listener.actionEnabledChanged(StandardDockAction action,
Set<Dockable> dockables) |
void |
BasicHandler.Listener.actionIconChanged(StandardDockAction action,
ActionContentModifier modifier,
Set<Dockable> dockables) |
void |
BasicHandler.Listener.actionRepresentativeChanged(StandardDockAction action,
Set<Dockable> dockables) |
void |
BasicHandler.Listener.actionTextChanged(StandardDockAction action,
Set<Dockable> dockables) |
void |
BasicHandler.Listener.actionTooltipTextChanged(StandardDockAction action,
Set<Dockable> dockables) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractMenuHandler<I extends JMenuItem,D extends StandardDockAction>
A handler that connects a
JMenuItem with a DockAction. |
| Modifier and Type | Field and Description |
|---|---|
protected D |
AbstractMenuHandler.action
the action shown by the item of this handler, may be
null |
Copyright © 2017 Docking Frames. All rights reserved.