]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.g2d/src/org/simantics/g2d/element/handler/impl/TogglableImpl.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.g2d / src / org / simantics / g2d / element / handler / impl / TogglableImpl.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 TogglableImpl extends AbstractTogglable {
34
35     private static final long         serialVersionUID = 7785780650947251222L;
36
37     public static final TogglableImpl INSTANCE         = new TogglableImpl();
38
39     @Override
40     protected boolean onPickCheck(IElement e, ICanvasContext ctx, int pointerId, Point2D pickPos) {
41         PickRequest req = new PickRequest(pickPos);
42         return ElementUtils.pickInElement(e, ctx, req);
43     }
44
45 }