]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/impl/ClickableImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / impl / ClickableImpl.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.g2d.element.handler.impl;
13
14 import java.awt.geom.Point2D;
15
16 import org.simantics.g2d.canvas.ICanvasContext;
17 import org.simantics.g2d.diagram.handler.PickRequest;
18 import org.simantics.g2d.element.ElementUtils;
19 import org.simantics.g2d.element.IElement;
20
21 /**
22  * Clickable class can used three different ways:
23  * 
24  *  1) Sub-class it and override onClicked
25  *  
26  *  2) Use Clickable.getPressStatus() from other element handler, e.g. painter
27  *  
28  *  3) Add ClickListener 
29  * 
30  * 
31  * @author Toni Kalajainen
32  */
33 public class ClickableImpl extends AbstractClickable {
34
35         private static final long serialVersionUID = -6745028180978226458L;
36         public static final ClickableImpl INSTANCE = new ClickableImpl();
37         
38         @Override
39         protected void onClicked(GrabInfo gi, ICanvasContext ctx) {
40                 // Do nothing. Events will be sent nevertheless (AbstractClickable)
41         }
42
43         @Override
44         protected boolean onPickCheck(IElement e, ICanvasContext ctx, int pointerId, Point2D pickPos) {
45                 PickRequest req = new PickRequest(pickPos);
46                 return ElementUtils.pickInElement(e, ctx, req);
47         }
48
49
50 }