]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.swt/src/org/simantics/browsing/ui/swt/DoubleClickableNodeMouseListener.java
Merge "Testing SonarQube with Simantics Platform SDK"
[simantics/platform.git] / bundles / org.simantics.browsing.ui.swt / src / org / simantics / browsing / ui / swt / DoubleClickableNodeMouseListener.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in 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.browsing.ui.swt;\r
13 \r
14 import org.eclipse.jface.viewers.ISelection;\r
15 import org.eclipse.swt.widgets.Control;\r
16 import org.simantics.browsing.ui.GraphExplorer;\r
17 import org.simantics.browsing.ui.common.node.IDoubleClickableNode;\r
18 import org.simantics.utils.ui.AdaptionUtils;\r
19 \r
20 /**\r
21  * A double click event handler for {@link GraphExplorer} that tries to see whether\r
22  * \r
23  * @author Tuukka Lehtonen\r
24  */\r
25 public class DoubleClickableNodeMouseListener extends GraphExplorerMouseAdapter {\r
26 \r
27     public DoubleClickableNodeMouseListener(GraphExplorer ge) {\r
28         super(ge);\r
29     }\r
30 \r
31     @Override\r
32     protected void handleContextDoubleClick(Control tree, ISelection context) {\r
33         IDoubleClickableNode doubleClickable = AdaptionUtils.adaptToSingle(context, IDoubleClickableNode.class);\r
34         if (doubleClickable != null) {\r
35             doubleClickable.handleDoubleClick();\r
36         }\r
37     }\r
38 \r
39 }\r