wlvncc/include/pointer.h

49 lines
1.5 KiB
C

/*
* 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.
*/
#pragma once
#include <wayland-client.h>
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;
enum pointer_button_mask pressed;
wl_fixed_t x, y;
};
struct pointer_collection {
struct wl_list pointers;
void (*on_frame)(struct pointer_collection*, struct pointer*);
void* userdata;
};
struct pointer_collection* pointer_collection_new(void);
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);