Package bibliothek.gui.dock.common.location

Examples of bibliothek.gui.dock.common.location.CMaximalExternalizedLocation


   * @param width the width in pixels
   * @param height the height in pixels
   * @return the new location
   */
  public static CMaximalExternalizedLocation maximized( int x, int y, int width, int height ){
    return new CMaximalExternalizedLocation( x, y, width, height );
  }
View Full Code Here


    if( property instanceof ScreenDockProperty ){
      ScreenDockProperty screen = (ScreenDockProperty)property;
     
      CLocation result;
      if( screen.isFullscreen() ){
        result = new CMaximalExternalizedLocation( screen.getX(), screen.getY(), screen.getWidth(), screen.getHeight() );
      }
      else{
        result = new CExternalizedLocation( screen.getX(), screen.getY(), screen.getWidth(), screen.getHeight() );
      }
     
View Full Code Here

TOP

Related Classes of bibliothek.gui.dock.common.location.CMaximalExternalizedLocation

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.