]> Dogcows Code - chaz/tint2/blobdiff - src/panel.h
fixed segfault on tray application due to tint2
[chaz/tint2] / src / panel.h
index 5992f7a803a0c106a5ccfa8c96335f8dac9ce3da..67c995cef2ac71f87fa52943f48aa9d8d30fd03d 100644 (file)
@@ -46,12 +46,14 @@ extern Task *task_drag;
 
 typedef struct {
    // always start with area
+   // area.list own all objects of the panel according to config file
    Area area;
 
    // --------------------------------------------------
    // panel
    Window main_win;
-   Pixmap root_pmap;
+   Pixmap temp_pmap;
+
    // position relative to root window
        int posx, posy;
    int marginx, marginy;
@@ -61,7 +63,7 @@ typedef struct {
    int monitor;
 
    // --------------------------------------------------
-   // task annd taskbar parameter per panel
+   // task and taskbar parameter per panel
        Area g_taskbar;
        Global_task g_task;
 
@@ -75,9 +77,6 @@ typedef struct {
    // clock
    Clock clock;
 
-   // --------------------------------------------------
-   // systray
-   Systraybar systraybar;
 } Panel;
 
 
@@ -87,13 +86,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
This page took 0.027973 seconds and 4 git commands to generate.