Project

General

Profile

Download (1.49 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.taxeditor.perspective;
11

    
12
import org.eclipse.ui.IFolderLayout;
13
import org.eclipse.ui.IPageLayout;
14

    
15
import eu.etaxonomy.taxeditor.navigation.search.SearchBar;
16

    
17
/**
18
 * @author n.hoffmann
19
 * @created Jan 17, 2011
20
 * @version 1.0
21
 */
22
public class Taxonomic extends Default {
23

    
24
    @Override
25
	public void createInitialLayout(IPageLayout layout) {
26
		IFolderLayout navigationFolder = layout.createFolder(SearchBar.NAVIGATION_STACK_ID, IPageLayout.LEFT, 0.3f, layout.getEditorArea());
27

    
28
		navigationFolder.addView(NAVIGATOR);
29
		navigationFolder.addPlaceholder(SEARCH_RESULTS);
30

    
31
		layout.addPlaceholder(NAME_EDITOR, IPageLayout.BOTTOM, 0.25f, layout.getEditorArea());
32

    
33
		layout.addView(DETAILS_VIEW, IPageLayout.RIGHT, 0.6f, layout.getEditorArea());
34
		IFolderLayout supplementalFolder = layout.createFolder(SUPPLEMENTAL_VIEW+"stack", IPageLayout.BOTTOM, 0.6f, DETAILS_VIEW);
35
		supplementalFolder.addView(SUPPLEMENTAL_VIEW);
36
		supplementalFolder.addPlaceholder(CONCEPT_VIEW);
37
		supplementalFolder.addPlaceholder(REFERENCING_VIEW);
38

    
39
		layout.addView(FACTUAL_DATA_VIEW, IPageLayout.BOTTOM, 0.6f, layout.getEditorArea());
40
		layout.addView(MEDIA_VIEW, IPageLayout.RIGHT, 0.5f, FACTUAL_DATA_VIEW);
41

    
42
		createAdditionalFolder(layout, layout.getEditorArea());
43
	}
44
}
(5-5/7)