Examples of RootWindowProperties


Examples of net.infonode.docking.properties.RootWindowProperties

    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

Examples of net.infonode.docking.properties.RootWindowProperties

  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 {
          ByteArrayOutputStream byteStream = new ByteArrayOutputStream();
      ObjectOutputStream wrapper = new ObjectOutputStream(byteStream);
      rootWindow.write(wrapper);
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.