2007-10-03 17:26:14 +02:00
|
|
|
/*
|
2007-09-12 14:29:51 +02:00
|
|
|
* draw.h - draw functions header
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
2008-01-02 16:59:43 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-10-03 17:26:14 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
2008-01-25 21:39:08 +01:00
|
|
|
#include <cairo.h>
|
2008-01-01 17:33:12 +01:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xft/Xft.h>
|
|
|
|
|
2008-01-28 18:30:23 +01:00
|
|
|
#include "common/util.h"
|
|
|
|
#include "common/list.h"
|
|
|
|
|
2008-01-04 19:17:20 +01:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
AlignLeft,
|
|
|
|
AlignRight,
|
|
|
|
AlignFlex,
|
|
|
|
AlignCenter
|
|
|
|
} Alignment;
|
2008-01-03 15:57:07 +01:00
|
|
|
|
2008-01-28 18:30:23 +01:00
|
|
|
typedef struct Area Area;
|
|
|
|
struct Area
|
2007-12-29 21:44:44 +01:00
|
|
|
{
|
2008-01-28 18:30:23 +01:00
|
|
|
/** Co-ords of upper left corner */
|
2007-12-29 21:44:44 +01:00
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int width;
|
|
|
|
int height;
|
2008-01-28 18:30:23 +01:00
|
|
|
Area *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
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)
|
2007-12-29 21:44:44 +01:00
|
|
|
|
2008-01-28 11:51:09 +01:00
|
|
|
static inline Bool
|
2008-01-28 18:30:23 +01:00
|
|
|
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)
|
2008-01-28 11:51:09 +01:00
|
|
|
{
|
2008-01-28 18:30:23 +01:00
|
|
|
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;
|
2008-01-28 11:51:09 +01:00
|
|
|
}
|
|
|
|
|
2007-12-27 17:12:49 +01:00
|
|
|
typedef struct
|
2007-12-15 00:12:17 +01:00
|
|
|
{
|
2008-01-24 18:43:24 +01:00
|
|
|
Display *display;
|
2007-12-15 00:12:17 +01:00
|
|
|
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;
|
2007-12-15 00:12:17 +01:00
|
|
|
|
2008-01-27 19:02:08 +01:00
|
|
|
DrawCtx *draw_context_new(Display *, int, int, int, Drawable);
|
2008-01-31 18:18:15 +01:00
|
|
|
void draw_context_delete(DrawCtx *);
|
|
|
|
|
2008-01-23 16:52:15 +01:00
|
|
|
void draw_text(DrawCtx *, Area, Alignment, int, XftFont *, const char *, XColor fg, XColor bg);
|
2008-01-12 23:38:31 +01:00
|
|
|
void draw_rectangle(DrawCtx *, Area, Bool, XColor);
|
2008-01-25 21:39:08 +01:00
|
|
|
|
2008-01-31 19:40:47 +01:00
|
|
|
void draw_graph_setup(DrawCtx *);
|
|
|
|
void draw_graph(DrawCtx *, int, int, int, int *, int *, int, XColor);
|
|
|
|
void draw_graph_line(DrawCtx *, int, int, int, int *, int, XColor);
|
2008-01-25 21:39:08 +01:00
|
|
|
|
2007-12-22 20:17:24 +01:00
|
|
|
void draw_circle(DrawCtx *, int, int, int, Bool, XColor);
|
2007-12-27 00:13:44 +01:00
|
|
|
void draw_image(DrawCtx *, int, int, int, const char *);
|
2007-12-22 20:14:13 +01:00
|
|
|
void draw_image_from_argb_data(DrawCtx *, int, int, int, int, int, unsigned char *);
|
2007-12-29 21:44:44 +01:00
|
|
|
Area draw_get_image_size(const char *filename);
|
2007-12-15 00:12:17 +01:00
|
|
|
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 *);
|
2008-01-27 18:56:37 +01:00
|
|
|
XColor draw_color_new(Display *, int, const char *);
|
2007-12-27 17:12:49 +01:00
|
|
|
|
2008-01-28 18:30:23 +01:00
|
|
|
void area_list_remove(Area **, Area *);
|
|
|
|
|
2007-09-05 20:15:00 +02:00
|
|
|
#endif
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|