]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.charts/src/org/simantics/charts/editor/PropertiesAction.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.charts / src / org / simantics / charts / editor / PropertiesAction.java
diff --git a/bundles/org.simantics.charts/src/org/simantics/charts/editor/PropertiesAction.java b/bundles/org.simantics.charts/src/org/simantics/charts/editor/PropertiesAction.java
new file mode 100644 (file)
index 0000000..dd2e92e
--- /dev/null
@@ -0,0 +1,45 @@
+package org.simantics.charts.editor;\r
+\r
+import org.eclipse.jface.action.Action;\r
+import org.eclipse.swt.widgets.Control;\r
+import org.eclipse.swt.widgets.Shell;\r
+import org.simantics.charts.ontology.ChartResource;\r
+import org.simantics.charts.ui.ChartDoubleClickHandler;\r
+import org.simantics.db.ReadGraph;\r
+import org.simantics.db.Resource;\r
+import org.simantics.db.exception.DatabaseException;\r
+import org.simantics.db.request.Read;\r
+import org.simantics.ui.SimanticsUI;\r
+\r
+/**\r
+ * @author Tuukka Lehtonen\r
+ */\r
+public class PropertiesAction extends Action {\r
+\r
+    private Control  control;\r
+    private Resource component;\r
+\r
+    public PropertiesAction(String name, Control control, Resource component) {\r
+        super(name);\r
+        this.control = control;\r
+        this.component = component;\r
+    }\r
+\r
+    @Override\r
+    public void run() {\r
+        final Shell shell = control.getShell();\r
+        SimanticsUI.getSession().asyncRequest(new Read<Object>() {\r
+                       @Override\r
+                       public Object perform(ReadGraph graph) throws DatabaseException {\r
+                               ChartResource CHART = ChartResource.getInstance(graph);\r
+                               if ( graph.isInstanceOf(component, CHART.Chart_Item) ) {\r
+                                       ChartDoubleClickHandler.openChartItemPropertiesDialog(graph, component, shell.getDisplay());\r
+                               } else\r
+                               if ( graph.isInstanceOf(component, CHART.Chart) ) {\r
+                                       ChartDoubleClickHandler.openChartPropertiesDialog(graph, component, shell.getDisplay());\r
+                               } \r
+                               return null;\r
+                       }});\r
+    }\r
+\r
+}
\ No newline at end of file