123b3eb3cSopenharmony_ci/*
223b3eb3cSopenharmony_ci * Copyright (c) 2021-2023 Huawei Device Co., Ltd.
323b3eb3cSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
423b3eb3cSopenharmony_ci * you may not use this file except in compliance with the License.
523b3eb3cSopenharmony_ci * You may obtain a copy of the License at
623b3eb3cSopenharmony_ci *
723b3eb3cSopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
823b3eb3cSopenharmony_ci *
923b3eb3cSopenharmony_ci * Unless required by applicable law or agreed to in writing, software
1023b3eb3cSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
1123b3eb3cSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1223b3eb3cSopenharmony_ci * See the License for the specific language governing permissions and
1323b3eb3cSopenharmony_ci * limitations under the License.
1423b3eb3cSopenharmony_ci */
1523b3eb3cSopenharmony_ci
1623b3eb3cSopenharmony_ci/**
1723b3eb3cSopenharmony_ci * @addtogroup OH_NativeXComponent Native XComponent
1823b3eb3cSopenharmony_ci * @{
1923b3eb3cSopenharmony_ci */
2023b3eb3cSopenharmony_ci
2123b3eb3cSopenharmony_ci/**
2223b3eb3cSopenharmony_ci * @file native_xcomponent_key_event.h
2323b3eb3cSopenharmony_ci *
2423b3eb3cSopenharmony_ci * @brief Declares enums for key event of Native XComponent.
2523b3eb3cSopenharmony_ci *
2623b3eb3cSopenharmony_ci * @since 10
2723b3eb3cSopenharmony_ci * @version 1.0
2823b3eb3cSopenharmony_ci */
2923b3eb3cSopenharmony_ci
3023b3eb3cSopenharmony_ci#ifndef _NATIVE_INTERFACE_XCOMPONENT_KEY_EVENT_H_
3123b3eb3cSopenharmony_ci#define _NATIVE_INTERFACE_XCOMPONENT_KEY_EVENT_H_
3223b3eb3cSopenharmony_ci
3323b3eb3cSopenharmony_ci#ifdef __cplusplus
3423b3eb3cSopenharmony_ciextern "C" {
3523b3eb3cSopenharmony_ci#endif
3623b3eb3cSopenharmony_ci
3723b3eb3cSopenharmony_ci/**
3823b3eb3cSopenharmony_ci * @brief Represents the key event code.
3923b3eb3cSopenharmony_ci *
4023b3eb3cSopenharmony_ci * @since 10
4123b3eb3cSopenharmony_ci * @version 1.0
4223b3eb3cSopenharmony_ci */
4323b3eb3cSopenharmony_citypedef enum {
4423b3eb3cSopenharmony_ci    KEY_UNKNOWN = -1,
4523b3eb3cSopenharmony_ci    KEY_FN = 0,
4623b3eb3cSopenharmony_ci    KEY_HOME = 1,
4723b3eb3cSopenharmony_ci    KEY_BACK = 2,
4823b3eb3cSopenharmony_ci    KEY_MEDIA_PLAY_PAUSE = 10,
4923b3eb3cSopenharmony_ci    KEY_MEDIA_STOP = 11,
5023b3eb3cSopenharmony_ci    KEY_MEDIA_NEXT = 12,
5123b3eb3cSopenharmony_ci    KEY_MEDIA_PREVIOUS = 13,
5223b3eb3cSopenharmony_ci    KEY_MEDIA_REWIND = 14,
5323b3eb3cSopenharmony_ci    KEY_MEDIA_FAST_FORWARD = 15,
5423b3eb3cSopenharmony_ci    KEY_VOLUME_UP = 16,
5523b3eb3cSopenharmony_ci    KEY_VOLUME_DOWN = 17,
5623b3eb3cSopenharmony_ci    KEY_POWER = 18,
5723b3eb3cSopenharmony_ci    KEY_CAMERA = 19,
5823b3eb3cSopenharmony_ci    KEY_VOLUME_MUTE = 22,
5923b3eb3cSopenharmony_ci    KEY_MUTE = 23,
6023b3eb3cSopenharmony_ci    KEY_BRIGHTNESS_UP = 40,
6123b3eb3cSopenharmony_ci    KEY_BRIGHTNESS_DOWN = 41,
6223b3eb3cSopenharmony_ci    KEY_0 = 2000,
6323b3eb3cSopenharmony_ci    KEY_1 = 2001,
6423b3eb3cSopenharmony_ci    KEY_2 = 2002,
6523b3eb3cSopenharmony_ci    KEY_3 = 2003,
6623b3eb3cSopenharmony_ci    KEY_4 = 2004,
6723b3eb3cSopenharmony_ci    KEY_5 = 2005,
6823b3eb3cSopenharmony_ci    KEY_6 = 2006,
6923b3eb3cSopenharmony_ci    KEY_7 = 2007,
7023b3eb3cSopenharmony_ci    KEY_8 = 2008,
7123b3eb3cSopenharmony_ci    KEY_9 = 2009,
7223b3eb3cSopenharmony_ci    KEY_STAR = 2010,
7323b3eb3cSopenharmony_ci    KEY_POUND = 2011,
7423b3eb3cSopenharmony_ci    KEY_DPAD_UP = 2012,
7523b3eb3cSopenharmony_ci    KEY_DPAD_DOWN = 2013,
7623b3eb3cSopenharmony_ci    KEY_DPAD_LEFT = 2014,
7723b3eb3cSopenharmony_ci    KEY_DPAD_RIGHT = 2015,
7823b3eb3cSopenharmony_ci    KEY_DPAD_CENTER = 2016,
7923b3eb3cSopenharmony_ci    KEY_A = 2017,
8023b3eb3cSopenharmony_ci    KEY_B = 2018,
8123b3eb3cSopenharmony_ci    KEY_C = 2019,
8223b3eb3cSopenharmony_ci    KEY_D = 2020,
8323b3eb3cSopenharmony_ci    KEY_E = 2021,
8423b3eb3cSopenharmony_ci    KEY_F = 2022,
8523b3eb3cSopenharmony_ci    KEY_G = 2023,
8623b3eb3cSopenharmony_ci    KEY_H = 2024,
8723b3eb3cSopenharmony_ci    KEY_I = 2025,
8823b3eb3cSopenharmony_ci    KEY_J = 2026,
8923b3eb3cSopenharmony_ci    KEY_K = 2027,
9023b3eb3cSopenharmony_ci    KEY_L = 2028,
9123b3eb3cSopenharmony_ci    KEY_M = 2029,
9223b3eb3cSopenharmony_ci    KEY_N = 2030,
9323b3eb3cSopenharmony_ci    KEY_O = 2031,
9423b3eb3cSopenharmony_ci    KEY_P = 2032,
9523b3eb3cSopenharmony_ci    KEY_Q = 2033,
9623b3eb3cSopenharmony_ci    KEY_R = 2034,
9723b3eb3cSopenharmony_ci    KEY_S = 2035,
9823b3eb3cSopenharmony_ci    KEY_T = 2036,
9923b3eb3cSopenharmony_ci    KEY_U = 2037,
10023b3eb3cSopenharmony_ci    KEY_V = 2038,
10123b3eb3cSopenharmony_ci    KEY_W = 2039,
10223b3eb3cSopenharmony_ci    KEY_X = 2040,
10323b3eb3cSopenharmony_ci    KEY_Y = 2041,
10423b3eb3cSopenharmony_ci    KEY_Z = 2042,
10523b3eb3cSopenharmony_ci    KEY_COMMA = 2043,
10623b3eb3cSopenharmony_ci    KEY_PERIOD = 2044,
10723b3eb3cSopenharmony_ci    KEY_ALT_LEFT = 2045,
10823b3eb3cSopenharmony_ci    KEY_ALT_RIGHT = 2046,
10923b3eb3cSopenharmony_ci    KEY_SHIFT_LEFT = 2047,
11023b3eb3cSopenharmony_ci    KEY_SHIFT_RIGHT = 2048,
11123b3eb3cSopenharmony_ci    KEY_TAB = 2049,
11223b3eb3cSopenharmony_ci    KEY_SPACE = 2050,
11323b3eb3cSopenharmony_ci    KEY_SYM = 2051,
11423b3eb3cSopenharmony_ci    KEY_EXPLORER = 2052,
11523b3eb3cSopenharmony_ci    KEY_ENVELOPE = 2053,
11623b3eb3cSopenharmony_ci    KEY_ENTER = 2054,
11723b3eb3cSopenharmony_ci    KEY_DEL = 2055,
11823b3eb3cSopenharmony_ci    KEY_GRAVE = 2056,
11923b3eb3cSopenharmony_ci    KEY_MINUS = 2057,
12023b3eb3cSopenharmony_ci    KEY_EQUALS = 2058,
12123b3eb3cSopenharmony_ci    KEY_LEFT_BRACKET = 2059,
12223b3eb3cSopenharmony_ci    KEY_RIGHT_BRACKET = 2060,
12323b3eb3cSopenharmony_ci    KEY_BACKSLASH = 2061,
12423b3eb3cSopenharmony_ci    KEY_SEMICOLON = 2062,
12523b3eb3cSopenharmony_ci    KEY_APOSTROPHE = 2063,
12623b3eb3cSopenharmony_ci    KEY_SLASH = 2064,
12723b3eb3cSopenharmony_ci    KEY_AT = 2065,
12823b3eb3cSopenharmony_ci    KEY_PLUS = 2066,
12923b3eb3cSopenharmony_ci    KEY_MENU = 2067,
13023b3eb3cSopenharmony_ci    KEY_PAGE_UP = 2068,
13123b3eb3cSopenharmony_ci    KEY_PAGE_DOWN = 2069,
13223b3eb3cSopenharmony_ci    KEY_ESCAPE = 2070,
13323b3eb3cSopenharmony_ci    KEY_FORWARD_DEL = 2071,
13423b3eb3cSopenharmony_ci    KEY_CTRL_LEFT = 2072,
13523b3eb3cSopenharmony_ci    KEY_CTRL_RIGHT = 2073,
13623b3eb3cSopenharmony_ci    KEY_CAPS_LOCK = 2074,
13723b3eb3cSopenharmony_ci    KEY_SCROLL_LOCK = 2075,
13823b3eb3cSopenharmony_ci    KEY_META_LEFT = 2076,
13923b3eb3cSopenharmony_ci    KEY_META_RIGHT = 2077,
14023b3eb3cSopenharmony_ci    KEY_FUNCTION = 2078,
14123b3eb3cSopenharmony_ci    KEY_SYSRQ = 2079,
14223b3eb3cSopenharmony_ci    KEY_BREAK = 2080,
14323b3eb3cSopenharmony_ci    KEY_MOVE_HOME = 2081,
14423b3eb3cSopenharmony_ci    KEY_MOVE_END = 2082,
14523b3eb3cSopenharmony_ci    KEY_INSERT = 2083,
14623b3eb3cSopenharmony_ci    KEY_FORWARD = 2084,
14723b3eb3cSopenharmony_ci    KEY_MEDIA_PLAY = 2085,
14823b3eb3cSopenharmony_ci    KEY_MEDIA_PAUSE = 2086,
14923b3eb3cSopenharmony_ci    KEY_MEDIA_CLOSE = 2087,
15023b3eb3cSopenharmony_ci    KEY_MEDIA_EJECT = 2088,
15123b3eb3cSopenharmony_ci    KEY_MEDIA_RECORD = 2089,
15223b3eb3cSopenharmony_ci    KEY_F1 = 2090,
15323b3eb3cSopenharmony_ci    KEY_F2 = 2091,
15423b3eb3cSopenharmony_ci    KEY_F3 = 2092,
15523b3eb3cSopenharmony_ci    KEY_F4 = 2093,
15623b3eb3cSopenharmony_ci    KEY_F5 = 2094,
15723b3eb3cSopenharmony_ci    KEY_F6 = 2095,
15823b3eb3cSopenharmony_ci    KEY_F7 = 2096,
15923b3eb3cSopenharmony_ci    KEY_F8 = 2097,
16023b3eb3cSopenharmony_ci    KEY_F9 = 2098,
16123b3eb3cSopenharmony_ci    KEY_F10 = 2099,
16223b3eb3cSopenharmony_ci    KEY_F11 = 2100,
16323b3eb3cSopenharmony_ci    KEY_F12 = 2101,
16423b3eb3cSopenharmony_ci    KEY_NUM_LOCK = 2102,
16523b3eb3cSopenharmony_ci    KEY_NUMPAD_0 = 2103,
16623b3eb3cSopenharmony_ci    KEY_NUMPAD_1 = 2104,
16723b3eb3cSopenharmony_ci    KEY_NUMPAD_2 = 2105,
16823b3eb3cSopenharmony_ci    KEY_NUMPAD_3 = 2106,
16923b3eb3cSopenharmony_ci    KEY_NUMPAD_4 = 2107,
17023b3eb3cSopenharmony_ci    KEY_NUMPAD_5 = 2108,
17123b3eb3cSopenharmony_ci    KEY_NUMPAD_6 = 2109,
17223b3eb3cSopenharmony_ci    KEY_NUMPAD_7 = 2110,
17323b3eb3cSopenharmony_ci    KEY_NUMPAD_8 = 2111,
17423b3eb3cSopenharmony_ci    KEY_NUMPAD_9 = 2112,
17523b3eb3cSopenharmony_ci    KEY_NUMPAD_DIVIDE = 2113,
17623b3eb3cSopenharmony_ci    KEY_NUMPAD_MULTIPLY = 2114,
17723b3eb3cSopenharmony_ci    KEY_NUMPAD_SUBTRACT = 2115,
17823b3eb3cSopenharmony_ci    KEY_NUMPAD_ADD = 2116,
17923b3eb3cSopenharmony_ci    KEY_NUMPAD_DOT = 2117,
18023b3eb3cSopenharmony_ci    KEY_NUMPAD_COMMA = 2118,
18123b3eb3cSopenharmony_ci    KEY_NUMPAD_ENTER = 2119,
18223b3eb3cSopenharmony_ci    KEY_NUMPAD_EQUALS = 2120,
18323b3eb3cSopenharmony_ci    KEY_NUMPAD_LEFT_PAREN = 2121,
18423b3eb3cSopenharmony_ci    KEY_NUMPAD_RIGHT_PAREN = 2122,
18523b3eb3cSopenharmony_ci    KEY_VIRTUAL_MULTITASK = 2210,
18623b3eb3cSopenharmony_ci    KEY_SLEEP = 2600,
18723b3eb3cSopenharmony_ci    KEY_ZENKAKU_HANKAKU = 2601,
18823b3eb3cSopenharmony_ci    KEY_102ND = 2602,
18923b3eb3cSopenharmony_ci    KEY_RO = 2603,
19023b3eb3cSopenharmony_ci    KEY_KATAKANA = 2604,
19123b3eb3cSopenharmony_ci    KEY_HIRAGANA = 2605,
19223b3eb3cSopenharmony_ci    KEY_HENKAN = 2606,
19323b3eb3cSopenharmony_ci    KEY_KATAKANA_HIRAGANA = 2607,
19423b3eb3cSopenharmony_ci    KEY_MUHENKAN = 2608,
19523b3eb3cSopenharmony_ci    KEY_LINEFEED = 2609,
19623b3eb3cSopenharmony_ci    KEY_MACRO = 2610,
19723b3eb3cSopenharmony_ci    KEY_NUMPAD_PLUSMINUS = 2611,
19823b3eb3cSopenharmony_ci    KEY_SCALE = 2612,
19923b3eb3cSopenharmony_ci    KEY_HANGUEL = 2613,
20023b3eb3cSopenharmony_ci    KEY_HANJA = 2614,
20123b3eb3cSopenharmony_ci    KEY_YEN = 2615,
20223b3eb3cSopenharmony_ci    KEY_STOP = 2616,
20323b3eb3cSopenharmony_ci    KEY_AGAIN = 2617,
20423b3eb3cSopenharmony_ci    KEY_PROPS = 2618,
20523b3eb3cSopenharmony_ci    KEY_UNDO = 2619,
20623b3eb3cSopenharmony_ci    KEY_COPY = 2620,
20723b3eb3cSopenharmony_ci    KEY_OPEN = 2621,
20823b3eb3cSopenharmony_ci    KEY_PASTE = 2622,
20923b3eb3cSopenharmony_ci    KEY_FIND = 2623,
21023b3eb3cSopenharmony_ci    KEY_CUT = 2624,
21123b3eb3cSopenharmony_ci    KEY_HELP = 2625,
21223b3eb3cSopenharmony_ci    KEY_CALC = 2626,
21323b3eb3cSopenharmony_ci    KEY_FILE = 2627,
21423b3eb3cSopenharmony_ci    KEY_BOOKMARKS = 2628,
21523b3eb3cSopenharmony_ci    KEY_NEXT = 2629,
21623b3eb3cSopenharmony_ci    KEY_PLAYPAUSE = 2630,
21723b3eb3cSopenharmony_ci    KEY_PREVIOUS = 2631,
21823b3eb3cSopenharmony_ci    KEY_STOPCD = 2632,
21923b3eb3cSopenharmony_ci    KEY_CONFIG = 2634,
22023b3eb3cSopenharmony_ci    KEY_REFRESH = 2635,
22123b3eb3cSopenharmony_ci    KEY_EXIT = 2636,
22223b3eb3cSopenharmony_ci    KEY_EDIT = 2637,
22323b3eb3cSopenharmony_ci    KEY_SCROLLUP = 2638,
22423b3eb3cSopenharmony_ci    KEY_SCROLLDOWN = 2639,
22523b3eb3cSopenharmony_ci    KEY_NEW = 2640,
22623b3eb3cSopenharmony_ci    KEY_REDO = 2641,
22723b3eb3cSopenharmony_ci    KEY_CLOSE = 2642,
22823b3eb3cSopenharmony_ci    KEY_PLAY = 2643,
22923b3eb3cSopenharmony_ci    KEY_BASSBOOST = 2644,
23023b3eb3cSopenharmony_ci    KEY_PRINT = 2645,
23123b3eb3cSopenharmony_ci    KEY_CHAT = 2646,
23223b3eb3cSopenharmony_ci    KEY_FINANCE = 2647,
23323b3eb3cSopenharmony_ci    KEY_CANCEL = 2648,
23423b3eb3cSopenharmony_ci    KEY_KBDILLUM_TOGGLE = 2649,
23523b3eb3cSopenharmony_ci    KEY_KBDILLUM_DOWN = 2650,
23623b3eb3cSopenharmony_ci    KEY_KBDILLUM_UP = 2651,
23723b3eb3cSopenharmony_ci    KEY_SEND = 2652,
23823b3eb3cSopenharmony_ci    KEY_REPLY = 2653,
23923b3eb3cSopenharmony_ci    KEY_FORWARDMAIL = 2654,
24023b3eb3cSopenharmony_ci    KEY_SAVE = 2655,
24123b3eb3cSopenharmony_ci    KEY_DOCUMENTS = 2656,
24223b3eb3cSopenharmony_ci    KEY_VIDEO_NEXT = 2657,
24323b3eb3cSopenharmony_ci    KEY_VIDEO_PREV = 2658,
24423b3eb3cSopenharmony_ci    KEY_BRIGHTNESS_CYCLE = 2659,
24523b3eb3cSopenharmony_ci    KEY_BRIGHTNESS_ZERO = 2660,
24623b3eb3cSopenharmony_ci    KEY_DISPLAY_OFF = 2661,
24723b3eb3cSopenharmony_ci    KEY_BTN_MISC = 2662,
24823b3eb3cSopenharmony_ci    KEY_GOTO = 2663,
24923b3eb3cSopenharmony_ci    KEY_INFO = 2664,
25023b3eb3cSopenharmony_ci    KEY_PROGRAM = 2665,
25123b3eb3cSopenharmony_ci    KEY_PVR = 2666,
25223b3eb3cSopenharmony_ci    KEY_SUBTITLE = 2667,
25323b3eb3cSopenharmony_ci    KEY_FULL_SCREEN = 2668,
25423b3eb3cSopenharmony_ci    KEY_KEYBOARD = 2669,
25523b3eb3cSopenharmony_ci    KEY_ASPECT_RATIO = 2670,
25623b3eb3cSopenharmony_ci    KEY_PC = 2671,
25723b3eb3cSopenharmony_ci    KEY_TV = 2672,
25823b3eb3cSopenharmony_ci    KEY_TV2 = 2673,
25923b3eb3cSopenharmony_ci    KEY_VCR = 2674,
26023b3eb3cSopenharmony_ci    KEY_VCR2 = 2675,
26123b3eb3cSopenharmony_ci    KEY_SAT = 2676,
26223b3eb3cSopenharmony_ci    KEY_CD = 2677,
26323b3eb3cSopenharmony_ci    KEY_TAPE = 2678,
26423b3eb3cSopenharmony_ci    KEY_TUNER = 2679,
26523b3eb3cSopenharmony_ci    KEY_PLAYER = 2680,
26623b3eb3cSopenharmony_ci    KEY_DVD = 2681,
26723b3eb3cSopenharmony_ci    KEY_AUDIO = 2682,
26823b3eb3cSopenharmony_ci    KEY_VIDEO = 2683,
26923b3eb3cSopenharmony_ci    KEY_MEMO = 2684,
27023b3eb3cSopenharmony_ci    KEY_CALENDAR = 2685,
27123b3eb3cSopenharmony_ci    KEY_RED = 2686,
27223b3eb3cSopenharmony_ci    KEY_GREEN = 2687,
27323b3eb3cSopenharmony_ci    KEY_YELLOW = 2688,
27423b3eb3cSopenharmony_ci    KEY_BLUE = 2689,
27523b3eb3cSopenharmony_ci    KEY_CHANNELUP = 2690,
27623b3eb3cSopenharmony_ci    KEY_CHANNELDOWN = 2691,
27723b3eb3cSopenharmony_ci    KEY_LAST = 2692,
27823b3eb3cSopenharmony_ci    KEY_RESTART = 2693,
27923b3eb3cSopenharmony_ci    KEY_SLOW = 2694,
28023b3eb3cSopenharmony_ci    KEY_SHUFFLE = 2695,
28123b3eb3cSopenharmony_ci    KEY_VIDEOPHONE = 2696,
28223b3eb3cSopenharmony_ci    KEY_GAMES = 2697,
28323b3eb3cSopenharmony_ci    KEY_ZOOMIN = 2698,
28423b3eb3cSopenharmony_ci    KEY_ZOOMOUT = 2699,
28523b3eb3cSopenharmony_ci    KEY_ZOOMRESET = 2700,
28623b3eb3cSopenharmony_ci    KEY_WORDPROCESSOR = 2701,
28723b3eb3cSopenharmony_ci    KEY_EDITOR = 2702,
28823b3eb3cSopenharmony_ci    KEY_SPREADSHEET = 2703,
28923b3eb3cSopenharmony_ci    KEY_GRAPHICSEDITOR = 2704,
29023b3eb3cSopenharmony_ci    KEY_PRESENTATION = 2705,
29123b3eb3cSopenharmony_ci    KEY_DATABASE = 2706,
29223b3eb3cSopenharmony_ci    KEY_NEWS = 2707,
29323b3eb3cSopenharmony_ci    KEY_VOICEMAIL = 2708,
29423b3eb3cSopenharmony_ci    KEY_ADDRESSBOOK = 2709,
29523b3eb3cSopenharmony_ci    KEY_MESSENGER = 2710,
29623b3eb3cSopenharmony_ci    KEY_BRIGHTNESS_TOGGLE = 2711,
29723b3eb3cSopenharmony_ci    KEY_SPELLCHECK = 2712,
29823b3eb3cSopenharmony_ci    KEY_COFFEE = 2713,
29923b3eb3cSopenharmony_ci    KEY_MEDIA_REPEAT = 2714,
30023b3eb3cSopenharmony_ci    KEY_IMAGES = 2715,
30123b3eb3cSopenharmony_ci    KEY_BUTTONCONFIG = 2716,
30223b3eb3cSopenharmony_ci    KEY_TASKMANAGER = 2717,
30323b3eb3cSopenharmony_ci    KEY_JOURNAL = 2718,
30423b3eb3cSopenharmony_ci    KEY_CONTROLPANEL = 2719,
30523b3eb3cSopenharmony_ci    KEY_APPSELECT = 2720,
30623b3eb3cSopenharmony_ci    KEY_SCREENSAVER = 2721,
30723b3eb3cSopenharmony_ci    KEY_ASSISTANT = 2722,
30823b3eb3cSopenharmony_ci    KEY_KBD_LAYOUT_NEXT = 2723,
30923b3eb3cSopenharmony_ci    KEY_BRIGHTNESS_MIN = 2724,
31023b3eb3cSopenharmony_ci    KEY_BRIGHTNESS_MAX = 2725,
31123b3eb3cSopenharmony_ci    KEY_KBDINPUTASSIST_PREV = 2726,
31223b3eb3cSopenharmony_ci    KEY_KBDINPUTASSIST_NEXT = 2727,
31323b3eb3cSopenharmony_ci    KEY_KBDINPUTASSIST_PREVGROUP = 2728,
31423b3eb3cSopenharmony_ci    KEY_KBDINPUTASSIST_NEXTGROUP = 2729,
31523b3eb3cSopenharmony_ci    KEY_KBDINPUTASSIST_ACCEPT = 2730,
31623b3eb3cSopenharmony_ci    KEY_KBDINPUTASSIST_CANCEL = 2731,
31723b3eb3cSopenharmony_ci    KEY_FRONT = 2800,
31823b3eb3cSopenharmony_ci    KEY_SETUP = 2801,
31923b3eb3cSopenharmony_ci    KEY_WAKEUP = 2802,
32023b3eb3cSopenharmony_ci    KEY_SENDFILE = 2803,
32123b3eb3cSopenharmony_ci    KEY_DELETEFILE = 2804,
32223b3eb3cSopenharmony_ci    KEY_XFER = 2805,
32323b3eb3cSopenharmony_ci    KEY_PROG1 = 2806,
32423b3eb3cSopenharmony_ci    KEY_PROG2 = 2807,
32523b3eb3cSopenharmony_ci    KEY_MSDOS = 2808,
32623b3eb3cSopenharmony_ci    KEY_SCREENLOCK = 2809,
32723b3eb3cSopenharmony_ci    KEY_DIRECTION_ROTATE_DISPLAY = 2810,
32823b3eb3cSopenharmony_ci    KEY_CYCLEWINDOWS = 2811,
32923b3eb3cSopenharmony_ci    KEY_COMPUTER = 2812,
33023b3eb3cSopenharmony_ci    KEY_EJECTCLOSECD = 2813,
33123b3eb3cSopenharmony_ci    KEY_ISO = 2814,
33223b3eb3cSopenharmony_ci    KEY_MOVE = 2815,
33323b3eb3cSopenharmony_ci    KEY_F13 = 2816,
33423b3eb3cSopenharmony_ci    KEY_F14 = 2817,
33523b3eb3cSopenharmony_ci    KEY_F15 = 2818,
33623b3eb3cSopenharmony_ci    KEY_F16 = 2819,
33723b3eb3cSopenharmony_ci    KEY_F17 = 2820,
33823b3eb3cSopenharmony_ci    KEY_F18 = 2821,
33923b3eb3cSopenharmony_ci    KEY_F19 = 2822,
34023b3eb3cSopenharmony_ci    KEY_F20 = 2823,
34123b3eb3cSopenharmony_ci    KEY_F21 = 2824,
34223b3eb3cSopenharmony_ci    KEY_F22 = 2825,
34323b3eb3cSopenharmony_ci    KEY_F23 = 2826,
34423b3eb3cSopenharmony_ci    KEY_F24 = 2827,
34523b3eb3cSopenharmony_ci    KEY_PROG3 = 2828,
34623b3eb3cSopenharmony_ci    KEY_PROG4 = 2829,
34723b3eb3cSopenharmony_ci    KEY_DASHBOARD = 2830,
34823b3eb3cSopenharmony_ci    KEY_SUSPEND = 2831,
34923b3eb3cSopenharmony_ci    KEY_HP = 2832,
35023b3eb3cSopenharmony_ci    KEY_SOUND = 2833,
35123b3eb3cSopenharmony_ci    KEY_QUESTION = 2834,
35223b3eb3cSopenharmony_ci    KEY_CONNECT = 2836,
35323b3eb3cSopenharmony_ci    KEY_SPORT = 2837,
35423b3eb3cSopenharmony_ci    KEY_SHOP = 2838,
35523b3eb3cSopenharmony_ci    KEY_ALTERASE = 2839,
35623b3eb3cSopenharmony_ci    KEY_SWITCHVIDEOMODE = 2841,
35723b3eb3cSopenharmony_ci    KEY_BATTERY = 2842,
35823b3eb3cSopenharmony_ci    KEY_BLUETOOTH = 2843,
35923b3eb3cSopenharmony_ci    KEY_WLAN = 2844,
36023b3eb3cSopenharmony_ci    KEY_UWB = 2845,
36123b3eb3cSopenharmony_ci    KEY_WWAN_WIMAX = 2846,
36223b3eb3cSopenharmony_ci    KEY_RFKILL = 2847,
36323b3eb3cSopenharmony_ci    KEY_CHANNEL = 3001,
36423b3eb3cSopenharmony_ci    KEY_BTN_0 = 3100,
36523b3eb3cSopenharmony_ci    KEY_BTN_1 = 3101,
36623b3eb3cSopenharmony_ci    KEY_BTN_2 = 3102,
36723b3eb3cSopenharmony_ci    KEY_BTN_3 = 3103,
36823b3eb3cSopenharmony_ci    KEY_BTN_4 = 3104,
36923b3eb3cSopenharmony_ci    KEY_BTN_5 = 3105,
37023b3eb3cSopenharmony_ci    KEY_BTN_6 = 3106,
37123b3eb3cSopenharmony_ci    KEY_BTN_7 = 3107,
37223b3eb3cSopenharmony_ci    KEY_BTN_8 = 3108,
37323b3eb3cSopenharmony_ci    KEY_BTN_9 = 3109,
37423b3eb3cSopenharmony_ci} OH_NativeXComponent_KeyCode;
37523b3eb3cSopenharmony_ci
37623b3eb3cSopenharmony_ci/**
37723b3eb3cSopenharmony_ci * @brief Represents the key event action.
37823b3eb3cSopenharmony_ci *
37923b3eb3cSopenharmony_ci * @since 10
38023b3eb3cSopenharmony_ci * @version 1.0
38123b3eb3cSopenharmony_ci */
38223b3eb3cSopenharmony_citypedef enum {
38323b3eb3cSopenharmony_ci    OH_NATIVEXCOMPONENT_KEY_ACTION_UNKNOWN = -1,
38423b3eb3cSopenharmony_ci    OH_NATIVEXCOMPONENT_KEY_ACTION_DOWN = 0,
38523b3eb3cSopenharmony_ci    OH_NATIVEXCOMPONENT_KEY_ACTION_UP,
38623b3eb3cSopenharmony_ci} OH_NativeXComponent_KeyAction;
38723b3eb3cSopenharmony_ci
38823b3eb3cSopenharmony_ci#ifdef __cplusplus
38923b3eb3cSopenharmony_ci};
39023b3eb3cSopenharmony_ci#endif
39123b3eb3cSopenharmony_ci#endif // _NATIVE_INTERFACE_XCOMPONENT_KEY_EVENT_H_
392