Examples of ViewMap


Examples of net.infonode.docking.util.ViewMap

    /* (non-Javadoc)
     * @see edu.umd.cs.findbugs.gui2.LayoutManager#initialize()
     */
    public void initialize() {
        ViewMap viewMap = new ViewMap();
        topView = new View(L10N.getLocalString("view.bugs", "Bugs"), null, frame.bugListPanel());
        topView.getWindowProperties().setCloseEnabled(false);
        viewMap.addView(0, topView);
        summaryView = new View(L10N.getLocalString("view.bug_summary", "Bug Summary"), null, frame.summaryTab());
        viewMap.addView(1, summaryView);
        commentsView = new View(L10N.getLocalString("view.comments", "Comments"), null, frame.createCommentsInputPanel());
        viewMap.addView(2, commentsView);
        sourceView = new View(L10N.getLocalString("view.source", "Source"), null, frame.createSourceCodePanel());
        viewMap.addView(3, sourceView);

        rootWindow = DockingUtil.createRootWindow(viewMap, true);

        tabs = new TabWindow(new DockingWindow[]{summaryView, commentsView, sourceView});
        tabs.addListener(new DockParentListener());
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

    ImageIcon ii = (ImageIcon) Icons.getIcon("bossanova.main");
    setIconImage(ii.getImage());

    setLayout(new BorderLayout());

    ViewMap viewMap = new ViewMap();

    // Batch Panel
    View batchView = viewFactory.getView(BossaNovaViewFactory.BATCH_PANEL);
    batchViewerPanel = (BatchViewer) batchView.getComponent();
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

        ImageIcon ii = (ImageIcon) Icons.getIcon("bossanova.main");
        setIconImage(ii.getImage());

        setLayout(new BorderLayout());

        ViewMap viewMap = new ViewMap();

        // Batch Panel
        View batchView = viewFactory.getView(BossaNovaViewFactory.BATCH_PANEL);
        batchViewerPanel = (BatchViewer) batchView.getComponent();
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

    ImageIcon ii = (ImageIcon) Icons.getIcon("bossanova.main");
    setIconImage(ii.getImage());

    setLayout(new BorderLayout());

    ViewMap viewMap = new ViewMap();

    // Batch Panel
    View batchView = viewFactory.getView(BossaNovaViewFactory.BATCH_PANEL);
    batchViewerPanel = (BatchViewer) batchView.getComponent();
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

    ImageIcon ii = (ImageIcon) Icons.getIcon("bossanova.main");
    setIconImage(ii.getImage());

    setLayout(new BorderLayout());

    ViewMap viewMap = new ViewMap();

    // Batch Panel
    View batchView = viewFactory.getView(BossaNovaViewFactory.BATCH_PANEL);
    batchViewerPanel = (BatchViewer) batchView.getComponent();
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

                currentTrajectoryBean);

        configurationManagerDocking = new View("Configuration manager", null, configurationManagerBean);
        // No docking for the error view : it's an independent dialog.

        viewMap = new ViewMap();
        viewMap.addView(GENERAL_VIEW_ID, generalDocking);
        viewMap.addView(TIMEBASE_VIEW_ID, timebaseDocking);
        viewMap.addView(SENSOR_VIEW_ID, sensorDocking);

        viewMap.addView(ACTUATOR_VIEW_ID, actuatorDocking);
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

        dataRecorderDocking = new DefaultView("Data Recorder", null, dataRecorderView);
        dataFitterDocking = new DefaultView("Data Fitter", null, dataFitterView);
        // No docking for the error view : it's an independent dialog.

        viewMap = new ViewMap();
        viewMap.addView(GENERAL_VIEW_ID, generalDocking);
        viewMap.addView(TIMEBASE_VIEW_ID, timebaseDocking);
        viewMap.addView(SENSOR_VIEW_ID, sensorDocking);

        viewMap.addView(ACTUATOR_VIEW_ID, actuatorDocking);
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

        dataRecorderDocking = new DefaultView("Data Recorder", null, null);
        dataFitterDocking = new DefaultView("Data Fitter", null, null);

        // No docking for the error view : it's an independent dialog.

        viewMap = new ViewMap();
        viewMap.addView(GENERAL_VIEW_ID, generalDocking);
        viewMap.addView(TIMEBASE_VIEW_ID, timebaseDocking);
        viewMap.addView(SENSOR_VIEW_ID, sensorDocking);

        viewMap.addView(ACTUATOR_VIEW_ID, actuatorDocking);
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

        currentTrajectoryDocking = new View("Current scan configuration", Icons.getIcon("salsa.scanconfig.actuator"),
                currentTrajectoryBean);
        // No docking for the error view : it's an independent dialog.

        viewMap = new ViewMap();
        viewMap.addView(GENERAL_VIEW_ID, generalDocking);
        viewMap.addView(TIMEBASE_VIEW_ID, timebaseDocking);
        viewMap.addView(SENSOR_VIEW_ID, sensorDocking);

        viewMap.addView(ACTUATOR_VIEW_ID, actuatorDocking);
View Full Code Here

Examples of net.infonode.docking.util.ViewMap

        dataRecorderDocking = new DefaultView("Data Recorder", null, dataRecorderView);
        dataFitterDocking = new DefaultView("Data Fitter", null, dataFitterView);
        // No docking for the error view : it's an independent dialog.

        viewMap = new ViewMap();
        viewMap.addView(GENERAL_VIEW_ID, generalDocking);
        viewMap.addView(TIMEBASE_VIEW_ID, timebaseDocking);
        viewMap.addView(SENSOR_VIEW_ID, sensorDocking);

        viewMap.addView(ACTUATOR_VIEW_ID, actuatorDocking);
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.