]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.ui/src/org/simantics/ui/workbench/action/PerformDefaultAction.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / workbench / action / PerformDefaultAction.java
diff --git a/bundles/org.simantics.ui/src/org/simantics/ui/workbench/action/PerformDefaultAction.java b/bundles/org.simantics.ui/src/org/simantics/ui/workbench/action/PerformDefaultAction.java
new file mode 100644 (file)
index 0000000..640e58f
--- /dev/null
@@ -0,0 +1,53 @@
+/*******************************************************************************\r
+ * Copyright (c) 2012 Association for Decentralized Information Management in\r
+ * Industry THTH ry.\r
+ * All rights reserved. This program and the accompanying materials\r
+ * are made available under the terms of the Eclipse Public License v1.0\r
+ * which accompanies this distribution, and is available at\r
+ * http://www.eclipse.org/legal/epl-v10.html\r
+ *\r
+ * Contributors:\r
+ *     VTT Technical Research Centre of Finland - initial API and implementation\r
+ *******************************************************************************/\r
+package org.simantics.ui.workbench.action;\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.eclipse.ui.IWorkbench;\r
+import org.eclipse.ui.IWorkbenchWindow;\r
+import org.eclipse.ui.PlatformUI;\r
+import org.simantics.db.Resource;\r
+import org.simantics.ui.SimanticsUI;\r
+import org.simantics.utils.ui.workbench.WorkbenchUtils;\r
+\r
+/**\r
+ * @author Tuukka Lehtonen\r
+ */\r
+public class PerformDefaultAction extends Action {\r
+\r
+    private Control  control;\r
+    private Resource component;\r
+\r
+    public PerformDefaultAction(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 String perspectiveId = WorkbenchUtils.getCurrentPerspectiveId();\r
+        Shell shell = null;\r
+        if (control != null) {\r
+            shell = control.getShell();\r
+        } else {\r
+            IWorkbench wb = PlatformUI.getWorkbench();\r
+            IWorkbenchWindow window = wb.getActiveWorkbenchWindow();\r
+            if (window != null)\r
+                shell = window.getShell();\r
+        }\r
+        SimanticsUI.getSession().asyncRequest(new ChooseActionRequest(shell, control, component, perspectiveId));\r
+    }\r
+\r
+}
\ No newline at end of file