aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Ongyerth <ongy@ongy.net>2018-05-25 08:33:15 +0200
committerMarkus Ongyerth <ongy@ongy.net>2018-07-14 09:48:57 +0200
commit503f9d6e52c3d78db10e06c00499d8935cc957f5 (patch)
tree4d6ad206d05c605ef1c735dc57a6860f5d1ae55b
parent5cbdd13df838c70e66e511598eb061534392c804 (diff)
emersion feedback
Introduce TABLET_MANAGER_VERSION and remove the wlr_tablet_tool_tool.c
-rw-r--r--types/meson.build1
-rw-r--r--types/tablet_v2/wlr_tablet_v2.c13
-rw-r--r--types/wlr_tablet_tool_tool.c16
3 files changed, 7 insertions, 23 deletions
diff --git a/types/meson.build b/types/meson.build
index 03f678a1..0b8584f8 100644
--- a/types/meson.build
+++ b/types/meson.build
@@ -49,7 +49,6 @@ lib_wlr_types = static_library(
'tablet_v2/wlr_tablet_v2_tool.c',
'wlr_tablet_pad.c',
'wlr_tablet_tool.c',
- 'wlr_tablet_tool_tool.c',
'wlr_touch.c',
'wlr_virtual_keyboard_v1.c',
'wlr_wl_shell.c',
diff --git a/types/tablet_v2/wlr_tablet_v2.c b/types/tablet_v2/wlr_tablet_v2.c
index 58945765..802de77f 100644
--- a/types/tablet_v2/wlr_tablet_v2.c
+++ b/types/tablet_v2/wlr_tablet_v2.c
@@ -15,13 +15,14 @@
#include <wlr/util/log.h>
#include "tablet-unstable-v2-protocol.h"
+#define TABLET_MANAGER_VERSION 1
+
struct wlr_tablet_manager_client_v2 {
struct wl_list link;
struct wl_client *client;
struct wl_resource *resource;
struct wlr_tablet_manager_v2 *manager;
- struct wl_listener client_destroy;
struct wl_list tablet_seats; // wlr_tablet_seat_client_v2::link
};
@@ -154,7 +155,7 @@ static void get_tablet_seat(struct wl_client *wl_client, struct wl_resource *res
struct wlr_tablet_seat_v2 *tablet_seat =
get_or_create_tablet_seat(manager->manager, seat->seat);
- if (!tablet_seat) {// This can only happen when we ran out of memory
+ if (!tablet_seat) { // This can only happen when we ran out of memory
wl_client_post_no_memory(wl_client);
return;
}
@@ -167,7 +168,7 @@ static void get_tablet_seat(struct wl_client *wl_client, struct wl_resource *res
}
seat_client->resource =
- wl_resource_create(wl_client, &zwp_tablet_seat_v2_interface, 1, id);
+ wl_resource_create(wl_client, &zwp_tablet_seat_v2_interface, TABLET_MANAGER_VERSION, id);
if (seat_client->resource == NULL) {
free(seat_client);
wl_client_post_no_memory(wl_client);
@@ -190,7 +191,7 @@ static void get_tablet_seat(struct wl_client *wl_client, struct wl_resource *res
wl_list_insert(&manager->tablet_seats, &seat_client->client_link);
wl_list_insert(&tablet_seat->clients, &seat_client->seat_link);
- // We need to emmit the devices allready on the seat
+ // We need to emit the devices allready on the seat
struct wlr_tablet_v2_tablet *tablet_pos;
wl_list_for_each(tablet_pos, &tablet_seat->tablets, link) {
add_tablet_client(seat_client, tablet_pos);
@@ -232,7 +233,6 @@ static void wlr_tablet_manager_v2_destroy(struct wl_resource *resource) {
}
wl_list_remove(&client->link);
- //wl_list_remove(&client->client_destroy.link);
free(client);
wl_resource_set_user_data(resource, NULL);
@@ -299,7 +299,8 @@ struct wlr_tablet_manager_v2 *wlr_tablet_v2_create(struct wl_display *display) {
wl_display_add_destroy_listener(display, &tablet->display_destroy);
tablet->wl_global = wl_global_create(display,
- &zwp_tablet_manager_v2_interface, 1, tablet, tablet_v2_bind);
+ &zwp_tablet_manager_v2_interface, TABLET_MANAGER_VERSION,
+ tablet, tablet_v2_bind);
if (tablet->wl_global == NULL) {
free(tablet);
return NULL;
diff --git a/types/wlr_tablet_tool_tool.c b/types/wlr_tablet_tool_tool.c
deleted file mode 100644
index fcd38f56..00000000
--- a/types/wlr_tablet_tool_tool.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <stdlib.h>
-#include <string.h>
-#include <wayland-server.h>
-#include <wlr/interfaces/wlr_tablet_tool.h>
-#include <wlr/types/wlr_tablet_tool.h>
-
-void wlr_tablet_tool_tool_init(struct wlr_tablet_tool_tool *tool) {
- // Intentionaly empty (for now)
-}
-
-void wlr_tablet_tool_tool_destroy(struct wlr_tablet_tool_tool *tool) {
- if (!tool) {
- return;
- }
- free(tool);
-}