]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/utils/NoProjectPage.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / utils / NoProjectPage.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.modeling.ui.utils;\r
13 \r
14 import org.eclipse.jface.wizard.WizardPage;\r
15 import org.eclipse.swt.SWT;\r
16 import org.eclipse.swt.layout.GridLayout;\r
17 import org.eclipse.swt.widgets.Composite;\r
18 \r
19 /**\r
20  * @author Tuukka Lehtonen\r
21  */\r
22 public class NoProjectPage extends WizardPage {\r
23 \r
24     public NoProjectPage(String pageName) {\r
25         super(pageName, "No project open", null);\r
26     }\r
27 \r
28     @Override\r
29     public void createControl(Composite parent) {\r
30         Composite container = new Composite(parent, SWT.NONE);\r
31         {\r
32             GridLayout layout = new GridLayout();\r
33             layout.horizontalSpacing = 20;\r
34             layout.verticalSpacing = 10;\r
35             layout.numColumns = 1;\r
36             container.setLayout(layout);\r
37         }\r
38 \r
39         setErrorMessage("No project is open, unable to export.");\r
40 \r
41         setControl(container);\r
42         setPageComplete(false);\r
43     }\r
44 \r
45 }\r