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