blob: dc735a6c886a925489d7644561373a162a857857 [file] [log] [blame]
Kristian Høgsbergffd710e2008-12-02 15:15:01 -05001/*
2 * Copyright © 2008 Kristian Høgsberg
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -050023#ifndef _CAIRO_UTIL_H
24#define _CAIRO_UTIL_H
25
Jason Ekstrand01c9ec32013-10-13 19:08:39 -050026#include <stdint.h>
Pekka Paalanen4fbb6532012-11-30 13:37:28 +020027#include <cairo.h>
Kristian Høgsberg6006ecb2012-11-29 12:23:36 -050028
Boyan Ding850a5142014-08-05 15:22:04 +080029#include <wayland-util.h>
30
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -050031void
Benjamin Franzke47eb8f42011-10-07 09:08:56 +020032surface_flush_device(cairo_surface_t *surface);
33
34void
Marek Chalupa0d7fe8d2014-10-29 14:51:22 +010035render_shadow(cairo_t *cr, cairo_surface_t *surface,
36 int x, int y, int width, int height, int margin, int top_margin);
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -040037
38void
39tile_source(cairo_t *cr, cairo_surface_t *surface,
Kristian Høgsberg9a686242010-08-18 15:28:04 -040040 int x, int y, int width, int height, int margin, int top_margin);
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -040041
Kristian Høgsberg1e164b92011-09-13 14:47:46 -040042void
43rounded_rect(cairo_t *cr, int x0, int y0, int x1, int y1, int radius);
44
Kristian Høgsberg27d38662011-10-20 13:11:12 -040045cairo_surface_t *
Kristian Høgsbergf02a6492012-03-12 01:05:25 -040046load_cairo_surface(const char *filename);
Kristian Høgsberg27d38662011-10-20 13:11:12 -040047
Kristian Høgsberg42abdf52012-05-15 22:14:27 -040048struct theme {
49 cairo_surface_t *active_frame;
50 cairo_surface_t *inactive_frame;
51 cairo_surface_t *shadow;
52 int frame_radius;
53 int margin;
54 int width;
55 int titlebar_height;
56};
57
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040058struct theme *
59theme_create(void);
Kristian Høgsberg42abdf52012-05-15 22:14:27 -040060void
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040061theme_destroy(struct theme *t);
62
Scott Moreauc6a7e4b2012-09-28 02:45:06 -060063enum {
64 THEME_FRAME_ACTIVE = 1,
Kristian Høgsberg89f4bc42013-10-23 22:12:13 -070065 THEME_FRAME_MAXIMIZED = 2,
66 THEME_FRAME_NO_TITLE = 4
Scott Moreauc6a7e4b2012-09-28 02:45:06 -060067};
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040068
Kristian Høgsberg42abdf52012-05-15 22:14:27 -040069void
Kristian Høgsbergc680e902013-10-23 21:49:30 -070070theme_set_background_source(struct theme *t, cairo_t *cr, uint32_t flags);
71void
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040072theme_render_frame(struct theme *t,
73 cairo_t *cr, int width, int height,
Boyan Ding850a5142014-08-05 15:22:04 +080074 const char *title, struct wl_list *buttons,
75 uint32_t flags);
Kristian Høgsberg42abdf52012-05-15 22:14:27 -040076
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -040077enum theme_location {
78 THEME_LOCATION_INTERIOR = 0,
79 THEME_LOCATION_RESIZING_TOP = 1,
80 THEME_LOCATION_RESIZING_BOTTOM = 2,
81 THEME_LOCATION_RESIZING_LEFT = 4,
82 THEME_LOCATION_RESIZING_TOP_LEFT = 5,
83 THEME_LOCATION_RESIZING_BOTTOM_LEFT = 6,
84 THEME_LOCATION_RESIZING_RIGHT = 8,
85 THEME_LOCATION_RESIZING_TOP_RIGHT = 9,
86 THEME_LOCATION_RESIZING_BOTTOM_RIGHT = 10,
87 THEME_LOCATION_RESIZING_MASK = 15,
88 THEME_LOCATION_EXTERIOR = 16,
89 THEME_LOCATION_TITLEBAR = 17,
90 THEME_LOCATION_CLIENT_AREA = 18,
91};
92
93enum theme_location
Scott Moreauc6a7e4b2012-09-28 02:45:06 -060094theme_get_location(struct theme *t, int x, int y, int width, int height, int flags);
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -040095
Jason Ekstrand01c9ec32013-10-13 19:08:39 -050096struct frame;
97
98enum frame_status {
99 FRAME_STATUS_NONE = 0,
100 FRAME_STATUS_REPAINT = 0x1,
101 FRAME_STATUS_MINIMIZE = 0x2,
102 FRAME_STATUS_MAXIMIZE = 0x4,
103 FRAME_STATUS_CLOSE = 0x8,
104 FRAME_STATUS_MENU = 0x10,
105 FRAME_STATUS_RESIZE = 0x20,
106 FRAME_STATUS_MOVE = 0x40,
107 FRAME_STATUS_ALL = 0x7f
108};
109
110enum frame_flag {
111 FRAME_FLAG_ACTIVE = 0x1,
112 FRAME_FLAG_MAXIMIZED = 0x2
113};
114
115enum {
116 FRAME_BUTTON_NONE = 0,
117 FRAME_BUTTON_CLOSE = 0x1,
118 FRAME_BUTTON_MAXIMIZE = 0x2,
119 FRAME_BUTTON_MINIMIZE = 0x4,
120 FRAME_BUTTON_ALL = 0x7
121};
122
123enum frame_button_state {
124 FRAME_BUTTON_RELEASED = 0,
125 FRAME_BUTTON_PRESSED = 1
126};
127
128struct frame *
129frame_create(struct theme *t, int32_t width, int32_t height, uint32_t buttons,
130 const char *title);
131
132void
133frame_destroy(struct frame *frame);
134
135/* May set FRAME_STATUS_REPAINT */
136int
137frame_set_title(struct frame *frame, const char *title);
138
139/* May set FRAME_STATUS_REPAINT */
140void
141frame_set_flag(struct frame *frame, enum frame_flag flag);
142
143/* May set FRAME_STATUS_REPAINT */
144void
145frame_unset_flag(struct frame *frame, enum frame_flag flag);
146
147/* May set FRAME_STATUS_REPAINT */
148void
149frame_resize(struct frame *frame, int32_t width, int32_t height);
150
151/* May set FRAME_STATUS_REPAINT */
152void
153frame_resize_inside(struct frame *frame, int32_t width, int32_t height);
154
155int32_t
156frame_width(struct frame *frame);
157
158int32_t
159frame_height(struct frame *frame);
160
161void
162frame_interior(struct frame *frame, int32_t *x, int32_t *y,
163 int32_t *width, int32_t *height);
164void
165frame_input_rect(struct frame *frame, int32_t *x, int32_t *y,
166 int32_t *width, int32_t *height);
167void
168frame_opaque_rect(struct frame *frame, int32_t *x, int32_t *y,
169 int32_t *width, int32_t *height);
170
Jasper St. Pierre74073452014-02-01 18:36:41 -0500171int
172frame_get_shadow_margin(struct frame *frame);
173
Jason Ekstrand01c9ec32013-10-13 19:08:39 -0500174uint32_t
175frame_status(struct frame *frame);
176
177void
178frame_status_clear(struct frame *frame, enum frame_status status);
179
180/* May set FRAME_STATUS_REPAINT */
181enum theme_location
182frame_pointer_enter(struct frame *frame, void *pointer, int x, int y);
183
184/* May set FRAME_STATUS_REPAINT */
185enum theme_location
186frame_pointer_motion(struct frame *frame, void *pointer, int x, int y);
187
188/* May set FRAME_STATUS_REPAINT */
189void
190frame_pointer_leave(struct frame *frame, void *pointer);
191
Jason Ekstrand0bdd58f2013-10-27 22:25:03 -0500192/* Call to indicate that a button has been pressed/released. The return
193 * value for a button release will be the same as for the corresponding
194 * press. This allows you to more easily track grabs. If you want the
195 * actual location, simply keep the location from the last
196 * frame_pointer_motion call.
197 *
198 * May set:
Jason Ekstrand01c9ec32013-10-13 19:08:39 -0500199 * FRAME_STATUS_MINIMIZE
200 * FRAME_STATUS_MAXIMIZE
201 * FRAME_STATUS_CLOSE
202 * FRAME_STATUS_MENU
203 * FRAME_STATUS_RESIZE
204 * FRAME_STATUS_MOVE
205 */
206enum theme_location
207frame_pointer_button(struct frame *frame, void *pointer,
208 uint32_t button, enum frame_button_state state);
209
Jason Ekstrand3f66cf92013-10-13 19:08:40 -0500210void
211frame_touch_down(struct frame *frame, void *data, int32_t id, int x, int y);
212
213void
214frame_touch_up(struct frame *frame, void *data, int32_t id);
Jason Ekstrand01c9ec32013-10-13 19:08:39 -0500215
Xiong Zhangbfb4ade2014-06-12 11:06:25 +0800216enum theme_location
217frame_double_click(struct frame *frame, void *pointer,
218 uint32_t button, enum frame_button_state state);
219
Jason Ekstrand01c9ec32013-10-13 19:08:39 -0500220void
Xiong Zhang382de462014-06-12 11:06:26 +0800221frame_double_touch_down(struct frame *frame, void *data, int32_t id,
222 int x, int y);
223
224void
225frame_double_touch_up(struct frame *frame, void *data, int32_t id);
226
227void
Jason Ekstrand01c9ec32013-10-13 19:08:39 -0500228frame_repaint(struct frame *frame, cairo_t *cr);
229
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -0500230#endif