1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_awt_Key_idl__
20 #define __com_sun_star_awt_Key_idl__
24 module com
{ module sun
{ module star
{ module awt
{
27 /** These values are used to specifies distinct physical keys.
29 published constants Key
32 const short NUM0
= 256;
35 const short NUM1
= 257;
38 const short NUM2
= 258;
41 const short NUM3
= 259;
44 const short NUM4
= 260;
47 const short NUM5
= 261;
50 const short NUM6
= 262;
53 const short NUM7
= 263;
56 const short NUM8
= 264;
59 const short NUM9
= 265;
140 const short F1
= 768;
143 const short F2
= 769;
146 const short F3
= 770;
149 const short F4
= 771;
152 const short F5
= 772;
155 const short F6
= 773;
158 const short F7
= 774;
161 const short F8
= 775;
164 const short F9
= 776;
167 const short F10
= 777;
170 const short F11
= 778;
173 const short F12
= 779;
176 const short F13
= 780;
179 const short F14
= 781;
182 const short F15
= 782;
185 const short F16
= 783;
188 const short F17
= 784;
191 const short F18
= 785;
194 const short F19
= 786;
197 const short F20
= 787;
200 const short F21
= 788;
203 const short F22
= 789;
206 const short F23
= 790;
209 const short F24
= 791;
212 const short F25
= 792;
215 const short F26
= 793;
218 const short DOWN
= 1024;
221 const short UP
= 1025;
224 const short LEFT
= 1026;
227 const short RIGHT
= 1027;
230 const short HOME
= 1028;
233 const short END
= 1029;
236 const short PAGEUP
= 1030;
239 const short PAGEDOWN
= 1031;
242 const short RETURN
= 1280;
245 const short ESCAPE
= 1281;
248 const short TAB
= 1282;
251 const short BACKSPACE
= 1283;
254 const short SPACE
= 1284;
257 const short INSERT
= 1285;
260 const short DELETE
= 1286;
263 const short ADD
= 1287;
266 const short SUBTRACT
= 1288;
269 const short MULTIPLY
= 1289;
272 const short DIVIDE
= 1290;
275 const short POINT
= 1291;
278 const short COMMA
= 1292;
281 const short LESS
= 1293;
284 const short GREATER
= 1294;
287 const short EQUAL
= 1295;
290 const short OPEN
= 1296;
293 const short CUT
= 1297;
296 const short COPY
= 1298;
299 const short PASTE
= 1299;
302 const short UNDO
= 1300;
305 const short REPEAT
= 1301;
308 const short FIND
= 1302;
311 const short PROPERTIES
= 1303;
314 const short FRONT
= 1304;
317 const short CONTEXTMENU
= 1305;
320 const short HELP
= 1306;
323 const short MENU
= 1307;
326 const short HANGUL_HANJA
= 1308;
329 const short DECIMAL
= 1309;
332 const short TILDE
= 1310;
335 const short QUOTELEFT
= 1311;
338 const short CAPSLOCK
= 1312;
341 const short NUMLOCK
= 1313;
344 const short SCROLLLOCK
= 1314;
347 const short DELETE_TO_BEGIN_OF_LINE
= 1536;
350 const short DELETE_TO_END_OF_LINE
= 1537;
353 const short DELETE_TO_BEGIN_OF_PARAGRAPH
= 1538;
356 const short BRACKETLEFT
= 1315;
359 const short BRACKETRIGHT
= 1316;
362 const short SEMICOLON
= 1317;
365 const short DELETE_TO_END_OF_PARAGRAPH
= 1539;
368 const short DELETE_WORD_BACKWARD
= 1540;
371 const short DELETE_WORD_FORWARD
= 1541;
374 const short INSERT_LINEBREAK
= 1542;
377 const short INSERT_PARAGRAPH
= 1543;
380 const short MOVE_WORD_BACKWARD
= 1544;
383 const short MOVE_WORD_FORWARD
= 1545;
386 const short MOVE_TO_BEGIN_OF_LINE
= 1546;
389 const short MOVE_TO_END_OF_LINE
= 1547;
392 const short MOVE_TO_BEGIN_OF_PARAGRAPH
= 1548;
395 const short MOVE_TO_END_OF_PARAGRAPH
= 1549;
398 const short SELECT_BACKWARD
= 1550;
401 const short SELECT_FORWARD
= 1551;
404 const short SELECT_WORD_BACKWARD
= 1552;
407 const short SELECT_WORD_FORWARD
= 1553;
410 const short SELECT_WORD
= 1554;
413 const short SELECT_LINE
= 1555;
416 const short SELECT_PARAGRAPH
= 1556;
419 const short SELECT_ALL
= 1557;
422 const short SELECT_TO_BEGIN_OF_LINE
= 1558;
425 const short SELECT_TO_END_OF_LINE
= 1559;
428 const short MOVE_TO_BEGIN_OF_DOCUMENT
= 1560;
431 const short MOVE_TO_END_OF_DOCUMENT
= 1561;
434 const short SELECT_TO_BEGIN_OF_DOCUMENT
= 1562;
437 const short SELECT_TO_END_OF_DOCUMENT
= 1563;
440 const short SELECT_TO_BEGIN_OF_PARAGRAPH
= 1564;
443 const short SELECT_TO_END_OF_PARAGRAPH
= 1565;
451 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */