Package org.eclipse.ui

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


      bottom.addView(PROVENANCE_TRACKER_VIEW_ID);
      bottom.addView(SOURCE_VIEW_ID);
      bottom.addView(SINK_VIEW_ID);
      //bottom.addView(MARKER_VIEW_ID);
      bottom.addView(IPageLayout.ID_TASK_LIST);
      bottom.addPlaceholder(IPageLayout.ID_PROBLEM_VIEW);
      
      // Add the favorites action set
      //layout.addActionSet(FAVORITES_ACTION_ID); 
     
      layout.addView(IPageLayout.ID_OUTLINE, IPageLayout.RIGHT, 0.85f, editorArea);
View Full Code Here


        // Log folder
        IFolderLayout logFolder = layout.createFolder( "logFolder", IPageLayout.BOTTOM, ( float ) 0.75, editorArea );
        logFolder.addView( ModificationLogsView.getId() );
        logFolder.addView( SearchLogsView.getId() );
        logFolder.addPlaceholder( "*" );

        // non-closable?
        boolean isIDE = BrowserCommonActivator.isIDEEnvironment();
        if ( !isIDE )
        {
View Full Code Here

        progessFolder.addView( "org.eclipse.ui.views.ProgressView" );

        // Log folder
        IFolderLayout logFolder = layout.createFolder( "logFolder", IPageLayout.BOTTOM, ( float ) 0.75, editorArea );
        logFolder.addView( ModificationLogsView.getId() );
        logFolder.addPlaceholder( "*" );

        // non-closable?
        boolean isIDE = BrowserCommonActivator.isIDEEnvironment();
        if ( !isIDE )
        {
View Full Code Here

        // Log folder
        IFolderLayout logFolder = layout.createFolder( "logFolder", IPageLayout.BOTTOM, ( float ) 0.75, editorArea ); //$NON-NLS-1$
        logFolder.addView( ModificationLogsView.getId() );
        logFolder.addView( SearchLogsView.getId() );
        logFolder.addPlaceholder( "*" ); //$NON-NLS-1$

        // non-closable?
        boolean isIDE = CommonUIUtils.isIDEEnvironment();
        if ( !isIDE )
        {
View Full Code Here

    public void createInitialLayout(IPageLayout layout) {
        String editorArea = layout.getEditorArea();
        IFolderLayout topLeft = layout.createFolder("topLeft", IPageLayout.LEFT, (float) 0.25, editorArea);
        topLeft.addView(FindbugsPlugin.TREE_VIEW_ID);
        topLeft.addPlaceholder(JavaUI.ID_PACKAGES);

        // Bottom right.
        IFolderLayout bottomRightA = layout.createFolder("bottomRightA", IPageLayout.BOTTOM, (float) 0.55, editorArea);

        bottomRightA.addView(FindbugsPlugin.USER_ANNOTATIONS_VIEW_ID);
View Full Code Here

    IFolderLayout bottomFolder = layout.createFolder("bottomPane", IPageLayout.BOTTOM, 0.75f, editorArea);
   
    bottomFolder.addView(IPageLayout.ID_TASK_LIST);
    bottomFolder.addView(IPageLayout.ID_PROBLEM_VIEW);
    bottomFolder.addView("org.eclipse.dltk.ui.TypeHierarchy");
    bottomFolder.addPlaceholder(NewSearchUI.SEARCH_VIEW_ID);
    bottomFolder.addView(IPageLayout.ID_PROGRESS_VIEW);
    bottomFolder.addView(IConsoleConstants.ID_CONSOLE_VIEW);
   
    layout.addView(IPageLayout.ID_OUTLINE, IPageLayout.RIGHT, 0.75f, editorArea);
  }
View Full Code Here

    IFolderLayout rightBottom = layout.createFolder("rightBottom", IPageLayout.BOTTOM, 0.66f, editorArea); //$NON-NLS-1$
   
    left.addView(LogResourcesView.ID);
    rightBottom.addView(MessageFieldView.ID);
    rightBottom.addView(StacktraceFieldView.ID);
    rightBottom.addPlaceholder(IProgressConstants.PROGRESS_VIEW_ID);
  }

}
View Full Code Here

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

    IFolderLayout folderNavigator = layout.createFolder("navigator",
        IPageLayout.LEFT, 0.3f, editorArea);
    folderNavigator.addPlaceholder(RunningEventView.ID + ":*");
    folderNavigator.addView(RunningEventView.ID);
    folderNavigator.addView(BackUpLogView.ID);

    layout.getViewLayout(RunningEventView.ID).setCloseable(false);
    layout.getViewLayout(BackUpLogView.ID).setCloseable(false);
 
View Full Code Here

    String editorArea = layout.getEditorArea();

    IFolderLayout leftFolder = layout.createFolder("left", IPageLayout.LEFT, (float) 0.25, editorArea); //$NON-NLS-1$
    leftFolder.addView(PerspectiveFactory.ID_WO_PACKAGES);
    leftFolder.addView(JavaUI.ID_TYPE_HIERARCHY);
    leftFolder.addPlaceholder(IPageLayout.ID_RES_NAV);
   
    IFolderLayout leftBottomFolder = layout.createFolder("left_bottom", IPageLayout.BOTTOM, (float) 0.65, "left");
    leftBottomFolder.addView(PerspectiveFactory.ID_RELATED);
   
    IFolderLayout bottomFolder = layout.createFolder("bottom", IPageLayout.BOTTOM, (float) 0.75, editorArea); //$NON-NLS-1$
View Full Code Here

    bottomFolder.addView(IPageLayout.ID_PROBLEM_VIEW);
    //bottomFolder.addView(PerspectiveFactory.ID_BINDINGS);
    bottomFolder.addView(IConsoleConstants.ID_CONSOLE_VIEW);
    bottomFolder.addView(JavaUI.ID_JAVADOC_VIEW);
    bottomFolder.addView(JavaUI.ID_SOURCE_VIEW);
    bottomFolder.addPlaceholder(NewSearchUI.SEARCH_VIEW_ID);
    bottomFolder.addPlaceholder(IConsoleConstants.ID_CONSOLE_VIEW);
    bottomFolder.addPlaceholder(IPageLayout.ID_BOOKMARKS);
    bottomFolder.addPlaceholder(IProgressConstants.PROGRESS_VIEW_ID);

    layout.addView(IPageLayout.ID_OUTLINE, IPageLayout.RIGHT, (float) 0.75, editorArea);
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.