Examples of AuxillarySplitPane


Examples of ca.nengo.ui.lib.AuxillarySplitPane

        /////////////////////////////////////////////////////////////
        /// Create nested split panes
        configPane = new ConfigurationPane(canvas);

        scriptConsolePane = new AuxillarySplitPane(configPane.toJComponent(), scriptConsole,
                "Script Console", AuxillarySplitPane.Orientation.Bottom);

        dataViewerPane = new AuxillarySplitPane(scriptConsolePane, dataListViewer,
                "Data Viewer", AuxillarySplitPane.Orientation.Left);

        templatePane = new AuxillarySplitPane(dataViewerPane, templateViewer,
                "Templates", AuxillarySplitPane.Orientation.Left,
                templateWithScrollbarSize, false);
        templatePane.setResizable(false);
        templatePane.setAuxVisible(true);

        toolbarPane = new AuxillarySplitPane(templatePane, toolbarPanel,
                "Toolbar", AuxillarySplitPane.Orientation.Top,
                toolbarPanel.getPreferredSize(), false);
        toolbarPane.setResizable(false);
        toolbarPane.setAuxVisible(true);
View Full Code Here

Examples of ca.nengo.ui.lib.AuxillarySplitPane

            configPane.configureObj(SelectionHandler.getActiveModel());
        }
    }

    public void toggleConfigPane() {
        AuxillarySplitPane pane = configPane.toJComponent();
        pane.setAuxVisible(!pane.isAuxVisible());
        updateConfigurationPane();
    }
View Full Code Here

Examples of ca.nengo.ui.lib.AuxillarySplitPane

        AuxillarySplitPane auxSplitPane;
        Object currentObj;

        public ConfigurationPane(Container mainPanel) {
            super();
            auxSplitPane = new AuxillarySplitPane(mainPanel, null, "Inspector",
                    AuxillarySplitPane.Orientation.Right);
            auxSplitPane.getAuxPaneWrapper().setBackground(NengoStyle.COLOR_CONFIGURE_BACKGROUND);
            currentObj=null;
        }
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.