Examples of CUnmaximizeExternalizedAction


Examples of bibliothek.gui.dock.common.action.predefined.CUnmaximizeExternalizedAction

   * Creates a new mode.
   * @param control the owner of this mode
   */
  public CExternalizedMode( CControl control ){
    externalize = new KeyedLocationModeActionProvider( CDockable.ACTION_KEY_EXTERNALIZE, new CExternalizeAction( control ));
    unmaximize = new KeyedLocationModeActionProvider( CDockable.ACTION_KEY_UNMAXIMIZE_EXTERNALIZED, new CUnmaximizeExternalizedAction( control ));
   
    setActionProvider( new MappingLocationModeActionProvider() {
      protected LocationModeActionProvider getProvider( Dockable dockable, Mode<Location> currentMode, DockActionSource currentSource ){
        if( currentMode instanceof CMaximizedMode ){
          if( ((CMaximizedMode)currentMode).getUnmaximizedMode( dockable ) instanceof CExternalizedMode ){
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.