]>
Dogcows Code - chaz/tint2/blob - src/util/area.h
da32592c39b31cd005f5bf75973983124775a094
1 /**************************************************************************
2 * Copyright (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
4 * base class for all graphical objects (panel, taskbar, task, systray, clock, ...).
5 * Area is at the begining of each object (&object == &area).
7 * Area manage the background and border drawing, size and padding.
8 * Each Area have 2 Pixmap (pix and pix_active).
10 * Area manage the tree of all objects. Parent object drawn before child object.
11 * panel -> taskbars -> tasks
15 * draw_foreground(obj) and resize(obj) are virtual function.
17 **************************************************************************/
25 #include <cairo-xlib.h>
53 // absolute coordinate in panel
59 // list of child : Area object
63 // need compute position and width
67 int use_active
, is_active
;
68 // paddingxlr = horizontal padding left/right
69 // paddingx = horizontal padding between childs
70 int paddingxlr
, paddingx
, paddingy
;
76 // each object can overwrite following function
77 void (*_draw_foreground
)(void *obj
, cairo_t
*c
, int active
);
78 void (*_resize
)(void *obj
);
79 void (*_add_child
)(void *obj
);
80 int (*_remove_child
)(void *obj
);
85 // draw background and foreground
86 void refresh (Area
*a
);
88 // set 'redraw' on an area and childs
89 void set_redraw (Area
*a
);
91 // draw pixmap and pixmap_active
92 void draw (Area
*a
, int active
);
93 void draw_background (Area
*a
, cairo_t
*c
, int active
);
95 void remove_area (Area
*a
);
96 void add_area (Area
*a
);
97 void free_area (Area
*a
);
99 // draw rounded rectangle
100 void draw_rect(cairo_t
*c
, double x
, double y
, double w
, double h
, double r
);
This page took 0.040344 seconds and 4 git commands to generate.