summaryrefslogtreecommitdiffstats
path: root/java/com/tigervnc/vncviewer/MenuKey.java
blob: 5248b000ef06b1003d7edd5b12d32487a03ea3cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* Copyright 2011 Martin Koegler <mkoegler@auto.tuwien.ac.at>
 * Copyright 2011 Pierre Ossman <ossman@cendio.se> for Cendio AB
 * Copyright 2012-2017 Brian P. Hinz
 *
 * This is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this software; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
 * USA.
 */

package com.tigervnc.vncviewer;

import java.awt.event.KeyEvent;

import com.tigervnc.rfb.*;

import static java.awt.event.KeyEvent.*;
import static com.tigervnc.rfb.Keysymdef.*;

public class MenuKey
{
  static class MenuKeySymbol {
    public MenuKeySymbol(String name_, int javacode_,
                         int keycode_, int keysym_) {
      name = name_;
      javacode = javacode_;
      keycode = keycode_;
      keysym = keysym_;
    }
    String name;
    int javacode;
    int keycode;
    int keysym;
  }

  private static final MenuKeySymbol[] menuSymbols = {
    new MenuKeySymbol("F1", VK_F1, 0x3b, XK_F1),
    new MenuKeySymbol("F2", VK_F2, 0x3c, XK_F2),
    new MenuKeySymbol("F3", VK_F3, 0x3d, XK_F3),
    new MenuKeySymbol("F4", VK_F4, 0x3e, XK_F4),
    new MenuKeySymbol("F5", VK_F5, 0x3f, XK_F5),
    new MenuKeySymbol("F6", VK_F6, 0x40, XK_F6),
    new MenuKeySymbol("F7", VK_F7, 0x41, XK_F7),
    new MenuKeySymbol("F8", VK_F8, 0x42, XK_F8),
    new MenuKeySymbol("F9", VK_F9, 0x43, XK_F9),
    new MenuKeySymbol("F10", VK_F10, 0x44, XK_F10),
    new MenuKeySymbol("F11", VK_F11, 0x57, XK_F11),
    new MenuKeySymbol("F12", VK_F12, 0x58, XK_F12),
    new MenuKeySymbol("Pause", VK_PAUSE, 0xc6, XK_Pause),
    new MenuKeySymbol("Scroll_Lock", VK_SCROLL_LOCK,
                      0x46, XK_Scroll_Lock),
    new MenuKeySymbol("Escape", VK_ESCAPE, 0x01, XK_Escape),
    new MenuKeySymbol("Insert", VK_INSERT, 0xd2, XK_Insert),
    new MenuKeySymbol("Delete", VK_DELETE, 0xd3, XK_Delete),
    new MenuKeySymbol("Home", VK_HOME, 0xc7, XK_Home),
    new MenuKeySymbol("Page_Up", VK_PAGE_UP, 0xc9, XK_Page_Up),
    new MenuKeySymbol("Page_Down", VK_PAGE_DOWN, 0xd1, XK_Page_Down)
  };

  static int getMenuKeySymbolCount() {
    return menuSymbols.length;
  }

  public static MenuKeySymbol[] getMenuKeySymbols() {
    return menuSymbols;
  }

  public static String getKeyText(MenuKeySymbol sym) {
    if (VncViewer.os.startsWith("mac os x"))
      return sym.name.replace("_", " ");
    else
      return KeyEvent.getKeyText(sym.javacode);
  }

  public static String getMenuKeyValueStr() {
    String s = "";
    for (int i = 0; i < getMenuKeySymbolCount(); i++) {
      s += menuSymbols[i].name;
      if (i < getMenuKeySymbolCount() - 1)
        s += ", ";
    }
    return s;
  }

  static int getMenuKeyJavaCode() {
    int menuKeyCode = VK_F8;

    @SuppressWarnings({"static"})
    String menuKeyStr =
      Configuration.global().getParam("menuKey").getValueStr();
    for(int i = 0; i < getMenuKeySymbolCount(); i++)
      if (menuSymbols[i].name.equals(menuKeyStr))
        menuKeyCode = menuSymbols[i].javacode;

    return menuKeyCode;
  }

  static int getMenuKeyCode() {
    int menuKeyCode = 0x42;

    @SuppressWarnings({"static"})
    String menuKeyStr =
      Configuration.global().getParam("menuKey").getValueStr();
    for(int i = 0; i < getMenuKeySymbolCount(); i++)
      if (menuSymbols[i].name.equals(menuKeyStr))
        menuKeyCode = menuSymbols[i].keycode;

    return menuKeyCode;
  }

  static int getMenuKeySym() {
    int menuKeySym = XK_F8;

    @SuppressWarnings({"static"})
    String menuKeyStr =
      Configuration.global().getParam("menuKey").getValueStr();
    for(int i = 0; i < getMenuKeySymbolCount(); i++)
      if (menuSymbols[i].name.equals(menuKeyStr))
        menuKeySym = menuSymbols[i].keysym;

    return menuKeySym;
  }

}