Keyboard state.
Synopsis:
#include <bps/navigator.h>
typedef enum {
NAVIGATOR_KEYBOARD_UNRECOGNIZED = 0
NAVIGATOR_KEYBOARD_OPENING = 1
NAVIGATOR_KEYBOARD_OPENED = 2
NAVIGATOR_KEYBOARD_CLOSING = 3
NAVIGATOR_KEYBOARD_CLOSED = 4
} navigator_keyboard_state_t;
Data:
- NAVIGATOR_KEYBOARD_UNRECOGNIZED
- Indicates that the keyboard is in an unrecognized state (not one of the states below).
- NAVIGATOR_KEYBOARD_OPENING
- Indicates that the keyboard is opening.
- NAVIGATOR_KEYBOARD_OPENED
- Indicates that the keyboard is opened.
- NAVIGATOR_KEYBOARD_CLOSING
- Indicates that the keyboard is closing.
- NAVIGATOR_KEYBOARD_CLOSED
- Indicates that the keyboard is closed.
Library:
libbps (For the qcc command, use the -l bps option to link against this library)
Description:
This enumeration defines the different states the keyboard can be in.