Package org.eclipse.ui

Examples of org.eclipse.ui.IFolderLayout.addView()


    right.addView(IPageLayout.ID_OUTLINE);
    right.addView(FeatureStructureBrowserView.ID);
   
    IFolderLayout rightBottomCorner  = layout.createFolder("rightBottomCorner", IPageLayout.BOTTOM,
            0.75f, "right");
    rightBottomCorner.addView(AnnotationStyleView.ID);

    // bottom views
    IFolderLayout rightBottom = layout.createFolder("rightBottom",
            IPageLayout.BOTTOM, 0.75f, editorArea);
View Full Code Here


    // bottom views
    IFolderLayout rightBottom = layout.createFolder("rightBottom",
            IPageLayout.BOTTOM, 0.75f, editorArea);

    rightBottom.addView(EditView.ID);

    IFolderLayout leftBottom = layout.createFolder("leftBottom",
            IPageLayout.RIGHT, 0.5f, EditView.ID);

    leftBottom.addView(EditView.ID_2);
View Full Code Here

    rightBottom.addView(EditView.ID);

    IFolderLayout leftBottom = layout.createFolder("leftBottom",
            IPageLayout.RIGHT, 0.5f, EditView.ID);

    leftBottom.addView(EditView.ID_2);
  }
}
View Full Code Here

    String editorArea = layout.getEditorArea();

    // left views
    IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT,
            0.19f, editorArea);
    left.addView("org.eclipse.ui.navigator.ProjectExplorer");

    // right views
    IFolderLayout right = layout.createFolder("right", IPageLayout.RIGHT,
            0.70f, editorArea);
View Full Code Here

    // right views
    IFolderLayout right = layout.createFolder("right", IPageLayout.RIGHT,
            0.70f, editorArea);

    right.addView(IPageLayout.ID_OUTLINE);
    right.addView(FeatureStructureBrowserView.ID);
   
    IFolderLayout rightBottomCorner  = layout.createFolder("rightBottomCorner", IPageLayout.BOTTOM,
            0.75f, "right");
    rightBottomCorner.addView(AnnotationStyleView.ID);
View Full Code Here

    layout.setEditorAreaVisible(false);
   
    layout.addStandaloneView(NavigationView.ID,  false, IPageLayout.LEFT, 0.25f, editorArea);
    IFolderLayout folder = layout.createFolder("messages", IPageLayout.TOP, 0.5f, editorArea);
    folder.addPlaceholder(View.ID + ":*");
    folder.addView(View.ID);
   
    layout.getViewLayout(NavigationView.ID).setCloseable(false);
  }
}
 
View Full Code Here

        //layout.addView( "org.locationtech.udig.project.ui.layerManager", IPageLayout.BOTTOM, 0.25f, //$NON-NLS-1$
        //        "org.locationtech.udig.project.ui.projectExplorer" ); //$NON-NLS-1$
       
        IFolderLayout folder = layout.createFolder("org.locationtech.udig.mapPerspective.selection", IPageLayout.BOTTOM, 0.25f, //$NON-NLS-1$
                "org.locationtech.udig.project.ui.projectExplorer");
        folder.addView("org.locationtech.udig.project.ui.layerManager");
        folder.addView("org.locationtech.udig.ui.aoiView");
       
        layout.addView("org.locationtech.udig.catalog.ui.CatalogView", IPageLayout.BOTTOM, 0.65f, editorArea);         //$NON-NLS-1$
        layout.addActionSet("org.locationtech.udig.helpMenuItems");
        layout.addActionSet("org.locationtech.udig.ui.default");
View Full Code Here

        //        "org.locationtech.udig.project.ui.projectExplorer" ); //$NON-NLS-1$
       
        IFolderLayout folder = layout.createFolder("org.locationtech.udig.mapPerspective.selection", IPageLayout.BOTTOM, 0.25f, //$NON-NLS-1$
                "org.locationtech.udig.project.ui.projectExplorer");
        folder.addView("org.locationtech.udig.project.ui.layerManager");
        folder.addView("org.locationtech.udig.ui.aoiView");
       
        layout.addView("org.locationtech.udig.catalog.ui.CatalogView", IPageLayout.BOTTOM, 0.65f, editorArea);         //$NON-NLS-1$
        layout.addActionSet("org.locationtech.udig.helpMenuItems");
        layout.addActionSet("org.locationtech.udig.ui.default");
        layout.addPerspectiveShortcut(StylePerspective.ID_PERSPECTIVE);
View Full Code Here

    }

    private void addViews() {
        IFolderLayout left = factory.createFolder("left", //$NON-NLS-1$
                IPageLayout.LEFT, 0.2f, factory.getEditorArea());
        left.addView(Navigator.VIEW_ID);
    }

    private void addViewShortcuts() {
        factory.addShowViewShortcut(Navigator.VIEW_ID);
        factory.addShowViewShortcut("org.eclipse.ui.views.PropertySheet"); //$NON-NLS-1$
View Full Code Here

        "ServerConsoleFolder",
        IPageLayout.LEFT,
        0.75f,
        editorArea);
   
    serverConsoleFolder.addView(ConsoleView.VIEW_ID);
    serverConsoleFolder.addView(ChatView.VIEW_ID);
   
    layout.getViewLayout(ConsoleView.VIEW_ID).setCloseable(false);
    layout.getViewLayout(ChatView.VIEW_ID).setCloseable(false);
  }
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.