2015-11-13 00:04:01 +00:00
|
|
|
#ifndef _CLIENT_H
|
|
|
|
#define _CLIENT_H
|
|
|
|
|
|
|
|
#include <wayland-client.h>
|
2015-11-19 03:01:22 +00:00
|
|
|
#include "wayland-desktop-shell-client-protocol.h"
|
2015-11-13 00:04:01 +00:00
|
|
|
#include <cairo/cairo.h>
|
|
|
|
#include <pango/pangocairo.h>
|
2015-11-13 00:35:39 +00:00
|
|
|
#include <stdbool.h>
|
2015-11-13 00:04:01 +00:00
|
|
|
#include "list.h"
|
2015-11-19 12:58:57 +00:00
|
|
|
#include "client/registry.h"
|
2015-11-13 00:04:01 +00:00
|
|
|
|
2016-07-05 06:21:56 +00:00
|
|
|
struct window;
|
|
|
|
|
2015-11-13 00:04:01 +00:00
|
|
|
struct buffer {
|
2016-07-06 06:08:54 +00:00
|
|
|
struct wl_buffer *buffer;
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cairo;
|
|
|
|
PangoContext *pango;
|
|
|
|
uint32_t width, height;
|
|
|
|
bool busy;
|
2015-11-13 00:04:01 +00:00
|
|
|
};
|
|
|
|
|
2015-11-19 00:38:42 +00:00
|
|
|
struct cursor {
|
2016-07-06 06:08:54 +00:00
|
|
|
struct wl_surface *surface;
|
|
|
|
struct wl_cursor_theme *cursor_theme;
|
|
|
|
struct wl_cursor *cursor;
|
2017-03-18 20:57:26 +00:00
|
|
|
struct wl_pointer *pointer;
|
2015-11-19 00:38:42 +00:00
|
|
|
};
|
|
|
|
|
2016-07-12 04:15:23 +00:00
|
|
|
enum scroll_direction {
|
|
|
|
SCROLL_UP,
|
|
|
|
SCROLL_DOWN,
|
|
|
|
SCROLL_LEFT,
|
|
|
|
SCROLL_RIGHT,
|
|
|
|
};
|
|
|
|
|
2016-07-05 06:21:56 +00:00
|
|
|
struct pointer_input {
|
2016-07-11 05:03:15 +00:00
|
|
|
int last_x;
|
|
|
|
int last_y;
|
2016-07-05 06:21:56 +00:00
|
|
|
|
2016-07-16 13:09:22 +00:00
|
|
|
void (*notify_button)(struct window *window, int x, int y, uint32_t button, uint32_t state_w);
|
2016-07-12 04:15:23 +00:00
|
|
|
void (*notify_scroll)(struct window *window, enum scroll_direction direction);
|
2016-07-05 06:21:56 +00:00
|
|
|
};
|
|
|
|
|
2015-11-19 12:58:57 +00:00
|
|
|
struct window {
|
2016-07-06 06:08:54 +00:00
|
|
|
struct registry *registry;
|
|
|
|
struct buffer buffers[2];
|
|
|
|
struct buffer *buffer;
|
|
|
|
struct wl_surface *surface;
|
|
|
|
struct wl_shell_surface *shell_surface;
|
|
|
|
struct wl_callback *frame_cb;
|
|
|
|
struct cursor cursor;
|
|
|
|
uint32_t width, height;
|
2016-09-05 15:36:48 +00:00
|
|
|
int32_t scale;
|
2016-07-06 06:08:54 +00:00
|
|
|
char *font;
|
|
|
|
cairo_t *cairo;
|
2016-07-05 06:21:56 +00:00
|
|
|
struct pointer_input pointer_input;
|
2015-11-13 00:04:01 +00:00
|
|
|
};
|
|
|
|
|
2016-09-05 15:36:48 +00:00
|
|
|
struct window *window_setup(struct registry *registry, uint32_t width, uint32_t height,
|
|
|
|
int32_t scale, bool shell_surface);
|
2015-11-19 12:58:57 +00:00
|
|
|
void window_teardown(struct window *state);
|
|
|
|
int window_prerender(struct window *state);
|
|
|
|
int window_render(struct window *state);
|
2016-07-04 22:01:37 +00:00
|
|
|
void window_make_shell(struct window *window);
|
2015-11-13 00:04:01 +00:00
|
|
|
|
|
|
|
#endif
|