1
2
3
4
5 package spellcast.ui;
6
7 import javax.swing.*;
8
9 /***
10 *
11 * @author Barrie Treloar
12 */
13 public class LeftHandedGesturePopupMenu extends GesturePopupMenu
14 {
15 public LeftHandedGesturePopupMenu()
16 {
17 super();
18 }
19
20 Icon getPalmIcon()
21 {
22 return GestureIcon.getPalmLefthandIcon();
23 }
24
25 Icon getDigitIcon()
26 {
27 return GestureIcon.getDigitLefthandIcon();
28 }
29
30 Icon getFingersIcon()
31 {
32 return GestureIcon.getFingersLefthandIcon();
33 }
34
35 Icon getWaveIcon()
36 {
37 return GestureIcon.getWaveLefthandIcon();
38 }
39
40 Icon getClapIcon()
41 {
42 return GestureIcon.getClapLefthandIcon();
43 }
44
45 Icon getSnapIcon()
46 {
47 return GestureIcon.getSnapLefthandIcon();
48 }
49
50 Icon getKnifeIcon()
51 {
52 return GestureIcon.getKnifeLefthandIcon();
53 }
54 }
55