mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-02-03 11:10:29 +01:00
Rename KEYBOARD_KEY_STATE to KEY_STATE
e912d620d0 changed from POINTER_BUTTON_STATE to
simply BUTTON_STATE, replicate that for key events too.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
82e81e8790
commit
967911791f
6 changed files with 17 additions and 17 deletions
|
|
@ -310,8 +310,8 @@ evdev_process_key(struct evdev_device *device,
|
|||
&device->base,
|
||||
time,
|
||||
e->code,
|
||||
e->value ? LIBINPUT_KEYBOARD_KEY_STATE_PRESSED :
|
||||
LIBINPUT_KEYBOARD_KEY_STATE_RELEASED);
|
||||
e->value ? LIBINPUT_KEY_STATE_PRESSED :
|
||||
LIBINPUT_KEY_STATE_RELEASED);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ void
|
|||
keyboard_notify_key(struct libinput_device *device,
|
||||
uint32_t time,
|
||||
uint32_t key,
|
||||
enum libinput_keyboard_key_state state);
|
||||
enum libinput_key_state state);
|
||||
|
||||
void
|
||||
pointer_notify_motion(struct libinput_device *device,
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ struct libinput_event_keyboard {
|
|||
uint32_t time;
|
||||
uint32_t key;
|
||||
uint32_t seat_key_count;
|
||||
enum libinput_keyboard_key_state state;
|
||||
enum libinput_key_state state;
|
||||
};
|
||||
|
||||
struct libinput_event_pointer {
|
||||
|
|
@ -285,7 +285,7 @@ libinput_event_keyboard_get_key(struct libinput_event_keyboard *event)
|
|||
return event->key;
|
||||
}
|
||||
|
||||
LIBINPUT_EXPORT enum libinput_keyboard_key_state
|
||||
LIBINPUT_EXPORT enum libinput_key_state
|
||||
libinput_event_keyboard_get_key_state(struct libinput_event_keyboard *event)
|
||||
{
|
||||
return event->state;
|
||||
|
|
@ -717,14 +717,14 @@ libinput_dispatch(struct libinput *libinput)
|
|||
static uint32_t
|
||||
update_seat_key_count(struct libinput_seat *seat,
|
||||
int32_t key,
|
||||
enum libinput_keyboard_key_state state)
|
||||
enum libinput_key_state state)
|
||||
{
|
||||
assert(key >= 0 && key <= KEY_MAX);
|
||||
|
||||
switch (state) {
|
||||
case LIBINPUT_KEYBOARD_KEY_STATE_PRESSED:
|
||||
case LIBINPUT_KEY_STATE_PRESSED:
|
||||
return ++seat->button_count[key];
|
||||
case LIBINPUT_KEYBOARD_KEY_STATE_RELEASED:
|
||||
case LIBINPUT_KEY_STATE_RELEASED:
|
||||
/* We might not have received the first PRESSED event. */
|
||||
if (seat->button_count[key] == 0)
|
||||
return 0;
|
||||
|
|
@ -816,7 +816,7 @@ void
|
|||
keyboard_notify_key(struct libinput_device *device,
|
||||
uint32_t time,
|
||||
uint32_t key,
|
||||
enum libinput_keyboard_key_state state)
|
||||
enum libinput_key_state state)
|
||||
{
|
||||
struct libinput_event_keyboard *key_event;
|
||||
uint32_t seat_key_count;
|
||||
|
|
|
|||
|
|
@ -130,9 +130,9 @@ enum libinput_device_capability {
|
|||
* Logical state of a key. Note that the logical state may not represent
|
||||
* the physical state of the key.
|
||||
*/
|
||||
enum libinput_keyboard_key_state {
|
||||
LIBINPUT_KEYBOARD_KEY_STATE_RELEASED = 0,
|
||||
LIBINPUT_KEYBOARD_KEY_STATE_PRESSED = 1
|
||||
enum libinput_key_state {
|
||||
LIBINPUT_KEY_STATE_RELEASED = 0,
|
||||
LIBINPUT_KEY_STATE_PRESSED = 1
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -382,7 +382,7 @@ libinput_event_keyboard_get_key(struct libinput_event_keyboard *event);
|
|||
*
|
||||
* @return The state change of the key
|
||||
*/
|
||||
enum libinput_keyboard_key_state
|
||||
enum libinput_key_state
|
||||
libinput_event_keyboard_get_key_state(struct libinput_event_keyboard *event);
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@ START_TEST(keyboard_seat_key_count)
|
|||
ck_assert_notnull(kev);
|
||||
ck_assert_int_eq(libinput_event_keyboard_get_key(kev), KEY_A);
|
||||
ck_assert_int_eq(libinput_event_keyboard_get_key_state(kev),
|
||||
LIBINPUT_KEYBOARD_KEY_STATE_PRESSED);
|
||||
LIBINPUT_KEY_STATE_PRESSED);
|
||||
|
||||
++expected_key_button_count;
|
||||
seat_key_count =
|
||||
|
|
@ -93,7 +93,7 @@ START_TEST(keyboard_seat_key_count)
|
|||
ck_assert_notnull(kev);
|
||||
ck_assert_int_eq(libinput_event_keyboard_get_key(kev), KEY_A);
|
||||
ck_assert_int_eq(libinput_event_keyboard_get_key_state(kev),
|
||||
LIBINPUT_KEYBOARD_KEY_STATE_RELEASED);
|
||||
LIBINPUT_KEY_STATE_RELEASED);
|
||||
|
||||
--expected_key_button_count;
|
||||
seat_key_count =
|
||||
|
|
|
|||
|
|
@ -247,13 +247,13 @@ static void
|
|||
print_key_event(struct libinput_event *ev)
|
||||
{
|
||||
struct libinput_event_keyboard *k = libinput_event_get_keyboard_event(ev);
|
||||
enum libinput_keyboard_key_state state;
|
||||
enum libinput_key_state state;
|
||||
|
||||
print_event_time(libinput_event_keyboard_get_time(k));
|
||||
state = libinput_event_keyboard_get_key_state(k);
|
||||
printf("%d %s\n",
|
||||
libinput_event_keyboard_get_key(k),
|
||||
state == LIBINPUT_KEYBOARD_KEY_STATE_PRESSED ? "pressed" : "released");
|
||||
state == LIBINPUT_KEY_STATE_PRESSED ? "pressed" : "released");
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue