blob: 4493b0d968c99d1fdf48ab772bf3f7d8ee6bcf4f [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
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -050029void
Benjamin Franzke47eb8f42011-10-07 09:08:56 +020030surface_flush_device(cairo_surface_t *surface);
31
32void
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -040033tile_mask(cairo_t *cr, cairo_surface_t *surface,
Kristian Høgsberg9a686242010-08-18 15:28:04 -040034 int x, int y, int width, int height, int margin, int top_margin);
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -040035
36void
37tile_source(cairo_t *cr, cairo_surface_t *surface,
Kristian Høgsberg9a686242010-08-18 15:28:04 -040038 int x, int y, int width, int height, int margin, int top_margin);
Kristian Høgsbergdcb71b62010-06-15 17:16:35 -040039
Kristian Høgsberg1e164b92011-09-13 14:47:46 -040040void
41rounded_rect(cairo_t *cr, int x0, int y0, int x1, int y1, int radius);
42
Kristian Høgsberg27d38662011-10-20 13:11:12 -040043cairo_surface_t *
Kristian Høgsbergf02a6492012-03-12 01:05:25 -040044load_cairo_surface(const char *filename);
Kristian Høgsberg27d38662011-10-20 13:11:12 -040045
Kristian Høgsberg42abdf52012-05-15 22:14:27 -040046struct theme {
47 cairo_surface_t *active_frame;
48 cairo_surface_t *inactive_frame;
49 cairo_surface_t *shadow;
50 int frame_radius;
51 int margin;
52 int width;
53 int titlebar_height;
54};
55
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040056struct theme *
57theme_create(void);
Kristian Høgsberg42abdf52012-05-15 22:14:27 -040058void
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040059theme_destroy(struct theme *t);
60
Scott Moreauc6a7e4b2012-09-28 02:45:06 -060061enum {
62 THEME_FRAME_ACTIVE = 1,
Kristian Høgsberg89f4bc42013-10-23 22:12:13 -070063 THEME_FRAME_MAXIMIZED = 2,
64 THEME_FRAME_NO_TITLE = 4
Scott Moreauc6a7e4b2012-09-28 02:45:06 -060065};
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040066
Kristian Høgsberg42abdf52012-05-15 22:14:27 -040067void
Kristian Høgsbergc680e902013-10-23 21:49:30 -070068theme_set_background_source(struct theme *t, cairo_t *cr, uint32_t flags);
69void
Kristian Høgsberg5adb4802012-05-15 22:25:28 -040070theme_render_frame(struct theme *t,
71 cairo_t *cr, int width, int height,
72 const char *title, uint32_t flags);
Kristian Høgsberg42abdf52012-05-15 22:14:27 -040073
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -040074enum theme_location {
75 THEME_LOCATION_INTERIOR = 0,
76 THEME_LOCATION_RESIZING_TOP = 1,
77 THEME_LOCATION_RESIZING_BOTTOM = 2,
78 THEME_LOCATION_RESIZING_LEFT = 4,
79 THEME_LOCATION_RESIZING_TOP_LEFT = 5,
80 THEME_LOCATION_RESIZING_BOTTOM_LEFT = 6,
81 THEME_LOCATION_RESIZING_RIGHT = 8,
82 THEME_LOCATION_RESIZING_TOP_RIGHT = 9,
83 THEME_LOCATION_RESIZING_BOTTOM_RIGHT = 10,
84 THEME_LOCATION_RESIZING_MASK = 15,
85 THEME_LOCATION_EXTERIOR = 16,
86 THEME_LOCATION_TITLEBAR = 17,
87 THEME_LOCATION_CLIENT_AREA = 18,
88};
89
90enum theme_location
Scott Moreauc6a7e4b2012-09-28 02:45:06 -060091theme_get_location(struct theme *t, int x, int y, int width, int height, int flags);
Kristian Høgsbergf96e6c02012-05-22 16:38:53 -040092
Jason Ekstrand01c9ec32013-10-13 19:08:39 -050093struct frame;
94
95enum frame_status {
96 FRAME_STATUS_NONE = 0,
97 FRAME_STATUS_REPAINT = 0x1,
98 FRAME_STATUS_MINIMIZE = 0x2,
99 FRAME_STATUS_MAXIMIZE = 0x4,
100 FRAME_STATUS_CLOSE = 0x8,
101 FRAME_STATUS_MENU = 0x10,
102 FRAME_STATUS_RESIZE = 0x20,
103 FRAME_STATUS_MOVE = 0x40,
104 FRAME_STATUS_ALL = 0x7f
105};
106
107enum frame_flag {
108 FRAME_FLAG_ACTIVE = 0x1,
109 FRAME_FLAG_MAXIMIZED = 0x2
110};
111
112enum {
113 FRAME_BUTTON_NONE = 0,
114 FRAME_BUTTON_CLOSE = 0x1,
115 FRAME_BUTTON_MAXIMIZE = 0x2,
116 FRAME_BUTTON_MINIMIZE = 0x4,
117 FRAME_BUTTON_ALL = 0x7
118};
119
120enum frame_button_state {
121 FRAME_BUTTON_RELEASED = 0,
122 FRAME_BUTTON_PRESSED = 1
123};
124
125struct frame *
126frame_create(struct theme *t, int32_t width, int32_t height, uint32_t buttons,
127 const char *title);
128
129void
130frame_destroy(struct frame *frame);
131
132/* May set FRAME_STATUS_REPAINT */
133int
134frame_set_title(struct frame *frame, const char *title);
135
136/* May set FRAME_STATUS_REPAINT */
137void
138frame_set_flag(struct frame *frame, enum frame_flag flag);
139
140/* May set FRAME_STATUS_REPAINT */
141void
142frame_unset_flag(struct frame *frame, enum frame_flag flag);
143
144/* May set FRAME_STATUS_REPAINT */
145void
146frame_resize(struct frame *frame, int32_t width, int32_t height);
147
148/* May set FRAME_STATUS_REPAINT */
149void
150frame_resize_inside(struct frame *frame, int32_t width, int32_t height);
151
152int32_t
153frame_width(struct frame *frame);
154
155int32_t
156frame_height(struct frame *frame);
157
158void
159frame_interior(struct frame *frame, int32_t *x, int32_t *y,
160 int32_t *width, int32_t *height);
161void
162frame_input_rect(struct frame *frame, int32_t *x, int32_t *y,
163 int32_t *width, int32_t *height);
164void
165frame_opaque_rect(struct frame *frame, int32_t *x, int32_t *y,
166 int32_t *width, int32_t *height);
167
Jasper St. Pierre74073452014-02-01 18:36:41 -0500168int
169frame_get_shadow_margin(struct frame *frame);
170
Jason Ekstrand01c9ec32013-10-13 19:08:39 -0500171uint32_t
172frame_status(struct frame *frame);
173
174void
175frame_status_clear(struct frame *frame, enum frame_status status);
176
177/* May set FRAME_STATUS_REPAINT */
178enum theme_location
179frame_pointer_enter(struct frame *frame, void *pointer, int x, int y);
180
181/* May set FRAME_STATUS_REPAINT */
182enum theme_location
183frame_pointer_motion(struct frame *frame, void *pointer, int x, int y);
184
185/* May set FRAME_STATUS_REPAINT */
186void
187frame_pointer_leave(struct frame *frame, void *pointer);
188
Jason Ekstrand0bdd58f2013-10-27 22:25:03 -0500189/* Call to indicate that a button has been pressed/released. The return
190 * value for a button release will be the same as for the corresponding
191 * press. This allows you to more easily track grabs. If you want the
192 * actual location, simply keep the location from the last
193 * frame_pointer_motion call.
194 *
195 * May set:
Jason Ekstrand01c9ec32013-10-13 19:08:39 -0500196 * FRAME_STATUS_MINIMIZE
197 * FRAME_STATUS_MAXIMIZE
198 * FRAME_STATUS_CLOSE
199 * FRAME_STATUS_MENU
200 * FRAME_STATUS_RESIZE
201 * FRAME_STATUS_MOVE
202 */
203enum theme_location
204frame_pointer_button(struct frame *frame, void *pointer,
205 uint32_t button, enum frame_button_state state);
206
Jason Ekstrand3f66cf92013-10-13 19:08:40 -0500207void
208frame_touch_down(struct frame *frame, void *data, int32_t id, int x, int y);
209
210void
211frame_touch_up(struct frame *frame, void *data, int32_t id);
Jason Ekstrand01c9ec32013-10-13 19:08:39 -0500212
213void
214frame_repaint(struct frame *frame, cairo_t *cr);
215
Kristian Høgsberg2f2cfae2008-11-08 22:46:30 -0500216#endif