Package bibliothek.gui.dock.themes.basic.action.buttons

Examples of bibliothek.gui.dock.themes.basic.action.buttons.BasicMiniButton


* @author Benjamin Sigg
*/
public class BasicPanelPopupGenerator implements ViewGenerator<PanelPopup, BasicTitleViewItem<JComponent>>{
  public BasicTitleViewItem<JComponent> create( ActionViewConverter converter, PanelPopup action, Dockable dockable ){
    BasicPanelPopupHandler handler = new BasicPanelPopupHandler( action, dockable );
    BasicMiniButton button = new BasicMiniButton( handler, handler );
    handler.setModel( button.getModel() );
    return handler;
  }
View Full Code Here


* @author Benjamin Sigg
*/
public class FlatPanelPopupGenerator implements ViewGenerator<PanelPopup, BasicTitleViewItem<JComponent>>{
  public BasicTitleViewItem<JComponent> create( ActionViewConverter converter, PanelPopup action, Dockable dockable ){
    BasicPanelPopupHandler handler = new BasicPanelPopupHandler( action, dockable );
    BasicMiniButton button = new BasicMiniButton( handler, handler );
    handler.setModel( button.getModel() );
    return handler;
  }
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.themes.basic.action.buttons.BasicMiniButton

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.