wlvncc/include/pointer.h

63 lines
1.8 KiB
C
Raw Normal View History

2020-07-10 14:33:04 +00:00
/*
* Copyright (c) 2020 Andri Yngvason
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
2020-07-10 12:58:29 +00:00
#pragma once
#include <wayland-client.h>
2020-07-14 20:44:18 +00:00
struct wl_cursor_theme;
2020-07-14 21:17:36 +00:00
enum pointer_cursor_type {
POINTER_CURSOR_NONE = 0,
POINTER_CURSOR_LEFT_PTR,
};
2020-07-10 12:58:29 +00:00
enum pointer_button_mask {
POINTER_BUTTON_LEFT = 1 << 0,
POINTER_BUTTON_MIDDLE = 1 << 1,
POINTER_BUTTON_RIGHT = 1 << 2,
// TODO: More buttons
};
struct pointer {
struct wl_pointer* wl_pointer;
struct wl_list link;
2020-07-14 20:44:18 +00:00
uint32_t serial;
2020-07-10 12:58:29 +00:00
enum pointer_button_mask pressed;
wl_fixed_t x, y;
2020-07-14 20:44:18 +00:00
struct wl_cursor_theme* cursor_theme;
struct wl_surface* cursor_surface;
2020-07-14 21:17:36 +00:00
enum pointer_cursor_type cursor_type;
2020-07-10 12:58:29 +00:00
};
struct pointer_collection {
struct wl_list pointers;
void (*on_frame)(struct pointer_collection*, struct pointer*);
2020-07-14 21:17:36 +00:00
enum pointer_cursor_type cursor_type;
2020-07-10 12:58:29 +00:00
void* userdata;
};
2020-07-14 21:17:36 +00:00
struct pointer_collection* pointer_collection_new(enum pointer_cursor_type);
2020-07-10 12:58:29 +00:00
void pointer_collection_destroy(struct pointer_collection*);
int pointer_collection_add_wl_pointer(struct pointer_collection* self,
struct wl_pointer* wl_pointer);
void pointer_collection_remove_wl_pointer(struct pointer_collection* self,
struct wl_pointer* wl_pointer);