]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.ui/src/org/simantics/ui/workbench/action/OpenWithDialogAction.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.ui / src / org / simantics / ui / workbench / action / OpenWithDialogAction.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.ui.workbench.action;
13
14 import org.eclipse.jface.action.Action;
15 import org.eclipse.jface.action.IAction;
16 import org.eclipse.swt.widgets.Shell;
17 import org.simantics.db.Resource;
18 import org.simantics.ui.dialogs.ActionChooserDialog;
19 import org.simantics.ui.workbench.editor.EditorAdapter;
20 import org.simantics.utils.ui.action.IPriorityAction;
21
22
23 /**
24  * @author Tuukka Lehtonen
25  */
26 public class OpenWithDialogAction extends Action {
27
28     Shell             shell;
29     String            description;
30     IPriorityAction[] actions;
31
32     public OpenWithDialogAction(Shell parent, EditorAdapter[] adapters, Resource r) {
33         super("Open With...");
34         this.shell = parent;
35         this.description = "Open with:";
36         this.actions = ResourceEditorAdapterAction.toActions(adapters, r);
37     }
38
39     @Override
40     public void run() {
41         ActionChooserDialog dialog = new ActionChooserDialog(shell, actions, "Choose Editor", description);
42         dialog.open();
43         IAction a = dialog.getChosenAction();
44         if (a != null) {
45             a.run();
46         }
47     }
48
49 }