Package bibliothek.gui.dock.common

Examples of bibliothek.gui.dock.common.MultipleCDockableLayout


      // currently not supported
    }

    public CommonMultipleDockableLayout getLayout( CommonDockable element, Map<Dockable, Integer> children ) {
        MultipleCDockable dockable = (MultipleCDockable)element.getDockable();
        MultipleCDockableLayout layout = delegate.write( dockable );
       
        CommonMultipleDockableLayout flayout = new CommonMultipleDockableLayout();
        flayout.setLayout( layout );
        String uniqueId = controlAccess.access( element.getDockable() ).getUniqueId();
        uniqueId = controlAccess.getRegister().multiToNormalId( uniqueId );
View Full Code Here


    }

    public CommonMultipleDockableLayout getPerspectiveLayout( CommonElementPerspective element, Map<PerspectiveDockable, Integer> children ){
      MultipleCDockablePerspective dockable = (MultipleCDockablePerspective)element.getElement();
     
      MultipleCDockableLayout layout = dockable.getLayout();
       
        CommonMultipleDockableLayout flayout = new CommonMultipleDockableLayout();
        flayout.setLayout( layout );
        String uniqueId = perspectiveIdentifiers.getUniqueId( dockable );
        flayout.setId( uniqueId );
View Full Code Here

    public MultipleCDockable findMatch( DockLayout<?> layout ){
      String factoryId = layout.getFactoryID();
      Object data = layout.getData();
     
      if( data instanceof CommonMultipleDockableLayout ){
        MultipleCDockableLayout multipleLayout = ((CommonMultipleDockableLayout) data).getLayout();
        MultipleCDockableFactory<MultipleCDockable, MultipleCDockableLayout> factory = (MultipleCDockableFactory<MultipleCDockable, MultipleCDockableLayout>) factories.get( factoryId );
        if( factory != null ){
          List<MultipleCDockable> list = remainingDockables.get( factoryId );
          if( list != null ){
            Iterator<MultipleCDockable> iterator = list.iterator();
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.common.MultipleCDockableLayout

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.