
com.tigervnc.vncviewer.MenuKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sikulix1tigervnc Show documentation
Show all versions of sikulix1tigervnc Show documentation
... for visual testing and automation (TigerVNC support)
The newest version!
/* Copyright 2011 Martin Koegler
* Copyright 2011 Pierre Ossman for Cendio AB
* Copyright 2012 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.*;
public class MenuKey
{
static class MenuKeySymbol {
public MenuKeySymbol(String name_, int keycode_, int keysym_) {
name = name_;
keycode = keycode_;
keysym = keysym_;
}
String name;
int keycode;
int keysym;
}
private static final MenuKeySymbol[] menuSymbols = {
new MenuKeySymbol("F1", KeyEvent.VK_F1, Keysyms.F1),
new MenuKeySymbol("F2", KeyEvent.VK_F2, Keysyms.F2),
new MenuKeySymbol("F3", KeyEvent.VK_F3, Keysyms.F3),
new MenuKeySymbol("F4", KeyEvent.VK_F4, Keysyms.F4),
new MenuKeySymbol("F5", KeyEvent.VK_F5, Keysyms.F5),
new MenuKeySymbol("F6", KeyEvent.VK_F6, Keysyms.F6),
new MenuKeySymbol("F7", KeyEvent.VK_F7, Keysyms.F7),
new MenuKeySymbol("F8", KeyEvent.VK_F8, Keysyms.F8),
new MenuKeySymbol("F9", KeyEvent.VK_F9, Keysyms.F9),
new MenuKeySymbol("F10", KeyEvent.VK_F10, Keysyms.F10),
new MenuKeySymbol("F11", KeyEvent.VK_F11, Keysyms.F11),
new MenuKeySymbol("F12", KeyEvent.VK_F12, Keysyms.F12),
new MenuKeySymbol("Pause", KeyEvent.VK_PAUSE, Keysyms.Pause),
new MenuKeySymbol("Print", KeyEvent.VK_PRINTSCREEN, Keysyms.Print),
new MenuKeySymbol("Scroll_Lock", KeyEvent.VK_SCROLL_LOCK,
Keysyms.Scroll_Lock),
new MenuKeySymbol("Escape", KeyEvent.VK_ESCAPE, Keysyms.Escape),
new MenuKeySymbol("Insert", KeyEvent.VK_INSERT, Keysyms.Insert),
new MenuKeySymbol("Delete", KeyEvent.VK_DELETE, Keysyms.Delete),
new MenuKeySymbol("Home", KeyEvent.VK_HOME, Keysyms.Home),
new MenuKeySymbol("Page_Up", KeyEvent.VK_PAGE_UP, Keysyms.Page_Up),
new MenuKeySymbol("Page_Down", KeyEvent.VK_PAGE_DOWN, Keysyms.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.keycode);
}
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 getMenuKeyCode() {
int menuKeyCode = KeyEvent.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].keycode;
return menuKeyCode;
}
static int getMenuKeySym() {
int menuKeySym = Keysyms.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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy