Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Rich Client Platform (RCP) » RCP layout problem(RCP layout problem)
RCP layout problem [message #541673] Tue, 22 June 2010 06:43
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 );


}
Previous Topic:Problem with RCP perspective layout
Next Topic:Problem with RCP perspective layout
Goto Forum:
  


Current Time: Fri Mar 29 07:03:32 GMT 2024

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

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

Back to the top