summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar David Eklov <david.eklov@gmail.com>2016-07-06 01:08:54 -0500
committerLibravatar David Eklov <david.eklov@gmail.com>2016-07-06 01:08:54 -0500
commitb9d8cbabdd42b8b65852fac5d8d8b01bbdabb280 (patch)
treed7a5edd481a0b8961eee20d3008b1fbf6ba51ee1 /include
parentEnable windows to register to get notified of pointer button events (diff)
downloadsway-b9d8cbabdd42b8b65852fac5d8d8b01bbdabb280.tar.gz
sway-b9d8cbabdd42b8b65852fac5d8d8b01bbdabb280.tar.zst
sway-b9d8cbabdd42b8b65852fac5d8d8b01bbdabb280.zip
Fix formatting guide violations (spaces instead of tabs)
Diffstat (limited to 'include')
-rw-r--r--include/client/window.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/include/client/window.h b/include/client/window.h
index b5cc1880..7be4fff3 100644
--- a/include/client/window.h
+++ b/include/client/window.h
@@ -12,19 +12,19 @@
12struct window; 12struct window;
13 13
14struct buffer { 14struct buffer {
15 struct wl_buffer *buffer; 15 struct wl_buffer *buffer;
16 cairo_surface_t *surface; 16 cairo_surface_t *surface;
17 cairo_t *cairo; 17 cairo_t *cairo;
18 PangoContext *pango; 18 PangoContext *pango;
19 uint32_t width, height; 19 uint32_t width, height;
20 bool busy; 20 bool busy;
21}; 21};
22 22
23struct cursor { 23struct cursor {
24 struct wl_surface *surface; 24 struct wl_surface *surface;
25 struct wl_cursor_theme *cursor_theme; 25 struct wl_cursor_theme *cursor_theme;
26 struct wl_cursor *cursor; 26 struct wl_cursor *cursor;
27 struct wl_poitner *pointer; 27 struct wl_poitner *pointer;
28}; 28};
29 29
30struct pointer_input { 30struct pointer_input {
@@ -35,16 +35,16 @@ struct pointer_input {
35}; 35};
36 36
37struct window { 37struct window {
38 struct registry *registry; 38 struct registry *registry;
39 struct buffer buffers[2]; 39 struct buffer buffers[2];
40 struct buffer *buffer; 40 struct buffer *buffer;
41 struct wl_surface *surface; 41 struct wl_surface *surface;
42 struct wl_shell_surface *shell_surface; 42 struct wl_shell_surface *shell_surface;
43 struct wl_callback *frame_cb; 43 struct wl_callback *frame_cb;
44 struct cursor cursor; 44 struct cursor cursor;
45 uint32_t width, height; 45 uint32_t width, height;
46 char *font; 46 char *font;
47 cairo_t *cairo; 47 cairo_t *cairo;
48 struct pointer_input pointer_input; 48 struct pointer_input pointer_input;
49}; 49};
50 50