You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

menukey.cxx 2.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* Copyright 2011 Martin Koegler <mkoegler@auto.tuwien.ac.at>
  2. * Copyright 2011 Pierre Ossman <ossman@cendio.se> for Cendio AB
  3. *
  4. * This is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This software is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this software; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  17. * USA.
  18. */
  19. #include <string.h>
  20. #include <FL/Fl.H>
  21. // FLTK can pull in the X11 headers on some systems
  22. #ifndef XK_VoidSymbol
  23. #define XK_MISCELLANY
  24. #include <rfb/keysymdef.h>
  25. #endif
  26. #include "menukey.h"
  27. #include "parameters.h"
  28. static const MenuKeySymbol menuSymbols[] = {
  29. {"F1", FL_F + 1, 0x3b, XK_F1},
  30. {"F2", FL_F + 2, 0x3c, XK_F2},
  31. {"F3", FL_F + 3, 0x3d, XK_F3},
  32. {"F4", FL_F + 4, 0x3e, XK_F4},
  33. {"F5", FL_F + 5, 0x3f, XK_F5},
  34. {"F6", FL_F + 6, 0x40, XK_F6},
  35. {"F7", FL_F + 7, 0x41, XK_F7},
  36. {"F8", FL_F + 8, 0x42, XK_F8},
  37. {"F9", FL_F + 9, 0x43, XK_F9},
  38. {"F10", FL_F + 10, 0x44, XK_F10},
  39. {"F11", FL_F + 11, 0x57, XK_F11},
  40. {"F12", FL_F + 12, 0x58, XK_F12},
  41. {"Pause", FL_Pause, 0xc6, XK_Pause},
  42. {"Scroll_Lock", FL_Scroll_Lock, 0x46, XK_Scroll_Lock},
  43. {"Escape", FL_Escape, 0x01, XK_Escape},
  44. {"Insert", FL_Insert, 0xd2, XK_Insert},
  45. {"Delete", FL_Delete, 0xd3, XK_Delete},
  46. {"Home", FL_Home, 0xc7, XK_Home},
  47. {"Page_Up", FL_Page_Up, 0xc9, XK_Page_Up},
  48. {"Page_Down", FL_Page_Down, 0xd1, XK_Page_Down},
  49. };
  50. int getMenuKeySymbolCount()
  51. {
  52. return sizeof(menuSymbols)/sizeof(menuSymbols[0]);
  53. }
  54. const MenuKeySymbol* getMenuKeySymbols()
  55. {
  56. return menuSymbols;
  57. }
  58. void getMenuKey(int *fltkcode, int *keycode, rdr::U32 *keysym)
  59. {
  60. const char *menuKeyStr;
  61. menuKeyStr = menuKey;
  62. for(int i = 0; i < getMenuKeySymbolCount(); i++) {
  63. if (!strcmp(menuSymbols[i].name, menuKeyStr)) {
  64. *fltkcode = menuSymbols[i].fltkcode;
  65. *keycode = menuSymbols[i].keycode;
  66. *keysym = menuSymbols[i].keysym;
  67. return;
  68. }
  69. }
  70. *fltkcode = 0;
  71. *keycode = 0;
  72. *keysym = 0;
  73. }