]> gerrit.simantics Code Review - simantics/sysdyn.git/blob
abfa3e4ace4a476862becea1c34c3ef16700b43f
[simantics/sysdyn.git] /
1 /*******************************************************************************\r
2  * Copyright (c) 2010 Association for Decentralized Information Management in\r
3  * 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.sysdyn.ui.properties.widgets.expressions;\r
13 \r
14 import java.util.Map;\r
15 \r
16 import org.eclipse.jface.layout.GridDataFactory;\r
17 import org.eclipse.jface.layout.GridLayoutFactory;\r
18 import org.eclipse.swt.SWT;\r
19 import org.eclipse.swt.widgets.Composite;\r
20 import org.eclipse.swt.widgets.Label;\r
21 import org.eclipse.swt.widgets.Table;\r
22 import org.simantics.db.ReadGraph;\r
23 import org.simantics.db.Resource;\r
24 import org.simantics.db.exception.DatabaseException;\r
25 import org.simantics.db.request.Read;\r
26 import org.simantics.sysdyn.SysdynResource;\r
27 import org.simantics.ui.SimanticsUI;\r
28 \r
29 public class AuxiliaryExpression extends BasicExpression {\r
30 \r
31     public AuxiliaryExpression() {\r
32         try {\r
33             this.expressionType = SimanticsUI.getSession().syncRequest(new Read<Resource>() {\r
34 \r
35                 @Override\r
36                 public Resource perform(ReadGraph graph) throws DatabaseException {\r
37                     return SysdynResource.getInstance(graph).NormalExpression;\r
38                 }\r
39             });\r
40         } catch (DatabaseException e) {\r
41             e.printStackTrace();\r
42         }\r
43     }\r
44     \r
45     @Override\r
46     public void createExpressionFields(Composite parent, Map<String, Object> data, Table allowedVariables) {\r
47         // Create the single field\r
48         GridLayoutFactory.fillDefaults().numColumns(2).applyTo(parent);\r
49         String equation = data.get("equation") != null ? (String)data.get("equation") : "";\r
50 \r
51         Label l = new Label(parent, SWT.NONE);\r
52         l.setText("=");\r
53 \r
54         expression = new ExpressionField(parent, SWT.BORDER, allowedVariables, true);\r
55         expression.setExpression(equation);\r
56         GridDataFactory.fillDefaults().grab(true, true).applyTo(expression);\r
57     }\r
58 }\r