sunkeysym.pp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. (*
  2. * Copyright (c) 1991, Oracle and/or its affiliates. All rights reserved.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. *)
  23. (************************************************************
  24. Copyright 1991, 1998 The Open Group
  25. Permission to use, copy, modify, distribute, and sell this software and its
  26. documentation for any purpose is hereby granted without fee, provided that
  27. the above copyright notice appear in all copies and that both that
  28. copyright notice and this permission notice appear in supporting
  29. documentation.
  30. The above copyright notice and this permission notice shall be included in
  31. all copies or substantial portions of the Software.
  32. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  33. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  34. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  35. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  36. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  37. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  38. Except as contained in this notice, the name of The Open Group shall not be
  39. used in advertising or otherwise to promote the sale, use or other dealings
  40. in this Software without prior written authorization from The Open Group.
  41. ***********************************************************)
  42. {$IFNDEF FPC_DOTTEDUNITS}
  43. unit sunkeysym;
  44. {$ENDIF FPC_DOTTEDUNITS}
  45. interface
  46. {*
  47. * Floating Accent
  48. *}
  49. const
  50. SunXK_FA_Grave = $1005FF00;
  51. SunXK_FA_Circum = $1005FF01;
  52. SunXK_FA_Tilde = $1005FF02;
  53. SunXK_FA_Acute = $1005FF03;
  54. SunXK_FA_Diaeresis = $1005FF04;
  55. SunXK_FA_Cedilla = $1005FF05;
  56. {*
  57. * Miscellaneous Functions
  58. *}
  59. SunXK_F36 = $1005FF10; { Labeled F11 }
  60. SunXK_F37 = $1005FF11; { Labeled F12 }
  61. SunXK_Sys_Req = $1005FF60;
  62. SunXK_Print_Screen = $0000FF61; { Same as XK_Print }
  63. {*
  64. * International & Multi-Key Character Composition
  65. *}
  66. SunXK_Compose = $0000FF20; { Same as XK_Multi_key }
  67. SunXK_AltGraph = $0000FF7E; { Same as XK_Mode_switch }
  68. {*
  69. * Cursor Control
  70. *}
  71. SunXK_PageUp = $0000FF55; { Same as XK_Prior }
  72. SunXK_PageDown = $0000FF56; { Same as XK_Next }
  73. {*
  74. * Open Look Functions
  75. *}
  76. SunXK_Undo = $0000FF65; { Same as XK_Undo }
  77. SunXK_Again = $0000FF66; { Same as XK_Redo }
  78. SunXK_Find = $0000FF68; { Same as XK_Find }
  79. SunXK_Stop = $0000FF69; { Same as XK_Cancel }
  80. SunXK_Props = $1005FF70;
  81. SunXK_Front = $1005FF71;
  82. SunXK_Copy = $1005FF72;
  83. SunXK_Open = $1005FF73;
  84. SunXK_Paste = $1005FF74;
  85. SunXK_Cut = $1005FF75;
  86. SunXK_PowerSwitch = $1005FF76;
  87. SunXK_AudioLowerVolume = $1005FF77;
  88. SunXK_AudioMute = $1005FF78;
  89. SunXK_AudioRaiseVolume = $1005FF79;
  90. SunXK_VideoDegauss = $1005FF7A;
  91. SunXK_VideoLowerBrightness = $1005FF7B;
  92. SunXK_VideoRaiseBrightness = $1005FF7C;
  93. SunXK_PowerSwitchShift = $1005FF7D;
  94. implementation
  95. end.