"Fossies" - the Fresh Open Source Software Archive 
Member "selenium-selenium-4.8.1/cpp/webdriver-interactions/keycodes.h" (17 Feb 2023, 2640 Bytes) of package /linux/www/selenium-selenium-4.8.1.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "keycodes.h" see the
Fossies "Dox" file reference documentation.
1 /*
2 Licensed to the Software Freedom Conservancy (SFC) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The SFC licenses this file
6 to you under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 */
18
19 #ifndef keycodes_h
20 #define keycodes_h
21
22 #define WD_KEY_NULL 0xE000U
23 #define WD_KEY_CANCEL 0xE001U
24 #define WD_KEY_HELP 0xE002U
25 #define WD_KEY_BACKSPACE 0xE003U
26 #define WD_KEY_TAB 0xE004U
27 #define WD_KEY_CLEAR 0xE005U
28 #define WD_KEY_RETURN 0xE006U
29 #define WD_KEY_ENTER 0xE007U
30 #define WD_KEY_SHIFT 0xE008U
31 #define WD_KEY_CONTROL 0xE009U
32 #define WD_KEY_ALT 0xE00AU
33 #define WD_KEY_PAUSE 0xE00BU
34 #define WD_KEY_ESCAPE 0xE00CU
35 #define WD_KEY_SPACE 0xE00DU
36 #define WD_KEY_PAGEUP 0xE00EU
37 #define WD_KEY_PAGEDOWN 0xE00FU
38 #define WD_KEY_END 0xE010U
39 #define WD_KEY_HOME 0xE011U
40 #define WD_KEY_LEFT 0xE012U
41 #define WD_KEY_UP 0xE013U
42 #define WD_KEY_RIGHT 0xE014U
43 #define WD_KEY_DOWN 0xE015U
44 #define WD_KEY_INSERT 0xE016U
45 #define WD_KEY_DELETE 0xE017U
46 #define WD_KEY_SEMICOLON 0xE018U
47 #define WD_KEY_EQUALS 0xE019U
48 #define WD_KEY_NUMPAD0 0xE01AU
49 #define WD_KEY_NUMPAD1 0xE01BU
50 #define WD_KEY_NUMPAD2 0xE01CU
51 #define WD_KEY_NUMPAD3 0xE01DU
52 #define WD_KEY_NUMPAD4 0xE01EU
53 #define WD_KEY_NUMPAD5 0xE01FU
54 #define WD_KEY_NUMPAD6 0xE020U
55 #define WD_KEY_NUMPAD7 0xE021U
56 #define WD_KEY_NUMPAD8 0xE022U
57 #define WD_KEY_NUMPAD9 0xE023U
58 #define WD_KEY_MULTIPLY 0xE024U
59 #define WD_KEY_ADD 0xE025U
60 #define WD_KEY_SEPARATOR 0xE026U
61 #define WD_KEY_SUBTRACT 0xE027U
62 #define WD_KEY_DECIMAL 0xE028U
63 #define WD_KEY_DIVIDE 0xE029U
64 #define WD_KEY_F1 0xE031U
65 #define WD_KEY_F2 0xE032U
66 #define WD_KEY_F3 0xE033U
67 #define WD_KEY_F4 0xE034U
68 #define WD_KEY_F5 0xE035U
69 #define WD_KEY_F6 0xE036U
70 #define WD_KEY_F7 0xE037U
71 #define WD_KEY_F8 0xE038U
72 #define WD_KEY_F9 0xE039U
73 #define WD_KEY_F10 0xE03AU
74 #define WD_KEY_F11 0xE03BU
75 #define WD_KEY_F12 0xE03CU
76 #define WD_KEY_META 0xE03DU
77
78 #endif // keycodes_h