Uses of Interface
bibliothek.gui.dock.themes.basic.action.menu.MenuViewItem

Packages that use MenuViewItem
bibliothek.gui.dock.action.view Classes to create a views for DockActions.
This package does not contain any views, only the mechanism to create some. 
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.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. 
 

Uses of MenuViewItem in bibliothek.gui.dock.action.view
 

Fields in bibliothek.gui.dock.action.view with type parameters of type MenuViewItem
static ViewTarget<MenuViewItem<JComponent>> ViewTarget.MENU
          A target for a JMenu
 

Uses of MenuViewItem in bibliothek.gui.dock.themes.basic.action
 

Classes in bibliothek.gui.dock.themes.basic.action that implement MenuViewItem
 class BasicSeparatorHandler
          A handler that shows a JSeparator for a SeparatorAction.
 

Uses of MenuViewItem in bibliothek.gui.dock.themes.basic.action.dropdown
 

Subinterfaces of MenuViewItem in bibliothek.gui.dock.themes.basic.action.dropdown
 interface DropDownViewItem
          An item that is shown in the menu of a drop-down-button and can be selected by the button.
 

Classes in bibliothek.gui.dock.themes.basic.action.dropdown that implement MenuViewItem
 class AbstractDropDownHandler<S extends StandardDropDownItemAction>
          A handler that connects a StandardDropDownItemAction with a drop-down-button.
 class ButtonDropDownHandler
          A connection between a ButtonDockAction and a drop-down-button.
 class SelectableDropDownHandler
          A connection between a SelectableDockAction and a drop-down-button.
static class SelectableDropDownHandler.Check
          A connection representing a check-box.
static class SelectableDropDownHandler.Radio
          A connection representing a radio-button.
 class SubDropDownHandler
          A handler that connects non-selectable, non-triggerable items with a drop-down-button.
 

Constructors in bibliothek.gui.dock.themes.basic.action.dropdown with parameters of type MenuViewItem
SubDropDownHandler(MenuViewItem<JComponent> view)
          Creates a new handler.
 

Uses of MenuViewItem in bibliothek.gui.dock.themes.basic.action.menu
 

Classes in bibliothek.gui.dock.themes.basic.action.menu that implement MenuViewItem
 class AbstractMenuHandler<I extends JMenuItem,D extends StandardDockAction>
          A handler that connects a JMenuItem with a DockAction.
 class ButtonMenuHandler
          A handler that handles an ordinary JMenuItem.
 class DropDownMenuHandler
          A handler that shows a DropDownAction in a menu.
 class MenuMenuHandler
          A handler that manages a menu.
 class SelectableMenuHandler<M extends JMenuItem>
          A handler which ensures that the selected-state of a JMenuItem and a SelectableDockAction are always the same.
static class SelectableMenuHandler.Check
          A handler designed to handle actions of type ActionType.CHECK.
static class SelectableMenuHandler.Radio
          A handler designed to handle actions of type ActionType.RADIO.