Package org.eclipse.ui

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


        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


    String editorArea = layout.getEditorArea();
    layout.setEditorAreaVisible(false);
    IFolderLayout left =
            layout.createFolder("left", IPageLayout.LEFT, (float) 0.26, editorArea);
//    left.addView(IIntiMapPageLayout.ID_RES_NAV);
    left.addView("org.eclipse.ui.navigator.ProjectExplorer");
//    layout.addView(IIntiMapPageLayout.ID_RES_NAV,   IPageLayout.LEFT, 0.26f, editorArea);
//    left.addView(IPageLayout.ID_OUTLINE);
//    layout.addView(IPageLayout.ID_OUTLINE,IPageLayout.BOTTOM, 0.6f, IPageLayout.ID_RES_NAV);
//    layout.addView(IPageLayout.ID_TASK_LIST,IPageLayout.BOTTOM, 0.6f, editorArea); 
    layout.addView(IPageLayout.ID_PROBLEM_VIEW ,IPageLayout.BOTTOM, 0.6f, editorArea);
View Full Code Here

        //layout.addStandaloneView(GraphicEditorView.ID, false, IPageLayout.LEFT, 1.0f,
    //layout.getEditorArea());
       
    IFolderLayout parts = layout.createFolder(
                "bigParts", IPageLayout.LEFT, 0.3f, FOLDER_LEFT);
    parts.addView(ShapeView.ID);      
    parts.addView(RuleView.ID);
   
    IFolderLayout tabs = layout.createFolder(
                "bottomParts", IPageLayout.LEFT, 0.3f, FOLDER_BOTTOM);
    //tabs.addView(DebugView.ID);
View Full Code Here

    //layout.getEditorArea());
       
    IFolderLayout parts = layout.createFolder(
                "bigParts", IPageLayout.LEFT, 0.3f, FOLDER_LEFT);
    parts.addView(ShapeView.ID);      
    parts.addView(RuleView.ID);
   
    IFolderLayout tabs = layout.createFolder(
                "bottomParts", IPageLayout.LEFT, 0.3f, FOLDER_BOTTOM);
    //tabs.addView(DebugView.ID);
    tabs.addView(DebugTree.ID);
View Full Code Here

    parts.addView(RuleView.ID);
   
    IFolderLayout tabs = layout.createFolder(
                "bottomParts", IPageLayout.LEFT, 0.3f, FOLDER_BOTTOM);
    //tabs.addView(DebugView.ID);
    tabs.addView(DebugTree.ID);
    tabs.addView(SubshapeView.ID);
    tabs.addView(RenderLineView.ID);
        tabs.addPlaceholder(IPageLayout.ID_PROP_SHEET);
       
    String editorArea = layout.getEditorArea();
View Full Code Here

   
    IFolderLayout tabs = layout.createFolder(
                "bottomParts", IPageLayout.LEFT, 0.3f, FOLDER_BOTTOM);
    //tabs.addView(DebugView.ID);
    tabs.addView(DebugTree.ID);
    tabs.addView(SubshapeView.ID);
    tabs.addView(RenderLineView.ID);
        tabs.addPlaceholder(IPageLayout.ID_PROP_SHEET);
       
    String editorArea = layout.getEditorArea();
        layout.addStandaloneView(IPageLayout.ID_OUTLINE, true, IPageLayout.LEFT, 0.3f,
View Full Code Here

    IFolderLayout tabs = layout.createFolder(
                "bottomParts", IPageLayout.LEFT, 0.3f, FOLDER_BOTTOM);
    //tabs.addView(DebugView.ID);
    tabs.addView(DebugTree.ID);
    tabs.addView(SubshapeView.ID);
    tabs.addView(RenderLineView.ID);
        tabs.addPlaceholder(IPageLayout.ID_PROP_SHEET);
       
    String editorArea = layout.getEditorArea();
        layout.addStandaloneView(IPageLayout.ID_OUTLINE, true, IPageLayout.LEFT, 0.3f,
            editorArea);     
View Full Code Here

    String editorArea = layout.getEditorArea();
    layout.setEditorAreaVisible(false);
    layout.setFixed(true);

    IFolderLayout bottom = layout.createFolder(BOTTOM, IPageLayout.BOTTOM, (float) 0.70, editorArea);
    bottom.addView(ObjectTreeView.ID);

    IFolderLayout bottomRight = layout.createFolder("bottomRight", IPageLayout.RIGHT, (float) 0.50, BOTTOM);
    bottomRight.addView(StringValueView.ID);

    IFolderLayout topRight = layout.createFolder("topRight", IPageLayout.TOP, (float) 0.75, editorArea);
View Full Code Here

    IFolderLayout bottom = layout.createFolder(BOTTOM, IPageLayout.BOTTOM, (float) 0.70, editorArea);
    bottom.addView(ObjectTreeView.ID);

    IFolderLayout bottomRight = layout.createFolder("bottomRight", IPageLayout.RIGHT, (float) 0.50, BOTTOM);
    bottomRight.addView(StringValueView.ID);

    IFolderLayout topRight = layout.createFolder("topRight", IPageLayout.TOP, (float) 0.75, editorArea);
    topRight.addView(LogMessageView.ID);

    layout.addActionSet(JavaUI.ID_ACTION_SET);
View Full Code Here

    IFolderLayout bottomRight = layout.createFolder("bottomRight", IPageLayout.RIGHT, (float) 0.50, BOTTOM);
    bottomRight.addView(StringValueView.ID);

    IFolderLayout topRight = layout.createFolder("topRight", IPageLayout.TOP, (float) 0.75, editorArea);
    topRight.addView(LogMessageView.ID);

    layout.addActionSet(JavaUI.ID_ACTION_SET);
    layout.addActionSet(JavaUI.ID_ELEMENT_CREATION_ACTION_SET);
    layout.addActionSet(IPageLayout.ID_NAVIGATE_ACTION_SET);
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.