summaryrefslogtreecommitdiff
path: root/plugins/gtkui/drawing.h
blob: e6a7ee0a37791204f095b562b850e527b18a0e3c (plain)
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
/*
    DeaDBeeF - ultimate music player for GNU/Linux systems with X11
    Copyright (C) 2009-2010 Alexey Yakovenko <waker@users.sourceforge.net>

    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 __DRAWING_H
#define __DRAWING_H

#include <stdint.h>

// abstract api for drawing primitives

void
draw_init (void);

void
draw_free (void);

void
draw_begin (uintptr_t canvas);

void
draw_end (void);

uintptr_t
draw_load_pixbuf (const char *fname);

void
draw_get_canvas_size (uintptr_t canvas, int *w, int *h);

void
draw_copy (uintptr_t dest_canvas, uintptr_t src_canvas, int dx, int dy, int sx, int sy, int w, int h);

void
draw_pixbuf (uintptr_t dest_canvas, uintptr_t pixbuf, int dx, int dy, int sx, int sy, int w, int h);

void
draw_set_fg_color (float *rgb);

void
draw_set_bg_color (float *rgb);

void
draw_line (float x1, float y1, float x2, float y2);

void
draw_rect (float x, float y, float w, float h, int fill);

float
draw_get_font_size (void);

void
draw_text (float x, float y, int width, int align, const char *text);

void
draw_text_with_colors (float x, float y, int width, int align, const char *text);

void
draw_get_text_extents (const char *text, int len, int *w, int *h);

#endif // __DRAWING_H