diff options
| author | 2010-11-18 14:20:30 -0800 | |
|---|---|---|
| committer | 2010-11-18 14:20:30 -0800 | |
| commit | 98dc391e20e0a27cd143cbdf62f8f306dba3fa83 (patch) | |
| tree | 119214c6e9d6a946df03ebfbe906651feb0f1668 /include/ui/KeyCharacterMap.h | |
| parent | 35cf947565aca616fe461283602b2c21c8264712 (diff) | |
| parent | a3477c862a5debcac7dfb076749059406ec59512 (diff) | |
Merge "Added support for full PC-style keyboards."
Diffstat (limited to 'include/ui/KeyCharacterMap.h')
| -rw-r--r-- | include/ui/KeyCharacterMap.h | 185 | 
1 files changed, 148 insertions, 37 deletions
diff --git a/include/ui/KeyCharacterMap.h b/include/ui/KeyCharacterMap.h index bad2cf86f0..a1ccb37b04 100644 --- a/include/ui/KeyCharacterMap.h +++ b/include/ui/KeyCharacterMap.h @@ -18,55 +18,166 @@  #define _UI_KEY_CHARACTER_MAP_H  #include <stdint.h> -#include <utils/Vector.h> -using namespace android; +#include <ui/Input.h> +#include <utils/Errors.h> +#include <utils/KeyedVector.h> +#include <utils/Tokenizer.h> +#include <utils/String8.h> +#include <utils/Unicode.h> -class KeyCharacterMap -{ +namespace android { + +/** + * Describes a mapping from Android key codes to characters. + * Also specifies other functions of the keyboard such as the keyboard type + * and key modifier semantics. + */ +class KeyCharacterMap {  public: +    enum KeyboardType { +        KEYBOARD_TYPE_UNKNOWN = 0, +        KEYBOARD_TYPE_NUMERIC = 1, +        KEYBOARD_TYPE_PREDICTIVE = 2, +        KEYBOARD_TYPE_ALPHA = 3, +        KEYBOARD_TYPE_FULL = 4, +        KEYBOARD_TYPE_SPECIAL_FUNCTION = 5, +    }; +      ~KeyCharacterMap(); -    // see the javadoc for android.text.method.KeyCharacterMap for what -    // these do -    unsigned short get(int keycode, int meta); -    unsigned short getNumber(int keycode); -    unsigned short getMatch(int keycode, const unsigned short* chars, -                            int charsize, uint32_t modifiers); -    unsigned short getDisplayLabel(int keycode); -    bool getKeyData(int keycode, unsigned short *displayLabel, -                    unsigned short *number, unsigned short* results); -    inline unsigned int getKeyboardType() { return m_type; } -    bool getEvents(uint16_t* chars, size_t len, -                   Vector<int32_t>* keys, Vector<uint32_t>* modifiers); - -    static KeyCharacterMap* load(int id); - -    enum { -        NUMERIC = 1, -        Q14 = 2, -        QWERTY = 3 // or AZERTY or whatever -    }; +    static status_t load(const String8& filename, KeyCharacterMap** outMap); +    static status_t loadByDeviceId(int32_t deviceId, KeyCharacterMap** outMap); + +    /* Gets the keyboard type. */ +    int32_t getKeyboardType() const; + +    /* Gets the primary character for this key as in the label physically printed on it. +     * Returns 0 if none (eg. for non-printing keys). */ +    char16_t getDisplayLabel(int32_t keyCode) const; + +    /* Gets the Unicode character for the number or symbol generated by the key +     * when the keyboard is used as a dialing pad. +     * Returns 0 if no number or symbol is generated. +     */ +    char16_t getNumber(int32_t keyCode) const; -#define META_MASK 3 +    /* Gets the Unicode character generated by the key and meta key modifiers. +     * Returns 0 if no character is generated. +     */ +    char16_t getCharacter(int32_t keyCode, int32_t metaState) const; + +    /* Gets the first matching Unicode character that can be generated by the key, +     * preferring the one with the specified meta key modifiers. +     * Returns 0 if no matching character is generated. +     */ +    char16_t getMatch(int32_t keyCode, const char16_t* chars, +            size_t numChars, int32_t metaState) const; + +    /* Gets a sequence of key events that could plausibly generate the specified +     * character sequence.  Returns false if some of the characters cannot be generated. +     */ +    bool getEvents(int32_t deviceId, const char16_t* chars, size_t numChars, +            Vector<KeyEvent>& outEvents) const;  private: -    struct Key -    { -        int32_t keycode; -        uint16_t display_label; -        uint16_t number; -        uint16_t data[META_MASK + 1]; +    struct Behavior { +        Behavior(); + +        /* The next behavior in the list, or NULL if none. */ +        Behavior* next; + +        /* The meta key modifiers for this behavior. */ +        int32_t metaState; + +        /* The character to insert. */ +        char16_t character; + +        /* The fallback keycode if the key is not handled. */ +        int32_t fallbackKeyCode; +    }; + +    struct Key { +        Key(); +        ~Key(); + +        /* The single character label printed on the key, or 0 if none. */ +        char16_t label; + +        /* The number or symbol character generated by the key, or 0 if none. */ +        char16_t number; + +        /* The list of key behaviors sorted from most specific to least specific +         * meta key binding. */ +        Behavior* firstBehavior;      }; +    class Parser { +        enum State { +            STATE_TOP = 0, +            STATE_KEY = 1, +        }; + +        enum { +            PROPERTY_LABEL = 1, +            PROPERTY_NUMBER = 2, +            PROPERTY_META = 3, +        }; + +        struct Property { +            inline Property(int32_t property = 0, int32_t metaState = 0) : +                    property(property), metaState(metaState) { } + +            int32_t property; +            int32_t metaState; +        }; + +        KeyCharacterMap* mMap; +        Tokenizer* mTokenizer; +        State mState; +        int32_t mKeyCode; + +    public: +        Parser(KeyCharacterMap* map, Tokenizer* tokenizer); +        ~Parser(); +        status_t parse(); + +    private: +        status_t parseType(); +        status_t parseKey(); +        status_t parseKeyProperty(); +        status_t parseModifier(const String8& token, int32_t* outMetaState); +        status_t parseCharacterLiteral(char16_t* outCharacter); +    }; + +    KeyedVector<int32_t, Key*> mKeys; +    int mType; +      KeyCharacterMap(); -    static KeyCharacterMap* try_file(const char* filename); -    Key* find_key(int keycode); -    bool find_char(uint16_t c, uint32_t* key, uint32_t* mods); -    unsigned int m_type; -    unsigned int m_keyCount; -    Key* m_keys; +    bool findKey(char16_t ch, int32_t* outKeyCode, int32_t* outMetaState) const; + +    static void addKey(Vector<KeyEvent>& outEvents, +            int32_t deviceId, int32_t keyCode, int32_t metaState, bool down, nsecs_t time); +    static void addMetaKeys(Vector<KeyEvent>& outEvents, +            int32_t deviceId, int32_t metaState, bool down, nsecs_t time, +            int32_t* currentMetaState); +    static bool addSingleEphemeralMetaKey(Vector<KeyEvent>& outEvents, +            int32_t deviceId, int32_t metaState, bool down, nsecs_t time, +            int32_t keyCode, int32_t keyMetaState, +            int32_t* currentMetaState); +    static void addDoubleEphemeralMetaKey(Vector<KeyEvent>& outEvents, +            int32_t deviceId, int32_t metaState, bool down, nsecs_t time, +            int32_t leftKeyCode, int32_t leftKeyMetaState, +            int32_t rightKeyCode, int32_t rightKeyMetaState, +            int32_t eitherKeyMetaState, +            int32_t* currentMetaState); +    static void addLockedMetaKey(Vector<KeyEvent>& outEvents, +            int32_t deviceId, int32_t metaState, nsecs_t time, +            int32_t keyCode, int32_t keyMetaState, +            int32_t* currentMetaState);  }; +} // namespace android +  #endif // _UI_KEY_CHARACTER_MAP_H  |