awesome/common/draw.h

131 lines
3.4 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>
#include <X11/Xlib.h>
#include <X11/Xft/Xft.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
typedef struct Area Area;
struct Area
{
/** Co-ords of upper left corner */
int x;
int y;
int width;
int height;
Area *prev, *next;
};
2008-03-13 15:06:14 +01:00
DO_SLIST(Area, 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
area_intersect_area(Area a, Area 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);
}
static inline Area
area_get_intersect_area(Area a, Area b)
{
Area 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
{
/** Foreground color */
XColor fg;
/** Background color */
XColor bg;
/** Shadow color */
XColor shadow;
/** Border color */
XColor border;
/** Shadow offset */
int shadow_offset;
} colors_ctx_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;
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 *);
void draw_text(DrawCtx *, Area, Alignment, int, XftFont *, char *, colors_ctx_t);
2008-01-12 23:38:31 +01:00
void draw_rectangle(DrawCtx *, Area, Bool, XColor);
void draw_rectangle_gradient(DrawCtx *, Area, Bool, Area, XColor *, XColor *, XColor *);
void draw_graph_setup(DrawCtx *);
void draw_graph(DrawCtx *, Area, int *, int *, int, Area, XColor *, XColor *, XColor *);
void draw_graph_line(DrawCtx *, Area, int *, int, Area, 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 *);
Area draw_get_image_size(const char *filename);
Drawable draw_rotate(DrawCtx *, int, double, int, int);
2008-01-24 18:43:24 +01:00
unsigned short draw_textwidth(Display *, XftFont *, char *);
2008-01-04 19:17:20 +01:00
Alignment draw_get_align(const char *);
Bool draw_color_new(Display *, int, const char *, XColor *);
2007-12-27 17:12:49 +01:00
void area_list_remove(Area **, Area *);
2007-09-05 20:15:00 +02:00
#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80