X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.charts%2Fsrc%2Forg%2Fsimantics%2Fcharts%2Feditor%2FPropertiesAction.java;fp=bundles%2Forg.simantics.charts%2Fsrc%2Forg%2Fsimantics%2Fcharts%2Feditor%2FPropertiesAction.java;h=dd2e92e15f4e5a8d3eae9761073a66db5d608d99;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git 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 index 000000000..dd2e92e15 --- /dev/null +++ b/bundles/org.simantics.charts/src/org/simantics/charts/editor/PropertiesAction.java @@ -0,0 +1,45 @@ +package org.simantics.charts.editor; + +import org.eclipse.jface.action.Action; +import org.eclipse.swt.widgets.Control; +import org.eclipse.swt.widgets.Shell; +import org.simantics.charts.ontology.ChartResource; +import org.simantics.charts.ui.ChartDoubleClickHandler; +import org.simantics.db.ReadGraph; +import org.simantics.db.Resource; +import org.simantics.db.exception.DatabaseException; +import org.simantics.db.request.Read; +import org.simantics.ui.SimanticsUI; + +/** + * @author Tuukka Lehtonen + */ +public class PropertiesAction extends Action { + + private Control control; + private Resource component; + + public PropertiesAction(String name, Control control, Resource component) { + super(name); + this.control = control; + this.component = component; + } + + @Override + public void run() { + final Shell shell = control.getShell(); + SimanticsUI.getSession().asyncRequest(new Read() { + @Override + public Object perform(ReadGraph graph) throws DatabaseException { + ChartResource CHART = ChartResource.getInstance(graph); + if ( graph.isInstanceOf(component, CHART.Chart_Item) ) { + ChartDoubleClickHandler.openChartItemPropertiesDialog(graph, component, shell.getDisplay()); + } else + if ( graph.isInstanceOf(component, CHART.Chart) ) { + ChartDoubleClickHandler.openChartPropertiesDialog(graph, component, shell.getDisplay()); + } + return null; + }}); + } + +} \ No newline at end of file