Java Code Examples for org.eclipse.ui.IPageLayout#addStandaloneView()

The following examples show how to use org.eclipse.ui.IPageLayout#addStandaloneView() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Perspective.java    From translationstudio8 with GNU General Public License v2.0 5 votes vote down vote up
public void createInitialLayout(IPageLayout layout) {
	String editorArea = layout.getEditorArea();
	layout.setEditorAreaVisible(false);
	layout.setFixed(true);
	
	layout.addStandaloneView(View.ID,  false, IPageLayout.LEFT, 1.0f, editorArea);
}
 
Example 2
Source File: Perspective.java    From tmxeditor8 with GNU General Public License v2.0 5 votes vote down vote up
public void createInitialLayout(IPageLayout layout) {
	String editorArea = layout.getEditorArea();
	layout.setEditorAreaVisible(false);
	layout.setFixed(true);
	
	layout.addStandaloneView(View.ID,  false, IPageLayout.LEFT, 1.0f, editorArea);
}
 
Example 3
Source File: ExamplesPerspective.java    From nebula with Eclipse Public License 2.0 4 votes vote down vote up
@Override
public void createInitialLayout(IPageLayout layout) {
	layout.setEditorAreaVisible(false);
	layout.addStandaloneView("org.eclipse.nebula.examples.view", false, IPageLayout.LEFT, 1,
			layout.getEditorArea());
}
 
Example 4
Source File: Perspective.java    From orion.server with Eclipse Public License 1.0 4 votes vote down vote up
public void createInitialLayout(IPageLayout layout) {
	layout.addStandaloneView(OrionConsoleView.ID, true, IPageLayout.LEFT, 0.5f, "org.eclipse.ui.editorss");
	layout.setEditorAreaVisible(false);
	layout.setFixed(true);
}