Uses of Class
bibliothek.gui.dock.common.action.CAction

Packages that use CAction
bibliothek.gui.dock.common A set of classes that can be used to create basic applications. 
bibliothek.gui.dock.common.action   
bibliothek.gui.dock.common.intern   
bibliothek.gui.dock.common.intern.action   
 

Uses of CAction in bibliothek.gui.dock.common
 

Constructors in bibliothek.gui.dock.common with parameters of type CAction
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, CAction... actions)
          Creates a new dockable
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, Component content, CAction... actions)
          Creates a new dockable.
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, Icon icon, CAction... actions)
          Creates a new dockable.
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, Icon icon, Component content, CAction... actions)
          Creates a new dockable.
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, Icon icon, String title, CAction... actions)
          Creates a new dockable.
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, Icon icon, String title, Component content, CAction... actions)
          Creates a new dockable.
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, Icon icon, String title, Component content, DefaultCDockable.Permissions permissions, CAction... actions)
          Creates a new dockable.
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, String title, CAction... actions)
          Creates a new dockable.
DefaultMultipleCDockable(MultipleCDockableFactory<?,?> factory, String title, Component content, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, CAction... actions)
          Creates a new dockable
DefaultSingleCDockable(String id, Component content, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, Icon icon, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, Icon icon, Component content, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, Icon icon, String title, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, Icon icon, String title, Component content, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, Icon icon, String title, Component content, DefaultCDockable.Permissions permissions, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, String title, CAction... actions)
          Creates a new dockable.
DefaultSingleCDockable(String id, String title, Component content, CAction... actions)
          Creates a new dockable.
 

Uses of CAction in bibliothek.gui.dock.common.action
 

Subclasses of CAction in bibliothek.gui.dock.common.action
 class CButton
          A simple button, the user clicks onto the button and CButton.action() is called.
 class CCheckBox
          An action which behaves like a JCheckBox.
 class CDropDownButton
          A dropdown-button, the last action which was selected by the user will be marked graphically.
 class CMenu
          A collection of CActions which are shown in a menu.
 class CRadioButton
          An action which behaves like a JRadioButton.
Several CRadioButtons can be added to a CRadioGroup, only one CRadioButton ob such a group will be selected.
 

Methods in bibliothek.gui.dock.common.action with parameters of type CAction
 void CDropDownButton.add(CAction action)
          Adds an action to this menu.
 void CMenu.add(CAction action)
          Adds an action to this menu.
 void CDropDownButton.insert(int index, CAction action)
          Adds an action to the menu.
 void CMenu.insert(int index, CAction action)
          Adds an action to the menu.
 void CDropDownButton.remove(CAction action)
          Removes an action from this menu
 void CMenu.remove(CAction action)
          Removes an action from this menu
 void CDropDownButton.setSelection(CAction action)
          Sets the current selected action.
 

Uses of CAction in bibliothek.gui.dock.common.intern
 

Subclasses of CAction in bibliothek.gui.dock.common.intern
 class CDecorateableAction
          An action which has text, icons and other decorations.
 

Methods in bibliothek.gui.dock.common.intern with parameters of type CAction
 void DefaultCDockable.addAction(CAction action)
          Adds an action to this dockable.
 void DefaultCDockable.insertAction(int index, CAction action)
          Adds a new action to this dockable.
 void DefaultCDockable.removeAction(CAction action)
          Removes an action from this dockable.
 

Uses of CAction in bibliothek.gui.dock.common.intern.action
 

Subclasses of CAction in bibliothek.gui.dock.common.intern.action
 class CDropDownItem
          An action which can be child of a dropdown-menu.
 class CSelectableAction
          An action which is either selected or deselected.
 class CSeparator
          Represents a line separating some groups of CActions.