123b3eb3cSopenharmony_ci/* 223b3eb3cSopenharmony_ci * Copyright (c) 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#ifndef FOUNDATION_ACE_ADAPTER_PREVIEW_EXTERNAL_MULTIMODALINPUT_KEY_EVENT_H 1723b3eb3cSopenharmony_ci#define FOUNDATION_ACE_ADAPTER_PREVIEW_EXTERNAL_MULTIMODALINPUT_KEY_EVENT_H 1823b3eb3cSopenharmony_ci 1923b3eb3cSopenharmony_ci#include <vector> 2023b3eb3cSopenharmony_ci 2123b3eb3cSopenharmony_ci#include "adapter/preview/external/multimodalinput/common_type.h" 2223b3eb3cSopenharmony_ci 2323b3eb3cSopenharmony_cinamespace OHOS { 2423b3eb3cSopenharmony_cinamespace MMI { 2523b3eb3cSopenharmony_ci 2623b3eb3cSopenharmony_cienum class KeyCode : int32_t { 2723b3eb3cSopenharmony_ci KEY_UNKNOWN = -1, 2823b3eb3cSopenharmony_ci KEY_FN = 0, // New 2923b3eb3cSopenharmony_ci KEY_HOME = 1, 3023b3eb3cSopenharmony_ci KEY_BACK = 2, 3123b3eb3cSopenharmony_ci KEY_CALL = 3, 3223b3eb3cSopenharmony_ci KEY_ENDCALL = 4, 3323b3eb3cSopenharmony_ci KEY_CLEAR = 5, 3423b3eb3cSopenharmony_ci KEY_HEADSETHOOK = 6, 3523b3eb3cSopenharmony_ci KEY_FOCUS = 7, 3623b3eb3cSopenharmony_ci KEY_NOTIFICATION = 8, 3723b3eb3cSopenharmony_ci KEY_SEARCH = 9, 3823b3eb3cSopenharmony_ci KEY_MEDIA_PLAY_PAUSE = 10, 3923b3eb3cSopenharmony_ci KEY_MEDIA_STOP = 11, 4023b3eb3cSopenharmony_ci KEY_MEDIA_NEXT = 12, 4123b3eb3cSopenharmony_ci KEY_MEDIA_PREVIOUS = 13, 4223b3eb3cSopenharmony_ci KEY_MEDIA_REWIND = 14, 4323b3eb3cSopenharmony_ci KEY_MEDIA_FAST_FORWARD = 15, 4423b3eb3cSopenharmony_ci KEY_VOLUME_UP = 16, 4523b3eb3cSopenharmony_ci KEY_VOLUME_DOWN = 17, 4623b3eb3cSopenharmony_ci KEY_POWER = 18, 4723b3eb3cSopenharmony_ci KEY_CAMERA = 19, 4823b3eb3cSopenharmony_ci KEY_VOICE_ASSISTANT = 20, 4923b3eb3cSopenharmony_ci KEY_CUSTOM1 = 21, 5023b3eb3cSopenharmony_ci KEY_VOLUME_MUTE = 22, // New 5123b3eb3cSopenharmony_ci KEY_MUTE = 23, // New 5223b3eb3cSopenharmony_ci KEY_BRIGHTNESS_UP = 40, 5323b3eb3cSopenharmony_ci KEY_BRIGHTNESS_DOWN = 41, 5423b3eb3cSopenharmony_ci KEY_WEAR_1 = 1001, 5523b3eb3cSopenharmony_ci KEY_0 = 2000, 5623b3eb3cSopenharmony_ci KEY_1 = 2001, 5723b3eb3cSopenharmony_ci KEY_2 = 2002, 5823b3eb3cSopenharmony_ci KEY_3 = 2003, 5923b3eb3cSopenharmony_ci KEY_4 = 2004, 6023b3eb3cSopenharmony_ci KEY_5 = 2005, 6123b3eb3cSopenharmony_ci KEY_6 = 2006, 6223b3eb3cSopenharmony_ci KEY_7 = 2007, 6323b3eb3cSopenharmony_ci KEY_8 = 2008, 6423b3eb3cSopenharmony_ci KEY_9 = 2009, 6523b3eb3cSopenharmony_ci KEY_STAR = 2010, 6623b3eb3cSopenharmony_ci KEY_POUND = 2011, 6723b3eb3cSopenharmony_ci KEY_DPAD_UP = 2012, 6823b3eb3cSopenharmony_ci KEY_DPAD_DOWN = 2013, 6923b3eb3cSopenharmony_ci KEY_DPAD_LEFT = 2014, 7023b3eb3cSopenharmony_ci KEY_DPAD_RIGHT = 2015, 7123b3eb3cSopenharmony_ci KEY_DPAD_CENTER = 2016, 7223b3eb3cSopenharmony_ci KEY_A = 2017, 7323b3eb3cSopenharmony_ci KEY_B = 2018, 7423b3eb3cSopenharmony_ci KEY_C = 2019, 7523b3eb3cSopenharmony_ci KEY_D = 2020, 7623b3eb3cSopenharmony_ci KEY_E = 2021, 7723b3eb3cSopenharmony_ci KEY_F = 2022, 7823b3eb3cSopenharmony_ci KEY_G = 2023, 7923b3eb3cSopenharmony_ci KEY_H = 2024, 8023b3eb3cSopenharmony_ci KEY_I = 2025, 8123b3eb3cSopenharmony_ci KEY_J = 2026, 8223b3eb3cSopenharmony_ci KEY_K = 2027, 8323b3eb3cSopenharmony_ci KEY_L = 2028, 8423b3eb3cSopenharmony_ci KEY_M = 2029, 8523b3eb3cSopenharmony_ci KEY_N = 2030, 8623b3eb3cSopenharmony_ci KEY_O = 2031, 8723b3eb3cSopenharmony_ci KEY_P = 2032, 8823b3eb3cSopenharmony_ci KEY_Q = 2033, 8923b3eb3cSopenharmony_ci KEY_R = 2034, 9023b3eb3cSopenharmony_ci KEY_S = 2035, 9123b3eb3cSopenharmony_ci KEY_T = 2036, 9223b3eb3cSopenharmony_ci KEY_U = 2037, 9323b3eb3cSopenharmony_ci KEY_V = 2038, 9423b3eb3cSopenharmony_ci KEY_W = 2039, 9523b3eb3cSopenharmony_ci KEY_X = 2040, 9623b3eb3cSopenharmony_ci KEY_Y = 2041, 9723b3eb3cSopenharmony_ci KEY_Z = 2042, 9823b3eb3cSopenharmony_ci KEY_COMMA = 2043, 9923b3eb3cSopenharmony_ci KEY_PERIOD = 2044, 10023b3eb3cSopenharmony_ci KEY_ALT_LEFT = 2045, 10123b3eb3cSopenharmony_ci KEY_ALT_RIGHT = 2046, 10223b3eb3cSopenharmony_ci KEY_SHIFT_LEFT = 2047, 10323b3eb3cSopenharmony_ci KEY_SHIFT_RIGHT = 2048, 10423b3eb3cSopenharmony_ci KEY_TAB = 2049, 10523b3eb3cSopenharmony_ci KEY_SPACE = 2050, 10623b3eb3cSopenharmony_ci KEY_SYM = 2051, 10723b3eb3cSopenharmony_ci KEY_EXPLORER = 2052, 10823b3eb3cSopenharmony_ci KEY_ENVELOPE = 2053, 10923b3eb3cSopenharmony_ci KEY_ENTER = 2054, 11023b3eb3cSopenharmony_ci KEY_DEL = 2055, 11123b3eb3cSopenharmony_ci KEY_GRAVE = 2056, 11223b3eb3cSopenharmony_ci KEY_MINUS = 2057, 11323b3eb3cSopenharmony_ci KEY_EQUALS = 2058, 11423b3eb3cSopenharmony_ci KEY_LEFT_BRACKET = 2059, 11523b3eb3cSopenharmony_ci KEY_RIGHT_BRACKET = 2060, 11623b3eb3cSopenharmony_ci KEY_BACKSLASH = 2061, 11723b3eb3cSopenharmony_ci KEY_SEMICOLON = 2062, 11823b3eb3cSopenharmony_ci KEY_APOSTROPHE = 2063, 11923b3eb3cSopenharmony_ci KEY_SLASH = 2064, 12023b3eb3cSopenharmony_ci KEY_AT = 2065, 12123b3eb3cSopenharmony_ci KEY_PLUS = 2066, 12223b3eb3cSopenharmony_ci KEY_MENU = 2067, 12323b3eb3cSopenharmony_ci KEY_PAGE_UP = 2068, 12423b3eb3cSopenharmony_ci KEY_PAGE_DOWN = 2069, 12523b3eb3cSopenharmony_ci KEY_ESCAPE = 2070, 12623b3eb3cSopenharmony_ci KEY_FORWARD_DEL = 2071, 12723b3eb3cSopenharmony_ci KEY_CTRL_LEFT = 2072, 12823b3eb3cSopenharmony_ci KEY_CTRL_RIGHT = 2073, 12923b3eb3cSopenharmony_ci KEY_CAPS_LOCK = 2074, 13023b3eb3cSopenharmony_ci KEY_SCROLL_LOCK = 2075, 13123b3eb3cSopenharmony_ci KEY_META_LEFT = 2076, 13223b3eb3cSopenharmony_ci KEY_META_RIGHT = 2077, 13323b3eb3cSopenharmony_ci KEY_FUNCTION = 2078, 13423b3eb3cSopenharmony_ci KEY_SYSRQ = 2079, 13523b3eb3cSopenharmony_ci KEY_BREAK = 2080, 13623b3eb3cSopenharmony_ci KEY_MOVE_HOME = 2081, 13723b3eb3cSopenharmony_ci KEY_MOVE_END = 2082, 13823b3eb3cSopenharmony_ci KEY_INSERT = 2083, 13923b3eb3cSopenharmony_ci KEY_FORWARD = 2084, 14023b3eb3cSopenharmony_ci KEY_MEDIA_PLAY = 2085, 14123b3eb3cSopenharmony_ci KEY_MEDIA_PAUSE = 2086, 14223b3eb3cSopenharmony_ci KEY_MEDIA_CLOSE = 2087, 14323b3eb3cSopenharmony_ci KEY_MEDIA_EJECT = 2088, 14423b3eb3cSopenharmony_ci KEY_MEDIA_RECORD = 2089, 14523b3eb3cSopenharmony_ci KEY_F1 = 2090, 14623b3eb3cSopenharmony_ci KEY_F2 = 2091, 14723b3eb3cSopenharmony_ci KEY_F3 = 2092, 14823b3eb3cSopenharmony_ci KEY_F4 = 2093, 14923b3eb3cSopenharmony_ci KEY_F5 = 2094, 15023b3eb3cSopenharmony_ci KEY_F6 = 2095, 15123b3eb3cSopenharmony_ci KEY_F7 = 2096, 15223b3eb3cSopenharmony_ci KEY_F8 = 2097, 15323b3eb3cSopenharmony_ci KEY_F9 = 2098, 15423b3eb3cSopenharmony_ci KEY_F10 = 2099, 15523b3eb3cSopenharmony_ci KEY_F11 = 2100, 15623b3eb3cSopenharmony_ci KEY_F12 = 2101, 15723b3eb3cSopenharmony_ci KEY_NUM_LOCK = 2102, 15823b3eb3cSopenharmony_ci KEY_NUMPAD_0 = 2103, 15923b3eb3cSopenharmony_ci KEY_NUMPAD_1 = 2104, 16023b3eb3cSopenharmony_ci KEY_NUMPAD_2 = 2105, 16123b3eb3cSopenharmony_ci KEY_NUMPAD_3 = 2106, 16223b3eb3cSopenharmony_ci KEY_NUMPAD_4 = 2107, 16323b3eb3cSopenharmony_ci KEY_NUMPAD_5 = 2108, 16423b3eb3cSopenharmony_ci KEY_NUMPAD_6 = 2109, 16523b3eb3cSopenharmony_ci KEY_NUMPAD_7 = 2110, 16623b3eb3cSopenharmony_ci KEY_NUMPAD_8 = 2111, 16723b3eb3cSopenharmony_ci KEY_NUMPAD_9 = 2112, 16823b3eb3cSopenharmony_ci KEY_NUMPAD_DIVIDE = 2113, 16923b3eb3cSopenharmony_ci KEY_NUMPAD_MULTIPLY = 2114, 17023b3eb3cSopenharmony_ci KEY_NUMPAD_SUBTRACT = 2115, 17123b3eb3cSopenharmony_ci KEY_NUMPAD_ADD = 2116, 17223b3eb3cSopenharmony_ci KEY_NUMPAD_DOT = 2117, 17323b3eb3cSopenharmony_ci KEY_NUMPAD_COMMA = 2118, 17423b3eb3cSopenharmony_ci KEY_NUMPAD_ENTER = 2119, 17523b3eb3cSopenharmony_ci KEY_NUMPAD_EQUALS = 2120, 17623b3eb3cSopenharmony_ci KEY_NUMPAD_LEFT_PAREN = 2121, 17723b3eb3cSopenharmony_ci KEY_NUMPAD_RIGHT_PAREN = 2122, 17823b3eb3cSopenharmony_ci // New Start 17923b3eb3cSopenharmony_ci KEY_VIRTUAL_MULTITASK = 2210, 18023b3eb3cSopenharmony_ci KEY_BUTTON_A = 2301, 18123b3eb3cSopenharmony_ci KEY_BUTTON_B = 2302, 18223b3eb3cSopenharmony_ci KEY_BUTTON_C = 2303, 18323b3eb3cSopenharmony_ci KEY_BUTTON_X = 2304, 18423b3eb3cSopenharmony_ci KEY_BUTTON_Y = 2305, 18523b3eb3cSopenharmony_ci KEY_BUTTON_Z = 2306, 18623b3eb3cSopenharmony_ci KEY_BUTTON_L1 = 2307, 18723b3eb3cSopenharmony_ci KEY_BUTTON_R1 = 2308, 18823b3eb3cSopenharmony_ci KEY_BUTTON_L2 = 2309, 18923b3eb3cSopenharmony_ci KEY_BUTTON_R2 = 2310, 19023b3eb3cSopenharmony_ci KEY_BUTTON_SELECT = 2311, 19123b3eb3cSopenharmony_ci KEY_BUTTON_START = 2312, 19223b3eb3cSopenharmony_ci KEY_BUTTON_MODE = 2313, 19323b3eb3cSopenharmony_ci KEY_BUTTON_THUMBL = 2314, 19423b3eb3cSopenharmony_ci KEY_BUTTON_THUMBR = 2315, 19523b3eb3cSopenharmony_ci KEY_BUTTON_TRIGGER = 2401, 19623b3eb3cSopenharmony_ci KEY_BUTTON_THUMB = 2402, 19723b3eb3cSopenharmony_ci KEY_BUTTON_THUMB2 = 2403, 19823b3eb3cSopenharmony_ci KEY_BUTTON_TOP = 2404, 19923b3eb3cSopenharmony_ci KEY_BUTTON_TOP2 = 2405, 20023b3eb3cSopenharmony_ci KEY_BUTTON_PINKIE = 2406, 20123b3eb3cSopenharmony_ci KEY_BUTTON_BASE1 = 2407, 20223b3eb3cSopenharmony_ci KEY_BUTTON_BASE2 = 2408, 20323b3eb3cSopenharmony_ci KEY_BUTTON_BASE3 = 2409, 20423b3eb3cSopenharmony_ci KEY_BUTTON_BASE4 = 2410, 20523b3eb3cSopenharmony_ci KEY_BUTTON_BASE5 = 2411, 20623b3eb3cSopenharmony_ci KEY_BUTTON_BASE6 = 2412, 20723b3eb3cSopenharmony_ci KEY_BUTTON_BASE7 = 2413, 20823b3eb3cSopenharmony_ci KEY_BUTTON_BASE8 = 2414, 20923b3eb3cSopenharmony_ci KEY_BUTTON_BASE9 = 2415, 21023b3eb3cSopenharmony_ci KEY_BUTTON_DEAD = 2416, 21123b3eb3cSopenharmony_ci KEY_SLEEP = 2600, 21223b3eb3cSopenharmony_ci KEY_ZENKAKU_HANKAKU = 2601, 21323b3eb3cSopenharmony_ci KEY_102ND = 2602, 21423b3eb3cSopenharmony_ci KEY_RO = 2603, 21523b3eb3cSopenharmony_ci KEY_KATAKANA = 2604, 21623b3eb3cSopenharmony_ci KEY_HIRAGANA = 2605, 21723b3eb3cSopenharmony_ci KEY_HENKAN = 2606, 21823b3eb3cSopenharmony_ci KEY_KATAKANA_HIRAGANA = 2607, 21923b3eb3cSopenharmony_ci KEY_MUHENKAN = 2608, 22023b3eb3cSopenharmony_ci KEY_LINEFEED = 2609, 22123b3eb3cSopenharmony_ci KEY_MACRO = 2610, 22223b3eb3cSopenharmony_ci KEY_NUMPAD_PLUSMINUS = 2611, 22323b3eb3cSopenharmony_ci KEY_SCALE = 2612, 22423b3eb3cSopenharmony_ci KEY_HANGUEL = 2613, 22523b3eb3cSopenharmony_ci KEY_HANJA = 2614, 22623b3eb3cSopenharmony_ci KEY_YEN = 2615, 22723b3eb3cSopenharmony_ci KEY_STOP = 2616, 22823b3eb3cSopenharmony_ci KEY_AGAIN = 2617, 22923b3eb3cSopenharmony_ci KEY_PROPS = 2618, 23023b3eb3cSopenharmony_ci KEY_UNDO = 2619, 23123b3eb3cSopenharmony_ci KEY_COPY = 2620, 23223b3eb3cSopenharmony_ci KEY_OPEN = 2621, 23323b3eb3cSopenharmony_ci KEY_PASTE = 2622, 23423b3eb3cSopenharmony_ci KEY_FIND = 2623, 23523b3eb3cSopenharmony_ci KEY_CUT = 2624, 23623b3eb3cSopenharmony_ci KEY_HELP = 2625, 23723b3eb3cSopenharmony_ci KEY_CALC = 2626, 23823b3eb3cSopenharmony_ci KEY_FILE = 2627, 23923b3eb3cSopenharmony_ci KEY_BOOKMARKS = 2628, 24023b3eb3cSopenharmony_ci KEY_NEXT = 2629, 24123b3eb3cSopenharmony_ci KEY_PLAYPAUSE = 2630, 24223b3eb3cSopenharmony_ci KEY_PREVIOUS = 2631, 24323b3eb3cSopenharmony_ci KEY_STOPCD = 2632, 24423b3eb3cSopenharmony_ci KEY_CONFIG = 2634, 24523b3eb3cSopenharmony_ci KEY_REFRESH = 2635, 24623b3eb3cSopenharmony_ci KEY_EXIT = 2636, 24723b3eb3cSopenharmony_ci KEY_EDIT = 2637, 24823b3eb3cSopenharmony_ci KEY_SCROLLUP = 2638, 24923b3eb3cSopenharmony_ci KEY_SCROLLDOWN = 2639, 25023b3eb3cSopenharmony_ci KEY_NEW = 2640, 25123b3eb3cSopenharmony_ci KEY_REDO = 2641, 25223b3eb3cSopenharmony_ci KEY_CLOSE = 2642, 25323b3eb3cSopenharmony_ci KEY_PLAY = 2643, 25423b3eb3cSopenharmony_ci KEY_BASSBOOST = 2644, 25523b3eb3cSopenharmony_ci KEY_PRINT = 2645, 25623b3eb3cSopenharmony_ci KEY_CHAT = 2646, 25723b3eb3cSopenharmony_ci KEY_FINANCE = 2647, 25823b3eb3cSopenharmony_ci KEY_CANCEL = 2648, 25923b3eb3cSopenharmony_ci KEY_KBDILLUM_TOGGLE = 2649, 26023b3eb3cSopenharmony_ci KEY_KBDILLUM_DOWN = 2650, 26123b3eb3cSopenharmony_ci KEY_KBDILLUM_UP = 2651, 26223b3eb3cSopenharmony_ci KEY_SEND = 2652, 26323b3eb3cSopenharmony_ci KEY_REPLY = 2653, 26423b3eb3cSopenharmony_ci KEY_FORWARDMAIL = 2654, 26523b3eb3cSopenharmony_ci KEY_SAVE = 2655, 26623b3eb3cSopenharmony_ci KEY_DOCUMENTS = 2656, 26723b3eb3cSopenharmony_ci KEY_VIDEO_NEXT = 2657, 26823b3eb3cSopenharmony_ci KEY_VIDEO_PREV = 2658, 26923b3eb3cSopenharmony_ci KEY_BRIGHTNESS_CYCLE = 2659, 27023b3eb3cSopenharmony_ci KEY_BRIGHTNESS_ZERO = 2660, 27123b3eb3cSopenharmony_ci KEY_DISPLAY_OFF = 2661, 27223b3eb3cSopenharmony_ci KEY_BTN_MISC = 2662, 27323b3eb3cSopenharmony_ci KEY_GOTO = 2663, 27423b3eb3cSopenharmony_ci KEY_INFO = 2664, 27523b3eb3cSopenharmony_ci KEY_PROGRAM = 2665, 27623b3eb3cSopenharmony_ci KEY_PVR = 2666, 27723b3eb3cSopenharmony_ci KEY_SUBTITLE = 2667, 27823b3eb3cSopenharmony_ci KEY_FULL_SCREEN = 2668, 27923b3eb3cSopenharmony_ci KEY_KEYBOARD = 2669, 28023b3eb3cSopenharmony_ci KEY_ASPECT_RATIO = 2670, 28123b3eb3cSopenharmony_ci KEY_PC = 2671, 28223b3eb3cSopenharmony_ci KEY_TV = 2672, 28323b3eb3cSopenharmony_ci KEY_TV2 = 2673, 28423b3eb3cSopenharmony_ci KEY_VCR = 2674, 28523b3eb3cSopenharmony_ci KEY_VCR2 = 2675, 28623b3eb3cSopenharmony_ci KEY_SAT = 2676, 28723b3eb3cSopenharmony_ci KEY_CD = 2677, 28823b3eb3cSopenharmony_ci KEY_TAPE = 2678, 28923b3eb3cSopenharmony_ci KEY_TUNER = 2679, 29023b3eb3cSopenharmony_ci KEY_PLAYER = 2680, 29123b3eb3cSopenharmony_ci KEY_DVD = 2681, 29223b3eb3cSopenharmony_ci KEY_AUDIO = 2682, 29323b3eb3cSopenharmony_ci KEY_VIDEO = 2683, 29423b3eb3cSopenharmony_ci KEY_MEMO = 2684, 29523b3eb3cSopenharmony_ci KEY_CALENDAR = 2685, 29623b3eb3cSopenharmony_ci KEY_RED = 2686, 29723b3eb3cSopenharmony_ci KEY_GREEN = 2687, 29823b3eb3cSopenharmony_ci KEY_YELLOW = 2688, 29923b3eb3cSopenharmony_ci KEY_BLUE = 2689, 30023b3eb3cSopenharmony_ci KEY_CHANNELUP = 2690, 30123b3eb3cSopenharmony_ci KEY_CHANNELDOWN = 2691, 30223b3eb3cSopenharmony_ci KEY_LAST = 2692, 30323b3eb3cSopenharmony_ci KEY_RESTART = 2693, 30423b3eb3cSopenharmony_ci KEY_SLOW = 2694, 30523b3eb3cSopenharmony_ci KEY_SHUFFLE = 2695, 30623b3eb3cSopenharmony_ci KEY_VIDEOPHONE = 2696, 30723b3eb3cSopenharmony_ci KEY_GAMES = 2697, 30823b3eb3cSopenharmony_ci KEY_ZOOMIN = 2698, 30923b3eb3cSopenharmony_ci KEY_ZOOMOUT = 2699, 31023b3eb3cSopenharmony_ci KEY_ZOOMRESET = 2700, 31123b3eb3cSopenharmony_ci KEY_WORDPROCESSOR = 2701, 31223b3eb3cSopenharmony_ci KEY_EDITOR = 2702, 31323b3eb3cSopenharmony_ci KEY_SPREADSHEET = 2703, 31423b3eb3cSopenharmony_ci KEY_GRAPHICSEDITOR = 2704, 31523b3eb3cSopenharmony_ci KEY_PRESENTATION = 2705, 31623b3eb3cSopenharmony_ci KEY_DATABASE = 2706, 31723b3eb3cSopenharmony_ci KEY_NEWS = 2707, 31823b3eb3cSopenharmony_ci KEY_VOICEMAIL = 2708, 31923b3eb3cSopenharmony_ci KEY_ADDRESSBOOK = 2709, 32023b3eb3cSopenharmony_ci KEY_MESSENGER = 2710, 32123b3eb3cSopenharmony_ci KEY_BRIGHTNESS_TOGGLE = 2711, 32223b3eb3cSopenharmony_ci KEY_SPELLCHECK = 2712, 32323b3eb3cSopenharmony_ci KEY_COFFEE = 2713, 32423b3eb3cSopenharmony_ci KEY_MEDIA_REPEAT = 2714, 32523b3eb3cSopenharmony_ci KEY_IMAGES = 2715, 32623b3eb3cSopenharmony_ci KEY_BUTTONCONFIG = 2716, 32723b3eb3cSopenharmony_ci KEY_TASKMANAGER = 2717, 32823b3eb3cSopenharmony_ci KEY_JOURNAL = 2718, 32923b3eb3cSopenharmony_ci KEY_CONTROLPANEL = 2719, 33023b3eb3cSopenharmony_ci KEY_APPSELECT = 2720, 33123b3eb3cSopenharmony_ci KEY_SCREENSAVER = 2721, 33223b3eb3cSopenharmony_ci KEY_ASSISTANT = 2722, 33323b3eb3cSopenharmony_ci KEY_KBD_LAYOUT_NEXT = 2723, 33423b3eb3cSopenharmony_ci KEY_BRIGHTNESS_MIN = 2724, 33523b3eb3cSopenharmony_ci KEY_BRIGHTNESS_MAX = 2725, 33623b3eb3cSopenharmony_ci KEY_KBDINPUTASSIST_PREV = 2726, 33723b3eb3cSopenharmony_ci KEY_KBDINPUTASSIST_NEXT = 2727, 33823b3eb3cSopenharmony_ci KEY_KBDINPUTASSIST_PREVGROUP = 2728, 33923b3eb3cSopenharmony_ci KEY_KBDINPUTASSIST_NEXTGROUP = 2729, 34023b3eb3cSopenharmony_ci KEY_KBDINPUTASSIST_ACCEPT = 2730, 34123b3eb3cSopenharmony_ci KEY_KBDINPUTASSIST_CANCEL = 2731, 34223b3eb3cSopenharmony_ci KEY_FRONT = 2800, 34323b3eb3cSopenharmony_ci KEY_SETUP = 2801, 34423b3eb3cSopenharmony_ci KEY_WAKEUP = 2802, 34523b3eb3cSopenharmony_ci KEY_SENDFILE = 2803, 34623b3eb3cSopenharmony_ci KEY_DELETEFILE = 2804, 34723b3eb3cSopenharmony_ci KEY_XFER = 2805, 34823b3eb3cSopenharmony_ci KEY_PROG1 = 2806, 34923b3eb3cSopenharmony_ci KEY_PROG2 = 2807, 35023b3eb3cSopenharmony_ci KEY_MSDOS = 2808, 35123b3eb3cSopenharmony_ci KEY_SCREENLOCK = 2809, 35223b3eb3cSopenharmony_ci KEY_DIRECTION_ROTATE_DISPLAY = 2810, 35323b3eb3cSopenharmony_ci KEY_CYCLEWINDOWS = 2811, 35423b3eb3cSopenharmony_ci KEY_COMPUTER = 2812, 35523b3eb3cSopenharmony_ci KEY_EJECTCLOSECD = 2813, 35623b3eb3cSopenharmony_ci KEY_ISO = 2814, 35723b3eb3cSopenharmony_ci KEY_MOVE = 2815, 35823b3eb3cSopenharmony_ci KEY_F13 = 2816, 35923b3eb3cSopenharmony_ci KEY_F14 = 2817, 36023b3eb3cSopenharmony_ci KEY_F15 = 2818, 36123b3eb3cSopenharmony_ci KEY_F16 = 2819, 36223b3eb3cSopenharmony_ci KEY_F17 = 2820, 36323b3eb3cSopenharmony_ci KEY_F18 = 2821, 36423b3eb3cSopenharmony_ci KEY_F19 = 2822, 36523b3eb3cSopenharmony_ci KEY_F20 = 2823, 36623b3eb3cSopenharmony_ci KEY_F21 = 2824, 36723b3eb3cSopenharmony_ci KEY_F22 = 2825, 36823b3eb3cSopenharmony_ci KEY_F23 = 2826, 36923b3eb3cSopenharmony_ci KEY_F24 = 2827, 37023b3eb3cSopenharmony_ci KEY_PROG3 = 2828, 37123b3eb3cSopenharmony_ci KEY_PROG4 = 2829, 37223b3eb3cSopenharmony_ci KEY_DASHBOARD = 2830, 37323b3eb3cSopenharmony_ci KEY_SUSPEND = 2831, 37423b3eb3cSopenharmony_ci KEY_HP = 2832, 37523b3eb3cSopenharmony_ci KEY_SOUND = 2833, 37623b3eb3cSopenharmony_ci KEY_QUESTION = 2834, 37723b3eb3cSopenharmony_ci KEY_CONNECT = 2836, 37823b3eb3cSopenharmony_ci KEY_SPORT = 2837, 37923b3eb3cSopenharmony_ci KEY_SHOP = 2838, 38023b3eb3cSopenharmony_ci KEY_ALTERASE = 2839, 38123b3eb3cSopenharmony_ci KEY_SWITCHVIDEOMODE = 2841, 38223b3eb3cSopenharmony_ci KEY_BATTERY = 2842, 38323b3eb3cSopenharmony_ci KEY_BLUETOOTH = 2843, 38423b3eb3cSopenharmony_ci KEY_WLAN = 2844, 38523b3eb3cSopenharmony_ci KEY_UWB = 2845, 38623b3eb3cSopenharmony_ci KEY_WWAN_WIMAX = 2846, 38723b3eb3cSopenharmony_ci KEY_RFKILL = 2847, 38823b3eb3cSopenharmony_ci KEY_CHANNEL = 3001, 38923b3eb3cSopenharmony_ci KEY_BTN_0 = 3100, 39023b3eb3cSopenharmony_ci KEY_BTN_1 = 3101, 39123b3eb3cSopenharmony_ci KEY_BTN_2 = 3102, 39223b3eb3cSopenharmony_ci KEY_BTN_3 = 3103, 39323b3eb3cSopenharmony_ci KEY_BTN_4 = 3104, 39423b3eb3cSopenharmony_ci KEY_BTN_5 = 3105, 39523b3eb3cSopenharmony_ci KEY_BTN_6 = 3106, 39623b3eb3cSopenharmony_ci KEY_BTN_7 = 3107, 39723b3eb3cSopenharmony_ci KEY_BTN_8 = 3108, 39823b3eb3cSopenharmony_ci KEY_BTN_9 = 3109, 39923b3eb3cSopenharmony_ci KEY_BRL_DOT1 = 3201, 40023b3eb3cSopenharmony_ci KEY_BRL_DOT2 = 3202, 40123b3eb3cSopenharmony_ci KEY_BRL_DOT3 = 3203, 40223b3eb3cSopenharmony_ci KEY_BRL_DOT4 = 3204, 40323b3eb3cSopenharmony_ci KEY_BRL_DOT5 = 3205, 40423b3eb3cSopenharmony_ci KEY_BRL_DOT6 = 3206, 40523b3eb3cSopenharmony_ci KEY_BRL_DOT7 = 3207, 40623b3eb3cSopenharmony_ci KEY_BRL_DOT8 = 3208, 40723b3eb3cSopenharmony_ci KEY_BRL_DOT9 = 3209, 40823b3eb3cSopenharmony_ci KEY_BRL_DOT10 = 3210, 40923b3eb3cSopenharmony_ci // New End 41023b3eb3cSopenharmony_ci KEY_LEFT_KNOB_ROLL_UP = 10001, 41123b3eb3cSopenharmony_ci KEY_LEFT_KNOB_ROLL_DOWN = 10002, 41223b3eb3cSopenharmony_ci KEY_LEFT_KNOB = 10003, 41323b3eb3cSopenharmony_ci KEY_RIGHT_KNOB_ROLL_UP = 10004, 41423b3eb3cSopenharmony_ci KEY_RIGHT_KNOB_ROLL_DOWN = 10005, 41523b3eb3cSopenharmony_ci KEY_RIGHT_KNOB = 10006, 41623b3eb3cSopenharmony_ci KEY_VOICE_SOURCE_SWITCH = 10007, 41723b3eb3cSopenharmony_ci KEY_LAUNCHER_MENU = 10008, 41823b3eb3cSopenharmony_ci 41923b3eb3cSopenharmony_ci TV_CONTROL_BACK = KEY_BACK, 42023b3eb3cSopenharmony_ci TV_CONTROL_UP = KEY_DPAD_UP, 42123b3eb3cSopenharmony_ci TV_CONTROL_DOWN = KEY_DPAD_DOWN, 42223b3eb3cSopenharmony_ci TV_CONTROL_LEFT = KEY_DPAD_LEFT, 42323b3eb3cSopenharmony_ci TV_CONTROL_RIGHT = KEY_DPAD_RIGHT, 42423b3eb3cSopenharmony_ci TV_CONTROL_CENTER = KEY_DPAD_CENTER, 42523b3eb3cSopenharmony_ci TV_CONTROL_ENTER = KEY_ENTER, 42623b3eb3cSopenharmony_ci TV_CONTROL_MEDIA_PLAY = KEY_MEDIA_PLAY, 42723b3eb3cSopenharmony_ci}; 42823b3eb3cSopenharmony_ci 42923b3eb3cSopenharmony_cienum class KeyAction : int32_t { 43023b3eb3cSopenharmony_ci UNKNOWN = -1, 43123b3eb3cSopenharmony_ci DOWN = 0, 43223b3eb3cSopenharmony_ci UP = 1, 43323b3eb3cSopenharmony_ci LONG_PRESS = 2, 43423b3eb3cSopenharmony_ci CLICK = 3, 43523b3eb3cSopenharmony_ci}; 43623b3eb3cSopenharmony_ci 43723b3eb3cSopenharmony_ciclass KeyEvent { 43823b3eb3cSopenharmony_cipublic: 43923b3eb3cSopenharmony_ci KeyEvent() = default; 44023b3eb3cSopenharmony_ci ~KeyEvent() = default; 44123b3eb3cSopenharmony_ci 44223b3eb3cSopenharmony_cipublic: 44323b3eb3cSopenharmony_ci KeyCode code { KeyCode::KEY_UNKNOWN }; 44423b3eb3cSopenharmony_ci const char* key = ""; 44523b3eb3cSopenharmony_ci KeyAction action { KeyAction::UNKNOWN }; 44623b3eb3cSopenharmony_ci std::vector<KeyCode> pressedCodes; 44723b3eb3cSopenharmony_ci int32_t repeatTime = 0; 44823b3eb3cSopenharmony_ci TimeStamp timeStamp; 44923b3eb3cSopenharmony_ci int32_t metaKey = 0; 45023b3eb3cSopenharmony_ci int64_t deviceId = 0; 45123b3eb3cSopenharmony_ci SourceType sourceType { SourceType::NONE }; 45223b3eb3cSopenharmony_ci bool enableCapsLock_; 45323b3eb3cSopenharmony_ci bool enableNumLock_; 45423b3eb3cSopenharmony_ci}; 45523b3eb3cSopenharmony_ci 45623b3eb3cSopenharmony_ci} // namespace MMI 45723b3eb3cSopenharmony_ci} // namespace OHOS 45823b3eb3cSopenharmony_ci#endif // FOUNDATION_ACE_ADAPTER_PREVIEW_EXTERNAL_MULTIMODALINPUT_KEY_EVENT_H 459