source: trunk/src/org/expeditee/gio/gesture/data/ClickGestureData.java@ 1532

Last change on this file since 1532 was 1532, checked in by bnemhaus, 4 years ago

New feature: when creating a frameset, if the item being used is linked and you hold shift, it will use the items on the linked frame to populate the zero frame of the new frameset

File size: 494 bytes
Line 
1package org.expeditee.gio.gesture.data;
2
3public class ClickGestureData extends ItemSpecificGestureData {
4
5 private boolean _longClick;
6
7 public ClickGestureData(boolean longClick)
8 {
9 super(false);
10 _longClick = longClick;
11 }
12
13 public ClickGestureData(ClickGestureData other)
14 {
15 super(other);
16 if (other != null) _longClick = other._longClick;
17 }
18
19 public boolean getLongClick()
20 {
21 return _longClick;
22 }
23
24 public ClickGestureData clone()
25 {
26 return new ClickGestureData(this);
27 }
28}
Note: See TracBrowser for help on using the repository browser.