blob: bb677a0a28b5f9c757e8ef3d75b8d3cfc21b7542 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#ifndef TOFI_H
#define TOFI_H
#include <stdbool.h>
#include <stdint.h>
#include <xkbcommon/xkbcommon.h>
#include "color.h"
#include "entry.h"
#include "image.h"
#include "surface.h"
#include "wlr-layer-shell-unstable-v1.h"
#define MAX_OUTPUT_NAME_LEN 256
struct output_list_element {
struct wl_list link;
struct wl_output *wl_output;
char *name;
uint32_t width;
uint32_t height;
int32_t scale;
int32_t transform;
};
struct tofi {
/* Wayland globals */
struct wl_display *wl_display;
struct wl_registry *wl_registry;
struct wl_compositor *wl_compositor;
struct wl_seat *wl_seat;
struct wl_shm *wl_shm;
struct zwlr_layer_shell_v1 *zwlr_layer_shell;
struct wl_list output_list;
struct output_list_element *default_output;
/* Wayland objects */
struct wl_keyboard *wl_keyboard;
struct wl_pointer *wl_pointer;
/* Keyboard objects */
char *xkb_keymap_string;
struct xkb_state *xkb_state;
struct xkb_context *xkb_context;
struct xkb_keymap *xkb_keymap;
/* State */
bool submit;
bool closed;
int32_t output_width;
int32_t output_height;
struct {
struct surface surface;
struct zwlr_layer_surface_v1 *zwlr_layer_surface;
struct entry entry;
uint32_t width;
uint32_t height;
uint32_t scale;
int32_t transform;
int32_t margin_top;
int32_t margin_bottom;
int32_t margin_left;
int32_t margin_right;
} window;
struct {
uint32_t rate;
uint32_t delay;
uint32_t keycode;
uint32_t next;
bool active;
} repeat;
/* Options */
uint32_t anchor;
bool hide_cursor;
bool use_history;
bool late_keyboard_init;
bool drun_launch;
bool drun_print_exec;
char target_output_name[MAX_OUTPUT_NAME_LEN];
};
#endif /* TOFI_H */
|