Package bibliothek.extension.gui.dock.theme.bubble

Examples of bibliothek.extension.gui.dock.theme.bubble.RoundButton


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

TOP

Related Classes of bibliothek.extension.gui.dock.theme.bubble.RoundButton

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.