awesome/common/draw.h

146 lines
3.8 KiB
C
Raw Normal View History

/*
2007-09-12 14:29:51 +02:00
* draw.h - draw functions header
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
2007-09-12 14:29:51 +02:00
*/
2007-09-05 20:15:00 +02:00
2008-01-26 18:00:47 +01:00
#ifndef AWESOME_COMMON_DRAW_H
#define AWESOME_COMMON_DRAW_H
2007-09-05 20:15:00 +02:00
#include <cairo.h>
2008-03-13 17:57:38 +01:00
#include <confuse.h>
#include <X11/Xlib.h>
#include <pango/pangocairo.h>
#include "common/util.h"
#include "common/list.h"
2008-01-04 19:17:20 +01:00
typedef enum
{
AlignLeft,
AlignRight,
AlignCenter,
2008-01-04 19:17:20 +01:00
AlignFlex,
AlignAuto
2008-01-04 19:17:20 +01:00
} Alignment;
2008-01-03 15:57:07 +01:00
2008-03-14 09:37:25 +01:00
typedef struct area_t area_t;
struct area_t
{
/** Co-ords of upper left corner */
int x;
int y;
int width;
int height;
2008-03-14 09:37:25 +01:00
area_t *prev, *next;
};
2008-03-14 09:37:25 +01:00
DO_SLIST(area_t, area, p_delete)
#define AREA_LEFT(a) ((a).x)
#define AREA_TOP(a) ((a).y)
#define AREA_RIGHT(a) ((a).x + (a).width)
#define AREA_BOTTOM(a) ((a).y + (a).height)
static inline Bool
2008-03-14 09:37:25 +01:00
area_intersect_area(area_t a, area_t b)
{
return (b.x < a.x + a.width
&& b.x + b.width > a.x
&& b.y < a.y + a.height
&& b.y + b.height > a.y);
}
2008-03-14 09:37:25 +01:00
static inline area_t
area_get_intersect_area(area_t a, area_t b)
{
2008-03-14 09:37:25 +01:00
area_t g;
g.x = MAX(a.x, b.x);
g.y = MAX(a.y, b.y);
g.width = MIN(a.x + a.width, b.x + b.width) - g.x;
g.height = MIN(a.y + a.height, b.y + b.height) - g.y;
return g;
}
typedef struct
{
PangoFontDescription *desc;
int height;
} font_t;
typedef struct
{
/** Foreground color */
XColor fg;
/** Background color */
XColor bg;
/** Shadow color */
XColor shadow;
/** Border color */
XColor border;
/** Shadow offset */
int shadow_offset;
/** Font */
font_t *font;
} style_t;
2007-12-27 17:12:49 +01:00
typedef struct
{
2008-01-24 18:43:24 +01:00
Display *display;
Drawable drawable;
Visual *visual;
int width;
int height;
int phys_screen;
int depth;
2008-01-31 18:18:15 +01:00
cairo_t *cr;
cairo_surface_t *surface;
PangoLayout *layout;
2007-12-27 17:12:49 +01:00
} DrawCtx;
DrawCtx *draw_context_new(Display *, int, int, int, Drawable);
2008-01-31 18:18:15 +01:00
void draw_context_delete(DrawCtx *);
font_t *draw_font_new(Display *disp, char *fontname);
void draw_font_free(font_t *);
2008-03-14 09:37:25 +01:00
void draw_text(DrawCtx *, area_t, Alignment, int, char *, style_t);
void draw_rectangle(DrawCtx *, area_t, Bool, XColor);
void draw_rectangle_gradient(DrawCtx *, area_t, Bool, area_t, XColor *, XColor *, XColor *);
void draw_graph_setup(DrawCtx *);
void draw_graph(DrawCtx *, area_t, int *, int *, int, Position, area_t, XColor *, XColor *, XColor *);
void draw_graph_line(DrawCtx *, area_t, int *, int, Position, area_t, XColor *, XColor *, XColor *);
2007-12-22 20:17:24 +01:00
void draw_circle(DrawCtx *, int, int, int, Bool, XColor);
void draw_image(DrawCtx *, int, int, int, const char *);
void draw_image_from_argb_data(DrawCtx *, int, int, int, int, int, unsigned char *);
2008-03-14 09:37:25 +01:00
area_t draw_get_image_size(const char *filename);
Drawable draw_rotate(DrawCtx *, int, double, int, int);
unsigned short draw_textwidth(Display *, font_t *, char *);
2008-01-04 19:17:20 +01:00
Alignment draw_get_align(const char *);
Bool draw_color_new(Display *, int, const char *, XColor *);
void draw_style_init(Display *, int, cfg_t *, style_t *, style_t *);
2007-12-27 17:12:49 +01:00
2008-03-14 09:37:25 +01:00
void area_list_remove(area_t **, area_t *);
2007-09-05 20:15:00 +02:00
#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80