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-03-21 16:50:17 +01:00
|
|
|
#include <pango/pangocairo.h>
|
2008-03-13 17:57:38 +01:00
|
|
|
|
2008-03-21 16:50:17 +01:00
|
|
|
#include <xcb/xcb.h>
|
2008-01-01 17:33:12 +01:00
|
|
|
|
2008-06-22 22:09:48 +02:00
|
|
|
#include "common/array.h"
|
2008-01-28 18:30:23 +01:00
|
|
|
#include "common/list.h"
|
2008-06-23 13:09:42 +02:00
|
|
|
#include "common/buffer.h"
|
2008-05-30 12:30:20 +02:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2008-07-02 11:04:17 +02:00
|
|
|
unsigned initialized : 1;
|
2008-05-30 12:30:20 +02:00
|
|
|
uint32_t pixel;
|
|
|
|
uint16_t red;
|
|
|
|
uint16_t green;
|
|
|
|
uint16_t blue;
|
2008-05-30 12:34:38 +02:00
|
|
|
uint16_t alpha;
|
2008-05-30 12:30:20 +02:00
|
|
|
} xcolor_t;
|
2008-01-28 18:30:23 +01:00
|
|
|
|
2008-01-04 19:17:20 +01:00
|
|
|
typedef enum
|
|
|
|
{
|
2008-05-20 15:39:47 +02:00
|
|
|
AlignLeft = 0,
|
2008-01-04 19:17:20 +01:00
|
|
|
AlignRight,
|
2008-02-08 10:59:55 +01:00
|
|
|
AlignCenter,
|
2008-01-04 19:17:20 +01:00
|
|
|
AlignFlex,
|
2008-02-08 10:59:55 +01:00
|
|
|
AlignAuto
|
2008-04-11 11:18:23 +02:00
|
|
|
} alignment_t;
|
2008-01-03 15:57:07 +01:00
|
|
|
|
2008-07-02 12:25:52 +02:00
|
|
|
typedef struct vector_t vector_t;
|
|
|
|
struct vector_t
|
|
|
|
{
|
|
|
|
/** Co-ords of starting point */
|
|
|
|
int16_t x;
|
|
|
|
int16_t y;
|
|
|
|
/** Offset to starting point */
|
|
|
|
int16_t x_offset;
|
|
|
|
int16_t y_offset;
|
|
|
|
};
|
|
|
|
|
2008-03-14 09:37:25 +01:00
|
|
|
typedef struct area_t area_t;
|
|
|
|
struct area_t
|
2007-12-29 21:44:44 +01:00
|
|
|
{
|
2008-01-28 18:30:23 +01:00
|
|
|
/** Co-ords of upper left corner */
|
2008-06-22 22:09:48 +02:00
|
|
|
int16_t x;
|
|
|
|
int16_t y;
|
|
|
|
uint16_t width;
|
|
|
|
uint16_t height;
|
2008-01-28 18:30:23 +01:00
|
|
|
};
|
|
|
|
|
2008-07-24 15:23:18 +02:00
|
|
|
DO_ARRAY(area_t, area, DO_NOTHING)
|
2008-01-28 18:30:23 +01:00
|
|
|
|
|
|
|
#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-03-21 16:50:17 +01:00
|
|
|
static inline bool
|
2008-03-14 09:37:25 +01:00
|
|
|
area_intersect_area(area_t a, area_t b)
|
2008-01-28 18:30:23 +01:00
|
|
|
{
|
|
|
|
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-01-28 11:51:09 +01:00
|
|
|
{
|
2008-03-14 09:37:25 +01:00
|
|
|
area_t g;
|
2008-01-28 18:30:23 +01:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2008-03-17 12:38:49 +01:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
PangoFontDescription *desc;
|
|
|
|
int height;
|
|
|
|
} font_t;
|
|
|
|
|
2007-12-27 17:12:49 +01:00
|
|
|
typedef struct
|
2007-12-15 00:12:17 +01:00
|
|
|
{
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_connection_t *connection;
|
2008-06-04 16:13:41 +02:00
|
|
|
xcb_pixmap_t pixmap;
|
2008-03-21 16:50:17 +01:00
|
|
|
xcb_visualtype_t *visual;
|
2007-12-15 00:12:17 +01:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int phys_screen;
|
|
|
|
int depth;
|
2008-01-31 18:18:15 +01:00
|
|
|
cairo_t *cr;
|
|
|
|
cairo_surface_t *surface;
|
2008-03-17 12:38:49 +01:00
|
|
|
PangoLayout *layout;
|
2008-06-02 12:18:17 +02:00
|
|
|
xcolor_t fg;
|
|
|
|
xcolor_t bg;
|
2008-04-28 15:32:30 +02:00
|
|
|
} draw_context_t;
|
2007-12-15 00:12:17 +01:00
|
|
|
|
2008-06-03 20:42:48 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
void *data;
|
|
|
|
size_t width;
|
|
|
|
size_t height;
|
|
|
|
} draw_image_t;
|
|
|
|
|
Streamline xcolor_t.
Do not have a ->name char * field, but a char[32] instead. This isn't a
big problem, the longest color in /etc/X11/rgb.txt is 23 chars long, and
if it becomes a problem one day, one could just strip the name and
generate an hexadecimal representation on the fly instead. But allocating
the name is asking for a lot of trouble.
Since we do not allocate anything anymore, just don't allocate anything
anymore at all, it avoids the mess of xcolor_copy/_wipe and fixes a lot of
sleeping bugs (p_dup were used e.g., which is wrong).
Pass xcolor_t *, xcolor_t becomes too big to be passed by value. Add
consts at some places.
xcolor_new allocates nothing, hence is renamed xcolor_init, has xcolor_t
as a first argument (OO-style, this is self), and doesn't touch the
structure at all if it returns false, which allow us to skip a lot of
intermediates values.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-07-02 10:14:42 +02:00
|
|
|
draw_context_t *
|
|
|
|
draw_context_new(xcb_connection_t *, int, int, int, xcb_drawable_t,
|
|
|
|
const xcolor_t *, const xcolor_t*);
|
2008-06-26 16:47:17 +02:00
|
|
|
|
|
|
|
/** Delete a draw context.
|
|
|
|
* \param ctx The draw_context_t to delete.
|
2008-05-14 15:22:31 +02:00
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
draw_context_delete(draw_context_t **ctx)
|
|
|
|
{
|
|
|
|
if(*ctx)
|
|
|
|
{
|
2008-05-20 15:39:47 +02:00
|
|
|
if((*ctx)->layout)
|
|
|
|
g_object_unref((*ctx)->layout);
|
|
|
|
if((*ctx)->surface)
|
|
|
|
cairo_surface_destroy((*ctx)->surface);
|
|
|
|
if((*ctx)->cr)
|
|
|
|
cairo_destroy((*ctx)->cr);
|
2008-05-14 15:22:31 +02:00
|
|
|
p_delete(ctx);
|
|
|
|
}
|
|
|
|
}
|
2008-01-31 18:18:15 +01:00
|
|
|
|
2008-05-20 15:39:47 +02:00
|
|
|
font_t *draw_font_new(xcb_connection_t *, int, const char *);
|
2008-03-21 11:26:56 +01:00
|
|
|
void draw_font_delete(font_t **);
|
|
|
|
|
2008-07-01 14:44:19 +02:00
|
|
|
char * draw_iso2utf8(const char *, size_t);
|
2008-06-10 07:32:35 +02:00
|
|
|
|
|
|
|
static inline bool
|
2008-07-01 14:44:19 +02:00
|
|
|
a_iso2utf8(char **dest, const char *str, ssize_t len)
|
2008-06-10 07:32:35 +02:00
|
|
|
{
|
|
|
|
char *utf8;
|
2008-07-01 14:44:19 +02:00
|
|
|
if((utf8 = draw_iso2utf8(str, len)))
|
2008-06-10 07:32:35 +02:00
|
|
|
{
|
2008-07-01 14:44:19 +02:00
|
|
|
*dest = utf8;
|
2008-06-10 07:32:35 +02:00
|
|
|
return true;
|
|
|
|
}
|
2008-07-01 14:44:19 +02:00
|
|
|
*dest = a_strdup(str);
|
2008-06-10 07:32:35 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-06-23 13:09:42 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
xcb_connection_t *connection;
|
|
|
|
int phys_screen;
|
|
|
|
buffer_t text;
|
|
|
|
alignment_t align;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int left, right;
|
|
|
|
} margin;
|
|
|
|
bool has_bg_color;
|
|
|
|
xcolor_t bg_color;
|
|
|
|
draw_image_t *bg_image;
|
2008-06-23 18:01:15 +02:00
|
|
|
alignment_t bg_align;
|
2008-06-23 18:07:47 +02:00
|
|
|
bool bg_resize;
|
2008-06-23 13:09:42 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
int offset;
|
|
|
|
xcolor_t color;
|
|
|
|
} shadow;
|
2008-07-09 10:25:29 +02:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
int width;
|
|
|
|
xcolor_t color;
|
|
|
|
} border;
|
2008-06-23 13:09:42 +02:00
|
|
|
} draw_parser_data_t;
|
|
|
|
|
2008-06-23 15:21:29 +02:00
|
|
|
void draw_parser_data_init(draw_parser_data_t *);
|
|
|
|
void draw_parser_data_wipe(draw_parser_data_t *);
|
|
|
|
|
2008-07-10 17:09:57 +02:00
|
|
|
bool draw_text_markup_expand(draw_parser_data_t *, const char *, ssize_t);
|
|
|
|
|
2008-07-10 15:35:19 +02:00
|
|
|
void draw_text(draw_context_t *, font_t *, area_t, const char *, ssize_t len, draw_parser_data_t *);
|
Streamline xcolor_t.
Do not have a ->name char * field, but a char[32] instead. This isn't a
big problem, the longest color in /etc/X11/rgb.txt is 23 chars long, and
if it becomes a problem one day, one could just strip the name and
generate an hexadecimal representation on the fly instead. But allocating
the name is asking for a lot of trouble.
Since we do not allocate anything anymore, just don't allocate anything
anymore at all, it avoids the mess of xcolor_copy/_wipe and fixes a lot of
sleeping bugs (p_dup were used e.g., which is wrong).
Pass xcolor_t *, xcolor_t becomes too big to be passed by value. Add
consts at some places.
xcolor_new allocates nothing, hence is renamed xcolor_init, has xcolor_t
as a first argument (OO-style, this is self), and doesn't touch the
structure at all if it returns false, which allow us to skip a lot of
intermediates values.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-07-02 10:14:42 +02:00
|
|
|
void draw_rectangle(draw_context_t *, area_t, float, bool, const xcolor_t *);
|
2008-07-02 12:25:52 +02:00
|
|
|
void draw_rectangle_gradient(draw_context_t *, area_t, float, bool, vector_t,
|
Streamline xcolor_t.
Do not have a ->name char * field, but a char[32] instead. This isn't a
big problem, the longest color in /etc/X11/rgb.txt is 23 chars long, and
if it becomes a problem one day, one could just strip the name and
generate an hexadecimal representation on the fly instead. But allocating
the name is asking for a lot of trouble.
Since we do not allocate anything anymore, just don't allocate anything
anymore at all, it avoids the mess of xcolor_copy/_wipe and fixes a lot of
sleeping bugs (p_dup were used e.g., which is wrong).
Pass xcolor_t *, xcolor_t becomes too big to be passed by value. Add
consts at some places.
xcolor_new allocates nothing, hence is renamed xcolor_init, has xcolor_t
as a first argument (OO-style, this is self), and doesn't touch the
structure at all if it returns false, which allow us to skip a lot of
intermediates values.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-07-02 10:14:42 +02:00
|
|
|
const xcolor_t *, const xcolor_t *, const xcolor_t *);
|
2008-01-25 21:39:08 +01:00
|
|
|
|
2008-04-28 15:32:30 +02:00
|
|
|
void draw_graph_setup(draw_context_t *);
|
2008-07-02 12:25:52 +02:00
|
|
|
void draw_graph(draw_context_t *, area_t, int *, int *, int, position_t, vector_t,
|
Streamline xcolor_t.
Do not have a ->name char * field, but a char[32] instead. This isn't a
big problem, the longest color in /etc/X11/rgb.txt is 23 chars long, and
if it becomes a problem one day, one could just strip the name and
generate an hexadecimal representation on the fly instead. But allocating
the name is asking for a lot of trouble.
Since we do not allocate anything anymore, just don't allocate anything
anymore at all, it avoids the mess of xcolor_copy/_wipe and fixes a lot of
sleeping bugs (p_dup were used e.g., which is wrong).
Pass xcolor_t *, xcolor_t becomes too big to be passed by value. Add
consts at some places.
xcolor_new allocates nothing, hence is renamed xcolor_init, has xcolor_t
as a first argument (OO-style, this is self), and doesn't touch the
structure at all if it returns false, which allow us to skip a lot of
intermediates values.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-07-02 10:14:42 +02:00
|
|
|
const xcolor_t *, const xcolor_t *, const xcolor_t *);
|
2008-07-02 12:25:52 +02:00
|
|
|
void draw_graph_line(draw_context_t *, area_t, int *, int, position_t, vector_t,
|
Streamline xcolor_t.
Do not have a ->name char * field, but a char[32] instead. This isn't a
big problem, the longest color in /etc/X11/rgb.txt is 23 chars long, and
if it becomes a problem one day, one could just strip the name and
generate an hexadecimal representation on the fly instead. But allocating
the name is asking for a lot of trouble.
Since we do not allocate anything anymore, just don't allocate anything
anymore at all, it avoids the mess of xcolor_copy/_wipe and fixes a lot of
sleeping bugs (p_dup were used e.g., which is wrong).
Pass xcolor_t *, xcolor_t becomes too big to be passed by value. Add
consts at some places.
xcolor_new allocates nothing, hence is renamed xcolor_init, has xcolor_t
as a first argument (OO-style, this is self), and doesn't touch the
structure at all if it returns false, which allow us to skip a lot of
intermediates values.
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-07-02 10:14:42 +02:00
|
|
|
const xcolor_t *, const xcolor_t *, const xcolor_t *);
|
2008-06-03 20:42:48 +02:00
|
|
|
draw_image_t *draw_image_new(const char *);
|
|
|
|
void draw_image_delete(draw_image_t **);
|
|
|
|
void draw_image(draw_context_t *, int, int, int, draw_image_t *);
|
2008-04-28 15:32:30 +02:00
|
|
|
void draw_image_from_argb_data(draw_context_t *, int, int, int, int, int, unsigned char *);
|
2008-05-30 17:53:10 +02:00
|
|
|
void draw_rotate(draw_context_t *, xcb_drawable_t, xcb_drawable_t, int, int, int, int, double, int, int);
|
2008-07-10 15:06:09 +02:00
|
|
|
area_t draw_text_extents(xcb_connection_t *, int, font_t *, const char *, ssize_t, draw_parser_data_t *);
|
2008-06-23 14:01:33 +02:00
|
|
|
alignment_t draw_align_fromstr(const char *, ssize_t);
|
2008-07-01 16:29:50 +02:00
|
|
|
const char *draw_align_tostr(alignment_t);
|
2008-06-28 13:30:17 +02:00
|
|
|
|
2008-07-10 15:30:16 +02:00
|
|
|
bool xcolor_init(xcolor_t *c, xcb_connection_t *, int, const char *, ssize_t);
|
2007-12-27 17:12:49 +01:00
|
|
|
|
2008-06-22 22:09:48 +02:00
|
|
|
void area_array_remove(area_array_t *, area_t);
|
2008-01-28 18:30:23 +01:00
|
|
|
|
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
|