You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
69 lines
2.1 KiB
16 years ago
|
/*
|
||
|
* Copyright © 2008 Kristian Høgsberg
|
||
|
*
|
||
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
||
|
* documentation for any purpose is hereby granted without fee, provided that
|
||
|
* the above copyright notice appear in all copies and that both that copyright
|
||
|
* notice and this permission notice appear in supporting documentation, and
|
||
|
* that the name of the copyright holders not be used in advertising or
|
||
|
* publicity pertaining to distribution of the software without specific,
|
||
|
* written prior permission. The copyright holders make no representations
|
||
|
* about the suitability of this software for any purpose. It is provided "as
|
||
|
* is" without express or implied warranty.
|
||
|
*
|
||
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
||
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
||
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
||
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||
|
* OF THIS SOFTWARE.
|
||
|
*/
|
||
|
|
||
16 years ago
|
#ifndef _CAIRO_UTIL_H
|
||
|
#define _CAIRO_UTIL_H
|
||
|
|
||
13 years ago
|
void
|
||
|
surface_flush_device(cairo_surface_t *surface);
|
||
|
|
||
16 years ago
|
void
|
||
16 years ago
|
blur_surface(cairo_surface_t *surface, int margin);
|
||
16 years ago
|
|
||
15 years ago
|
void
|
||
|
tile_mask(cairo_t *cr, cairo_surface_t *surface,
|
||
14 years ago
|
int x, int y, int width, int height, int margin, int top_margin);
|
||
15 years ago
|
|
||
|
void
|
||
|
tile_source(cairo_t *cr, cairo_surface_t *surface,
|
||
14 years ago
|
int x, int y, int width, int height, int margin, int top_margin);
|
||
15 years ago
|
|
||
13 years ago
|
void
|
||
|
rounded_rect(cairo_t *cr, int x0, int y0, int x1, int y1, int radius);
|
||
|
|
||
13 years ago
|
cairo_surface_t *
|
||
13 years ago
|
load_cairo_surface(const char *filename);
|
||
13 years ago
|
|
||
13 years ago
|
struct theme {
|
||
|
cairo_surface_t *active_frame;
|
||
|
cairo_surface_t *inactive_frame;
|
||
|
cairo_surface_t *shadow;
|
||
|
int frame_radius;
|
||
|
int margin;
|
||
|
int width;
|
||
|
int titlebar_height;
|
||
|
};
|
||
|
|
||
13 years ago
|
struct theme *
|
||
|
theme_create(void);
|
||
13 years ago
|
void
|
||
13 years ago
|
theme_destroy(struct theme *t);
|
||
|
|
||
|
#define THEME_FRAME_ACTIVE 1
|
||
|
|
||
13 years ago
|
void
|
||
13 years ago
|
theme_render_frame(struct theme *t,
|
||
|
cairo_t *cr, int width, int height,
|
||
|
const char *title, uint32_t flags);
|
||
13 years ago
|
|
||
16 years ago
|
#endif
|