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-09-17 16:38:38 +02:00
|
|
|
#include "image.h"
|
2009-04-17 17:39:31 +02:00
|
|
|
#include "color.h"
|
2008-06-22 22:09:48 +02:00
|
|
|
#include "common/array.h"
|
2008-05-30 12:30:20 +02:00
|
|
|
|
2008-12-02 17:51:57 +01:00
|
|
|
/** Padding type */
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/** Padding at top */
|
|
|
|
int top;
|
|
|
|
/** Padding at bottom */
|
|
|
|
int bottom;
|
|
|
|
/** Padding at left */
|
|
|
|
int left;
|
|
|
|
/** Padding at right */
|
|
|
|
int right;
|
|
|
|
} padding_t;
|
|
|
|
|
2008-01-04 19:17:20 +01:00
|
|
|
typedef enum
|
|
|
|
{
|
2008-10-23 17:28:07 +02:00
|
|
|
AlignLeft = (0),
|
|
|
|
AlignRight = (1),
|
|
|
|
AlignCenter = (1 << 1),
|
2008-11-04 15:48:18 +01:00
|
|
|
AlignTop = (1 << 2),
|
|
|
|
AlignBottom = (1 << 3),
|
2009-03-20 21:15:38 +01:00
|
|
|
AlignMiddle = (1 << 5)
|
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
|
|
|
};
|
|
|
|
|
|
|
|
#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-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-06-04 16:13:41 +02:00
|
|
|
xcb_pixmap_t pixmap;
|
2008-09-21 10:21:02 +02:00
|
|
|
uint16_t width;
|
|
|
|
uint16_t height;
|
2007-12-15 00:12:17 +01:00
|
|
|
int phys_screen;
|
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-09-20 19:31:38 +02:00
|
|
|
void draw_context_init(draw_context_t *, int, int, int,
|
|
|
|
xcb_pixmap_t, const xcolor_t *, const xcolor_t *);
|
2008-06-26 16:47:17 +02:00
|
|
|
|
2008-09-20 19:31:38 +02:00
|
|
|
/** Wipe a draw context.
|
|
|
|
* \param ctx The draw_context_t to wipe.
|
2008-05-14 15:22:31 +02:00
|
|
|
*/
|
|
|
|
static inline void
|
2008-09-20 19:31:38 +02:00
|
|
|
draw_context_wipe(draw_context_t *ctx)
|
2008-05-14 15:22:31 +02:00
|
|
|
{
|
2008-09-24 12:13:21 +02:00
|
|
|
if(ctx->layout)
|
|
|
|
{
|
|
|
|
g_object_unref(ctx->layout);
|
|
|
|
ctx->layout = NULL;
|
|
|
|
}
|
|
|
|
if(ctx->surface)
|
|
|
|
{
|
|
|
|
cairo_surface_destroy(ctx->surface);
|
|
|
|
ctx->surface = NULL;
|
|
|
|
}
|
|
|
|
if(ctx->cr)
|
|
|
|
{
|
|
|
|
cairo_destroy(ctx->cr);
|
|
|
|
ctx->cr = NULL;
|
|
|
|
}
|
2008-05-14 15:22:31 +02:00
|
|
|
}
|
2008-01-31 18:18:15 +01:00
|
|
|
|
2008-11-04 17:50:10 +01:00
|
|
|
font_t *draw_font_new(const char *);
|
2008-03-21 11:26:56 +01:00
|
|
|
void draw_font_delete(font_t **);
|
|
|
|
|
2008-12-03 14:37:35 +01:00
|
|
|
bool draw_iso2utf8(const char *, size_t, char **, ssize_t *);
|
|
|
|
|
|
|
|
/** Convert a string to UTF-8.
|
|
|
|
* \param str The string to convert.
|
|
|
|
* \param len The string length.
|
|
|
|
* \param dest The destination string that will be allocated.
|
|
|
|
* \param dlen The destination string length allocated, can be NULL.
|
|
|
|
* \return True if the conversion happened, false otherwise. In both case, dest
|
|
|
|
* and dlen will have value and dest have to be free().
|
|
|
|
*/
|
2008-06-10 07:32:35 +02:00
|
|
|
static inline bool
|
2008-12-03 14:37:35 +01:00
|
|
|
a_iso2utf8(const char *str, ssize_t len, char **dest, ssize_t *dlen)
|
2008-06-10 07:32:35 +02:00
|
|
|
{
|
2008-12-03 14:37:35 +01:00
|
|
|
if(draw_iso2utf8(str, len, dest, dlen))
|
2008-06-10 07:32:35 +02:00
|
|
|
return true;
|
2008-12-03 14:37:35 +01:00
|
|
|
|
2008-07-01 14:44:19 +02:00
|
|
|
*dest = a_strdup(str);
|
2008-12-03 14:37:35 +01:00
|
|
|
if(dlen)
|
|
|
|
*dlen = len;
|
|
|
|
|
2008-06-10 07:32:35 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-06-23 13:09:42 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
2008-08-18 14:29:50 +02:00
|
|
|
PangoAttrList *attr_list;
|
|
|
|
char *text;
|
|
|
|
ssize_t len;
|
2008-12-03 15:23:10 +01:00
|
|
|
} draw_text_context_t;
|
|
|
|
|
|
|
|
bool draw_text_context_init(draw_text_context_t *, const char *, ssize_t);
|
2008-12-03 15:25:44 +01:00
|
|
|
void draw_text(draw_context_t *, draw_text_context_t *, PangoEllipsizeMode, PangoWrapMode, alignment_t, padding_t *, area_t, area_t *);
|
2009-04-17 18:40:43 +02:00
|
|
|
void draw_rectangle(draw_context_t *, area_t, float, bool, const color_t *);
|
2008-07-02 12:25:52 +02:00
|
|
|
void draw_rectangle_gradient(draw_context_t *, area_t, float, bool, vector_t,
|
2009-04-17 18:40:43 +02:00
|
|
|
const color_t *, const color_t *, const color_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,
|
2009-04-17 18:40:43 +02:00
|
|
|
const color_t *, const color_t *, const color_t *);
|
2008-07-02 12:25:52 +02:00
|
|
|
void draw_graph_line(draw_context_t *, area_t, int *, int, position_t, vector_t,
|
2009-04-17 18:40:43 +02:00
|
|
|
const color_t *, const color_t *, const color_t *);
|
2008-12-03 15:23:10 +01:00
|
|
|
void draw_image(draw_context_t *, int, int, double, image_t *);
|
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-12-03 15:25:44 +01:00
|
|
|
area_t draw_text_extents(draw_text_context_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-08-28 19:34:20 +02:00
|
|
|
static inline void
|
2008-12-03 15:23:10 +01:00
|
|
|
draw_text_context_wipe(draw_text_context_t *pdata)
|
2008-08-28 19:34:20 +02:00
|
|
|
{
|
|
|
|
if(pdata)
|
2008-08-31 09:10:03 +02:00
|
|
|
{
|
2008-12-03 15:23:10 +01:00
|
|
|
if(pdata->attr_list)
|
|
|
|
pango_attr_list_unref(pdata->attr_list);
|
2008-08-31 09:10:03 +02:00
|
|
|
p_delete(&pdata->text);
|
|
|
|
}
|
2008-08-28 19:34:20 +02: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
|