forked from awesomeWM/awesome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdraw.h
More file actions
196 lines (172 loc) · 5.11 KB
/
Copy pathdraw.h
File metadata and controls
196 lines (172 loc) · 5.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
/*
* draw.h - draw functions header
*
* 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.
*
*/
#ifndef AWESOME_COMMON_DRAW_H
#define AWESOME_COMMON_DRAW_H
#include <cairo.h>
#include <pango/pangocairo.h>
#include <xcb/xcb.h>
#include "image.h"
#include "color.h"
#include "common/array.h"
/** 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;
typedef enum
{
AlignLeft = (0),
AlignRight = (1),
AlignCenter = (1 << 1),
AlignTop = (1 << 2),
AlignBottom = (1 << 3),
AlignFlex = (1 << 4),
AlignFixed = (1 << 5),
AlignMiddle = (1 << 6)
} alignment_t;
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;
};
typedef struct area_t area_t;
struct area_t
{
/** Co-ords of upper left corner */
int16_t x;
int16_t y;
uint16_t width;
uint16_t height;
};
DO_ARRAY(area_t, area, DO_NOTHING)
#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)
typedef struct
{
PangoFontDescription *desc;
int height;
} font_t;
typedef struct
{
xcb_pixmap_t pixmap;
xcb_visualtype_t *visual;
uint16_t width;
uint16_t height;
int phys_screen;
uint8_t depth;
cairo_t *cr;
cairo_surface_t *surface;
PangoLayout *layout;
xcolor_t fg;
xcolor_t bg;
} draw_context_t;
void draw_context_init(draw_context_t *, int, int, int,
xcb_pixmap_t, const xcolor_t *, const xcolor_t *);
/** Wipe a draw context.
* \param ctx The draw_context_t to wipe.
*/
static inline void
draw_context_wipe(draw_context_t *ctx)
{
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;
}
}
font_t *draw_font_new(const char *);
void draw_font_delete(font_t **);
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().
*/
static inline bool
a_iso2utf8(const char *str, ssize_t len, char **dest, ssize_t *dlen)
{
if(draw_iso2utf8(str, len, dest, dlen))
return true;
*dest = a_strdup(str);
if(dlen)
*dlen = len;
return false;
}
typedef struct
{
PangoAttrList *attr_list;
char *text;
ssize_t len;
} draw_text_context_t;
bool draw_text_context_init(draw_text_context_t *, const char *, ssize_t);
void draw_text(draw_context_t *, draw_text_context_t *, PangoEllipsizeMode, PangoWrapMode, alignment_t, padding_t *, area_t, area_t *);
void draw_rectangle(draw_context_t *, area_t, float, bool, const color_t *);
void draw_rectangle_gradient(draw_context_t *, area_t, float, bool, vector_t,
const color_t *, const color_t *, const color_t *);
void draw_graph_setup(draw_context_t *);
void draw_graph(draw_context_t *, area_t, int *, int *, int, position_t, vector_t,
const color_t *, const color_t *, const color_t *);
void draw_graph_line(draw_context_t *, area_t, int *, int, position_t, vector_t,
const color_t *, const color_t *, const color_t *);
void draw_image(draw_context_t *, int, int, double, image_t *);
void draw_rotate(draw_context_t *, xcb_drawable_t, xcb_drawable_t, int, int, int, int, double, int, int);
area_t draw_text_extents(draw_text_context_t *);
alignment_t draw_align_fromstr(const char *, ssize_t);
const char *draw_align_tostr(alignment_t);
static inline void
draw_text_context_wipe(draw_text_context_t *pdata)
{
if(pdata)
{
if(pdata->attr_list)
pango_attr_list_unref(pdata->attr_list);
p_delete(&pdata->text);
}
}
#endif
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80