Uses of Class
bibliothek.gui.dock.themes.basic.action.BasicButtonModel

Packages that use BasicButtonModel
bibliothek.extension.gui.dock.theme Contains some DockThemes. 
bibliothek.extension.gui.dock.theme.bubble Various graphical and logical components used when BubbleTheme is active. 
bibliothek.extension.gui.dock.theme.eclipse Various graphical and logical components needed when the EclipseTheme is active. 
bibliothek.gui.dock.common.intern.action.panel Supporting classes for CPanelPopup
bibliothek.gui.dock.themes.basic.action Elements handling the view of DockActions. 
bibliothek.gui.dock.themes.basic.action.buttons Classes which allow to paint and interact with a BasicButtonModel
 

Uses of BasicButtonModel in bibliothek.extension.gui.dock.theme
 

Methods in bibliothek.extension.gui.dock.theme that return types with arguments of type BasicButtonModel
protected  MiniButton<BasicButtonModel> FlatTheme.createTitleMiniButton(BasicTrigger trigger)
          Creates a MiniButton in a flat look.
 

Uses of BasicButtonModel in bibliothek.extension.gui.dock.theme.bubble
 

Methods in bibliothek.extension.gui.dock.theme.bubble that return BasicButtonModel
 BasicButtonModel RoundButton.getModel()
           
 

Uses of BasicButtonModel in bibliothek.extension.gui.dock.theme.eclipse
 

Methods in bibliothek.extension.gui.dock.theme.eclipse that return BasicButtonModel
 BasicButtonModel RoundRectButton.getModel()
          Gets the model that is used by this button.
 

Uses of BasicButtonModel in bibliothek.gui.dock.common.intern.action.panel
 

Methods in bibliothek.gui.dock.common.intern.action.panel with parameters of type BasicButtonModel
 void BasicPanelPopupHandler.setModel(BasicButtonModel model)
           
 

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

Subclasses of BasicButtonModel in bibliothek.gui.dock.themes.basic.action
 class BasicDropDownButtonModel
          An expanded BasicButtonModel that can handle the properties needed to represent a DropDownAction.
 

Methods in bibliothek.gui.dock.themes.basic.action that return BasicButtonModel
 BasicButtonModel BasicHandler.getModel()
          Gets the model of this handler.
 

Methods in bibliothek.gui.dock.themes.basic.action with parameters of type BasicButtonModel
 void BasicButtonModelAdapter.disabledIconChanged(BasicButtonModel model, Icon oldIcon, Icon icon)
           
 void BasicButtonModelListener.disabledIconChanged(BasicButtonModel model, Icon oldIcon, Icon icon)
          Called if the disabled icon of model changed.
 void BasicButtonModelAdapter.enabledStateChanged(BasicButtonModel model, boolean enabled)
           
 void BasicButtonModelListener.enabledStateChanged(BasicButtonModel model, boolean enabled)
          Called if the action was enabled or disabled.
 void BasicButtonModelAdapter.iconChanged(BasicButtonModel model, Icon oldIcon, Icon icon)
           
 void BasicButtonModelListener.iconChanged(BasicButtonModel model, Icon oldIcon, Icon icon)
          Called if the icon of model changed.
 void BasicButtonModelAdapter.mouseInside(BasicButtonModel model, boolean mouseInside)
           
 void BasicButtonModelListener.mouseInside(BasicButtonModel model, boolean mouseInside)
          Called if the mouse enters or leaves the view.
 void BasicButtonModelAdapter.mousePressed(BasicButtonModel model, boolean mousePressed)
           
 void BasicButtonModelListener.mousePressed(BasicButtonModel model, boolean mousePressed)
          Called if the mouse is pressed or released.
 void BasicButtonModelAdapter.orientationChanged(BasicButtonModel model, DockTitle.Orientation old, DockTitle.Orientation orientation)
           
 void BasicButtonModelListener.orientationChanged(BasicButtonModel model, DockTitle.Orientation old, DockTitle.Orientation orientation)
          Called if the orientation of the view changed.
 void BasicButtonModelAdapter.selectedDisabledIconChanged(BasicButtonModel model, Icon oldIcon, Icon icon)
           
 void BasicButtonModelListener.selectedDisabledIconChanged(BasicButtonModel model, Icon oldIcon, Icon icon)
          Called if the selected disabled icon of model changed.
 void BasicButtonModelAdapter.selectedIconChanged(BasicButtonModel model, Icon oldIcon, Icon icon)
           
 void BasicButtonModelListener.selectedIconChanged(BasicButtonModel model, Icon oldIcon, Icon icon)
          Called if the selection icon of model changed.
 void BasicButtonModelAdapter.selectedStateChanged(BasicButtonModel model, boolean selected)
           
 void BasicButtonModelListener.selectedStateChanged(BasicButtonModel model, boolean selected)
          Called if the selection state of model changed.
 void BasicHandler.setModel(BasicButtonModel model)
          Sets the model to which all properties of the action are transfered.
 void BasicButtonModelAdapter.tooltipChanged(BasicButtonModel model, String old, String tooltip)
           
 void BasicButtonModelListener.tooltipChanged(BasicButtonModel model, String old, String tooltip)
          Called if the tooltip of the action changed.
 

Uses of BasicButtonModel in bibliothek.gui.dock.themes.basic.action.buttons
 

Classes in bibliothek.gui.dock.themes.basic.action.buttons with type parameters of type BasicButtonModel
 class MiniButton<M extends BasicButtonModel>
          A small Component used as view of a BasicButtonModel.