Examples of DockingWindowProperties


Examples of net.infonode.docking.properties.DockingWindowProperties


      @Override
            public void windowAdded(final DockingWindow addedToWindow, final DockingWindow addedWindow) {
        if(addedWindow instanceof TabWindow) {
          final DockingWindowProperties windowProperties = addedWindow.getWindowProperties();
          windowProperties.setDockEnabled(false);
          windowProperties.setUndockEnabled(false);
          final TabAreaProperties tabAreaProperties = ((TabWindow)addedWindow).getTabWindowProperties().getTabbedPanelProperties().getTabAreaProperties();
                  if (addedToWindow == rootWindow)
                      tabAreaProperties.setTabAreaVisiblePolicy(TabAreaVisiblePolicy.MORE_THAN_ONE_TAB);
                    else
                    tabAreaProperties.setTabAreaVisiblePolicy(TabAreaVisiblePolicy.ALWAYS);
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.