tint2 looks good for me. if you see bugs, report it.

git-svn-id: http://tint2.googlecode.com/svn/trunk@54 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
lorthiois@bbsoft.fr
2009-02-13 21:54:42 +00:00
parent 077590ffce
commit 283a7fe289
13 changed files with 207 additions and 172 deletions

View File

@@ -46,12 +46,17 @@ extern Task *task_drag;
typedef struct {
// always start with area
// area.list own all objects of the panel according to config file
Area area;
// list of visible objects
GSList *list_visible;
// --------------------------------------------------
// panel
Window main_win;
Pixmap root_pmap;
Pixmap temp_pmap;
// position relative to root window
int posx, posy;
int marginx, marginy;
@@ -90,13 +95,15 @@ extern int nb_panel;
void init_panel();
void cleanup_panel();
void visual_refresh(Panel *p);
void resize_panel(void *obj);
void set_panel_properties(Panel *p);
void visible_object();
// draw background panel
void set_panel_background(Panel *p);
// detect witch panel
Panel *get_panel(Window win);
#endif