1 /*
2  * Copyright (c) 2022 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "virtual_pen_keyboard.h"
17 
18 namespace OHOS {
19 namespace MMI {
VirtualPenKeyboard()20 VirtualPenKeyboard::VirtualPenKeyboard() : VirtualDevice("V-Pencil-keyboard", BUS_BLUETOOTH, 0x12d1, 0x10a5)
21 {
22     eventTypes_ = { EV_KEY, EV_MSC };
23     miscellaneous_ = { MSC_SCAN };
24     keys_ = {
25         KEY_LEFTCTRL, KEY_LEFTSHIFT, KEY_RIGHTSHIFT, KEY_KPASTERISK, KEY_LEFTALT, KEY_NUMLOCK, KEY_KP7, KEY_KP8,
26         KEY_KP9, KEY_KPMINUS, KEY_KP4, KEY_KP5, KEY_KP6, KEY_KPPLUS, KEY_KP1, KEY_KP2, KEY_KP3, KEY_KP0, KEY_KPDOT,
27         KEY_102ND, KEY_KPENTER, KEY_RIGHTCTRL, KEY_KPSLASH, KEY_RIGHTALT, KEY_UP, KEY_PAGEUP, KEY_LEFT, KEY_RIGHT,
28         KEY_END, KEY_DOWN, KEY_PAGEDOWN, KEY_DELETE, KEY_POWER, KEY_KPEQUAL, KEY_LEFTMETA, KEY_RIGHTMETA, KEY_COMPOSE,
29         KEY_F13, KEY_F14, KEY_F15, KEY_F16, KEY_F17, KEY_F18, KEY_F19, KEY_F20, KEY_F21
30     };
31 }
32 } // namespace MMI
33 } // namespace OHOS