]> Dogcows Code - chaz/tint2/blob - src/util/area.h
fixed bug : clock resize when date changed, number of desktop changed
[chaz/tint2] / src / util / area.h
1 /**************************************************************************
2 * Copyright (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
3 *
4 * base class for all graphical objects (panel, taskbar, task, systray, clock, ...).
5 * Area is at the begining of each object (&object == &area).
6 *
7 * Area manage the background and border drawing, size and padding.
8 * Each Area have 2 Pixmap (pix and pix_active).
9 *
10 * Area also manage the tree of visible objects. Parent object drawn before child object.
11 * panel -> taskbars -> tasks
12 * -> systray -> icons
13 * -> clock
14 *
15 * draw_foreground(obj) is virtual function.
16 *
17 * TODO :
18 * resize_width(obj, width) = 0 : fonction virtuelle à redéfinir
19 * recalcule la largeur de l'objet (car la hauteur est fixe)
20 * - taille systray calculée à partir de la liste des icones
21 * - taille clock calculée à partir de l'heure
22 * - taille d'une tache calculée à partir de la taskbar (ajout, suppression, taille)
23 * - taille d'une taskbar calculée à partir de la taille du panel et des autres objets
24 *
25 * voir resize_taskbar(), resize_clock() et resize_tasks()
26 * voir config(obj) configure un objet (définie les positions verticales)
27 *
28 **************************************************************************/
29
30 #ifndef AREA_H
31 #define AREA_H
32
33 #include <glib.h>
34 #include <X11/Xlib.h>
35 #include <cairo.h>
36 #include <cairo-xlib.h>
37
38
39 typedef struct
40 {
41 double color[3];
42 double alpha;
43 int width;
44 int rounded;
45 } Border;
46
47
48 typedef struct
49 {
50 double color[3];
51 double alpha;
52 } Color;
53
54
55 typedef struct
56 {
57 Pixmap pmap;
58 Color back;
59 Border border;
60 } Pmap;
61
62
63 typedef struct {
64 // absolute coordinate in panel
65 int posx, posy;
66 int width, height;
67 Pmap pix;
68 Pmap pix_active;
69
70 // list of child : Area object
71 GSList *list;
72
73 // need compute position and width
74 int resize;
75 // need redraw Pixmap
76 int redraw;
77 int use_active, is_active;
78 // paddingxlr = horizontal padding left/right
79 // paddingx = horizontal padding between childs
80 int paddingxlr, paddingx, paddingy;
81 // parent Area
82 void *parent;
83 // panel
84 void *panel;
85
86 // each object can overwrite following function
87 void (*_draw_foreground)(void *obj, cairo_t *c, int active);
88 void (*_resize)(void *obj);
89 void (*_add_child)(void *obj);
90 int (*_remove_child)(void *obj);
91 } Area;
92
93
94
95 // draw background and foreground
96 void refresh (Area *a);
97
98 // set 'redraw' on an area and childs
99 void set_redraw (Area *a);
100
101 // draw pixmap and pixmap_active
102 void draw (Area *a, int active);
103 void draw_background (Area *a, cairo_t *c, int active);
104
105 void remove_area (Area *a);
106 void add_area (Area *a);
107 void free_area (Area *a);
108
109 // draw rounded rectangle
110 void draw_rect(cairo_t *c, double x, double y, double w, double h, double r);
111
112 #endif
113
This page took 0.034379 seconds and 5 git commands to generate.