Package net.infonode.docking

Examples of net.infonode.docking.RootWindow


   
    initializeDockingGroups(rootWindow);
  }
 
  private RootWindow createDefaultRootWindow(AbstractViewMap viewMap) {
    RootWindow rootWindow = new RootWindow(viewMap);
    RootWindowProperties properties;
   
    properties = new RootWindowProperties();
    properties.getDockingWindowProperties().setDockEnabled(false);
    properties.getDockingWindowProperties().setMaximizeEnabled(false);
    properties.getDockingWindowProperties().setMinimizeEnabled(false);
    properties.getDockingWindowProperties().setRestoreEnabled(false);
    properties.getDockingWindowProperties().setUndockEnabled(false);
    properties.getDockingWindowProperties().setUndockOnDropEnabled(false);
   
    properties.getTabWindowProperties().getCloseButtonProperties().setVisible(false);
    properties.setRecursiveTabsEnabled(false);
   
    rootWindow.getRootWindowProperties().addSuperObject(properties);
   
    return rootWindow;
  }
View Full Code Here


  private byte[] emptyConfigurations;
  private final MapViewSerializer viewSerializer;

  public MapViewDockingWindows() {
    viewSerializer = new MapViewSerializer();
    rootWindow = new RootWindow(viewSerializer);
    RootWindowProperties rootWindowProperties = rootWindow.getRootWindowProperties();
    rootWindowProperties.addSuperObject(new BlueHighlightDockingTheme().getRootWindowProperties());
    rootWindowProperties.getWindowAreaProperties().setBackgroundColor(UIManager.getColor("Panel.background"));
    rootWindow.getWindowBar(Direction.DOWN).setEnabled(true);
    try {
View Full Code Here

TOP

Related Classes of net.infonode.docking.RootWindow

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.