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
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.browsing.ui.swt;
\r
14 import org.eclipse.jface.viewers.ISelection;
\r
15 import org.eclipse.swt.widgets.Tree;
\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
21 * A double click event handler for {@link GraphExplorer} that tries to see whether
\r
23 * @author Tuukka Lehtonen
\r
25 public class DoubleClickableNodeMouseListener extends GraphExplorerMouseAdapter {
\r
27 public DoubleClickableNodeMouseListener(GraphExplorer ge) {
\r
32 protected void handleContextDoubleClick(Tree tree, ISelection context) {
\r
33 IDoubleClickableNode doubleClickable = AdaptionUtils.adaptToSingle(context, IDoubleClickableNode.class);
\r
34 if (doubleClickable != null) {
\r
35 doubleClickable.handleDoubleClick();
\r