Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » GEF » Problem with RCP perspective layout(Problem with RCP perspective layout)
Problem with RCP perspective layout [message #541507] Mon, 21 June 2010 12:22
syeed is currently offline syeedFriend
Messages: 19
Registered: June 2010
Junior Member
Hi,
I am creating an RCP application. I place four folders in the Perspective and add views to them (please see the code bellow).
The problem is, If I close all the Views in top folder, the bottom folder expands and the top folder is not be visible any more. It happens for all the folders. But I want to keep all the folders visible even if no views is present in the folder.

I tried it with "createPlaceholderFolder" but it does not solve the problem.
Please Provide some solution.
thanks in advance.

-Syeed

public void createInitialLayout( IPageLayout layout ) {
this.layout = layout;
String editorAreaId = layout.getEditorArea();
layout.setEditorAreaVisible( false );
layout.setFixed( false );

layout.createFolder( FI_RIGHT, IPageLayout.RIGHT, 0.85f, editorAreaId );
layout.createFolder( FI_LEFT, IPageLayout.LEFT, 0.25f, editorAreaId );

layout.createFolder( FI_TOP,IPageLayout.TOP, 0.75f, editorAreaId ).addView("Views.GraphView");

layout.createFolder( FI_BOTTOM, IPageLayout.BOTTOM, 0.05f, editorAreaId );


}

[Updated on: Mon, 21 June 2010 12:22]

Report message to a moderator

Previous Topic:Diagram -->> code conversion
Next Topic:Is it a bug of GEF?
Goto Forum:
  


Current Time: Fri Apr 26 15:46:05 GMT 2024

Powered by FUDForum. Page generated in 0.03095 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top