Package org.eclipse.ui

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


      IFolderLayout right = layout.createFolder("right", IPageLayout.RIGHT, (float)0.66, layout.getEditorArea());
      right.addView(IPageLayout.ID_OUTLINE);

      IFolderLayout bottonRight = layout.createFolder("bottonRight", IPageLayout.BOTTOM, (float)0.60, "right");
      bottonRight.addView(IPageLayout.ID_PROP_SHEET);
    }
  }
 
  /**
   * RCP's window advisor
View Full Code Here


    layout.setEditorAreaVisible(true);
    layout
        .addPerspectiveShortcut(OntoUML.diagram.application.DiagramEditorWorkbenchAdvisor.PERSPECTIVE_ID);
    IFolderLayout right = layout.createFolder(
        "right", IPageLayout.RIGHT, 0.6f, layout.getEditorArea()); //$NON-NLS-1$
    right.addView(IPageLayout.ID_OUTLINE);
    IFolderLayout bottomRight = layout.createFolder(
        "bottomRight", IPageLayout.BOTTOM, 0.6f, "right"); //$NON-NLS-1$  //$NON-NLS-2$
    bottomRight.addView(IPageLayout.ID_PROP_SHEET);
  }
}
View Full Code Here

    IFolderLayout right = layout.createFolder(
        "right", IPageLayout.RIGHT, 0.6f, layout.getEditorArea()); //$NON-NLS-1$
    right.addView(IPageLayout.ID_OUTLINE);
    IFolderLayout bottomRight = layout.createFolder(
        "bottomRight", IPageLayout.BOTTOM, 0.6f, "right"); //$NON-NLS-1$  //$NON-NLS-2$
    bottomRight.addView(IPageLayout.ID_PROP_SHEET);
  }
}
View Full Code Here

        String editorArea = layout.getEditorArea();

        // left views
        IFolderLayout left = layout.createFolder("left", IPageLayout.LEFT,
                0.19f, editorArea);
        left.addView(CorpusExplorerView.ID);

        // 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);
        right.addView("org.eclipse.pde.runtime.LogView");

        // bottom views
        IFolderLayout rightBottom = layout.createFolder("rightBottom",
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);
        right.addView("org.eclipse.pde.runtime.LogView");

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

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

        right.addView(IPageLayout.ID_OUTLINE);
        right.addView(FeatureStructureBrowserView.ID);
        right.addView("org.eclipse.pde.runtime.LogView");

        // 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

    // 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

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.