Package bibliothek.gui.dock.station.split.SplitDockPerspective

Examples of bibliothek.gui.dock.station.split.SplitDockPerspective.Node


        if( dockable != null ) {
          grid.addDockable( x, y, width, height, dockable );
        }
      }
      else{
        Node node = entry.asNode();
        double divider = node.getDivider();
        if( node.getOrientation() == Orientation.HORIZONTAL ){
          handle( node.getChildA(), x, y, width*divider, height );
          handle( node.getChildB(), x+width*divider, y, width*(1-divider), height );
        }
        else{
          handle( node.getChildA(), x, y, width, height*divider );
          handle( node.getChildB(), x, y+height*divider, width, height*(1-divider) );
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.station.split.SplitDockPerspective.Node

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.