* Copyright (C) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef IMF_KEYBOARD_EVENT_H
#define IMF_KEYBOARD_EVENT_H
#include "global.h"
#include "key_event.h"
namespace OHOS {
namespace MiscServices {
using KeyHandle = std::function<int32_t(uint32_t)>;
class KeyboardEvent {
public:
static KeyboardEvent &GetInstance();
static int32_t AddKeyEventMonitor(KeyHandle handle);
static constexpr uint8_t SHIFT_LEFT_MASK = 0X1;
static constexpr uint8_t SHIFT_RIGHT_MASK = 0X1 << 1;
static constexpr uint8_t CTRL_LEFT_MASK = 0X1 << 2;
static constexpr uint8_t CTRL_RIGHT_MASK = 0X1 << 3;
static constexpr uint8_t CAPS_MASK = 0X1 << 4;
static constexpr uint8_t META_MASK = 0X1 << 5;
static constexpr uint8_t SPACE_MASK = 0X1 << 6;
using CombinationKeyCallBack = std::function<void(std::shared_ptr<MMI::KeyEvent> keyEvent)>;
private:
static constexpr int32_t PRESS_KEY_DELAY_MS = 200;
KeyboardEvent() = default;
KeyboardEvent(const KeyboardEvent &) = delete;
KeyboardEvent(KeyboardEvent &&) = delete;
KeyboardEvent &operator=(const KeyboardEvent &) = delete;
KeyboardEvent &operator=(KeyboardEvent &&) = delete;
static void SubscribeCombinationKey(
int32_t preKey, int32_t finalKey, CombinationKeyCallBack callback, bool setFinalKeyDown = false);
};
}
}
#endif