]> Dogcows Code - chaz/tint2/commitdiff
*fix* issue 175
authorAndreas Fink <andreas.fink85@googlemail.com>
Sun, 3 Jan 2010 13:14:25 +0000 (13:14 +0000)
committerAndreas Fink <andreas.fink85@googlemail.com>
Sun, 3 Jan 2010 13:14:25 +0000 (13:14 +0000)
*fix* a bug I introduced with one of my previous checkins...

sample/black_single_desktop.tint2rc
sample/default.tint2rc
sample/horizontal_icon_only.tint2rc
sample/rounded_multi_desktop.tint2rc
sample/tint2rc
sample/vertical_icon_only.tint2rc
sample/white_single_desktop.tint2rc
src/config.c
src/systray/systraybar.c
src/systray/systraybar.h
src/tint.c

index 7b5208c42d04b2fafa289c216a858f1eff27f5d3..8eb245cac4e9c8039f86cc4ff826df17cb1f74e4 100644 (file)
@@ -79,6 +79,7 @@ systray = 1
 systray_padding = 7 8 5
 systray_background_id = 1
 systray_sort = left2right
+systray_icon_size = 0
 
 #---------------------------------------------
 # TOOLTIP
index 07f3f2a295bab54bd93ee0f101fa29990b78375b..3fbd73cf5fc38f12b92bd7fc597782f642d4d7f1 100644 (file)
@@ -77,6 +77,7 @@ systray = 1
 systray_padding = 8 4 5
 systray_background_id = 1
 systray_sort = left2right
+systray_icon_size = 0
 
 #---------------------------------------------
 # BATTERY
index 3a7a69cdfae41b51d00aa7f4c15f1420f4304d7d..a8ca31338f9dc1cc2d220987c14815ccfcf11a89 100644 (file)
@@ -75,6 +75,7 @@ systray = 1
 systray_padding = 8 6 5
 systray_background_id = 0
 systray_sort = left2right
+systray_icon_size = 0
 
 #---------------------------------------------
 # BATTERY
index bc50885c46e648ab447379d077464cf8dff84a66..50a78d05471449b94da3300eb7109b302bc91e5e 100644 (file)
@@ -72,6 +72,7 @@ systray = 1
 systray_padding = 6 5 5
 systray_background_id =2
 systray_sort = left2right
+systray_icon_size = 0
 
 #---------------------------------------------
 # BATTERY
index 6a9e86fc86f61a9189c1cc4e4f8c57df6a60e199..124cca0b3778120676a610d72080101618d7bc8a 100644 (file)
@@ -65,6 +65,7 @@ systray = 1
 systray_padding = 0 4 5
 systray_background_id = 0
 systray_sort = left2right
+systray_icon_size = 0
 
 #---------------------------------------------
 # CLOCK
index 9ed5fd72e24ad23c04d390353ef55bca769c2606..1c8342b98b72f0aaa0d4a0d6cf059e463c0bc2b0 100644 (file)
@@ -65,6 +65,7 @@ systray = 1
 systray_padding = 2 8 0
 systray_background_id = 1
 systray_sort = left2right
+systray_icon_size = 0
 
 #---------------------------------------------
 # CLOCK
index 713bc0ad4116d40362c8adbb5a9e16c25db6e490..4d62cf9da9b1c77d4c7c6aa9208e06929842d5fe 100644 (file)
@@ -74,6 +74,7 @@ systray = 1
 systray_padding = 4 2 3
 systray_background_id = 0
 systray_sort = left2right
+systray_icon_size = 0
 
 #---------------------------------------------
 # CLOCK
index 41d3f3fd39c2a95a2c377c49d02f52b53a2736fe..5f74d4ed762a6abb0cf67a5c1730703529e03435 100644 (file)
@@ -542,6 +542,9 @@ void add_entry (char *key, char *value)
                else  if (strcmp(value, "right2left") == 0)
                        systray.sort = 3;
        }
+       else if (strcmp(key, "systray_icon_size") == 0) {
+               systray_max_icon_size = atoi(value);
+       }
 
        /* Tooltip */
        else if (strcmp (key, "tooltip") == 0)
index 822441baacf03ef7e62ad1aee599510d678d31e8..7e28239fadc2b3ea7a005967c9ffe8051892fc0a 100644 (file)
@@ -47,6 +47,7 @@ Window net_sel_win = None, hint_win = None;
 Systraybar systray;
 int refresh_systray;
 int systray_enabled;
+int systray_max_icon_size = 0;
 
 
 void init_systray()
@@ -111,6 +112,8 @@ void resize_systray(void *obj)
        else
                icon_size = sysbar->area.width;
        icon_size = icon_size - (2 * sysbar->area.pix.border.width) - (2 * sysbar->area.paddingy);
+       if (systray_max_icon_size > 0 && icon_size > systray_max_icon_size)
+               icon_size = systray_max_icon_size;
        count = 0;
        for (l = systray.list_icons; l ; l = l->next) {
                if (!((TrayWindow*)l->data)->hide)
@@ -120,7 +123,11 @@ void resize_systray(void *obj)
 
        if (panel_horizontal) {
                if (!count) systray.area.width = 0;
-               else systray.area.width = (2 * systray.area.pix.border.width) + (2 * systray.area.paddingxlr) + (icon_size * count) + ((count-1) * systray.area.paddingx);
+               else {
+                       int icons_per_column = (sysbar->area.height - 2*sysbar->area.pix.border.width - 2*sysbar->area.paddingy + sysbar->area.paddingx) / (icon_size+sysbar->area.paddingx);
+                       int row_count = count / icons_per_column + (count%icons_per_column != 0);
+                       systray.area.width = (2 * systray.area.pix.border.width) + (2 * systray.area.paddingxlr) + (icon_size * row_count) + ((row_count-1) * systray.area.paddingx);
+               }
 
                systray.area.posx = panel->area.width - panel->area.pix.border.width - panel->area.paddingxlr - systray.area.width;
                if (panel->clock.area.on_screen)
@@ -132,7 +139,11 @@ void resize_systray(void *obj)
        }
        else {
                if (!count) systray.area.height = 0;
-               else systray.area.height = (2 * systray.area.pix.border.width) + (2 * systray.area.paddingxlr) + (icon_size * count) + ((count-1) * systray.area.paddingx);
+               else {
+                       int icons_per_row = (sysbar->area.width - 2*sysbar->area.pix.border.width - 2*sysbar->area.paddingy + sysbar->area.paddingx) / (icon_size+sysbar->area.paddingx);
+                       int column_count = count / icons_per_row+ (count%icons_per_row != 0);
+                       systray.area.height = (2 * systray.area.pix.border.width) + (2 * systray.area.paddingxlr) + (icon_size * column_count) + ((column_count-1) * systray.area.paddingx);
+               }
 
                systray.area.posy = panel->area.pix.border.width + panel->area.paddingxlr;
                if (panel->clock.area.on_screen)
@@ -143,14 +154,18 @@ void resize_systray(void *obj)
 #endif
        }
 
+       int max_line_pos;
        if (panel_horizontal) {
+               max_line_pos = sysbar->area.posy+sysbar->area.height - sysbar->area.pix.border.width - sysbar->area.paddingy - icon_size;
                posy = panel->area.pix.border.width + panel->area.paddingy + systray.area.pix.border.width + systray.area.paddingy;
                posx = systray.area.posx + systray.area.pix.border.width + systray.area.paddingxlr;
        }
        else {
+               max_line_pos = sysbar->area.posx+sysbar->area.width - sysbar->area.pix.border.width - sysbar->area.paddingy - icon_size;
                posx = panel->area.pix.border.width + panel->area.paddingy + systray.area.pix.border.width + systray.area.paddingy;
                posy = systray.area.posy + systray.area.pix.border.width + systray.area.paddingxlr;
        }
+
        for (l = systray.list_icons; l ; l = l->next) {
                traywin = (TrayWindow*)l->data;
                if (traywin->hide) continue;
@@ -159,10 +174,22 @@ void resize_systray(void *obj)
                traywin->x = posx;
                traywin->width = icon_size;
                traywin->height = icon_size;
-               if (panel_horizontal)
-                       posx += (icon_size + systray.area.paddingx);
-               else
-                       posy += (icon_size + systray.area.paddingx);
+               if (panel_horizontal) {
+                       if (posy + icon_size + sysbar->area.paddingxlr < max_line_pos)
+                               posy += icon_size + sysbar->area.paddingx;
+                       else {
+                               posx += (icon_size + systray.area.paddingx);
+                               posy = panel->area.pix.border.width + panel->area.paddingy + systray.area.pix.border.width + systray.area.paddingy;
+                       }
+               }
+               else {
+                       if (posx + icon_size + sysbar->area.paddingxlr < max_line_pos)
+                               posx += icon_size + systray.area.paddingx;
+                       else {
+                               posy += (icon_size + systray.area.paddingx);
+                               posx = panel->area.pix.border.width + panel->area.paddingy + systray.area.pix.border.width + systray.area.paddingy;
+                       }
+               }
 
                // position and size the icon window
                XMoveResizeWindow(server.dsp, traywin->id, traywin->x, traywin->y, icon_size, icon_size);
@@ -305,7 +332,6 @@ gboolean add_icon(Window id)
 
        error = FALSE;
        int wrong_format = 0;
-       old = XSetErrorHandler(window_error_handler);
        XWindowAttributes attr;
        XGetWindowAttributes(server.dsp, id, &attr);
        XSetWindowAttributes set_attr;
@@ -319,6 +345,7 @@ gboolean add_icon(Window id)
                parent_window = XCreateWindow(server.dsp, panel->main_win, 0, 0, 30, 30, 0, attr.depth, InputOutput, attr.visual, mask, &set_attr);
        else
                parent_window = panel->main_win;
+       old = XSetErrorHandler(window_error_handler);
        XReparentWindow(server.dsp, id, parent_window, 0, 0);
        XSync(server.dsp, False);
        XSetErrorHandler(old);
index a2dbabacf898dae14a154c56672a62a04bf7761a..842ec09cbc0a1964e18256fc40ed9e76537d1b4b 100644 (file)
@@ -45,6 +45,7 @@ extern Window net_sel_win;
 extern Systraybar systray;
 extern int refresh_systray;
 extern int systray_enabled;
+extern int systray_max_icon_size;
 
 void init_systray();
 void init_systray_panel(void *p);
index 433eb55c5765d2a4160a85bd1b660fd4e205a127..01db88cc73ce580f179c522151e7a6ccff0ef741 100644 (file)
@@ -73,7 +73,6 @@ void init (int argc, char *argv[])
                                snapshot_path = strdup(argv[i]);
                }
        }
-
        // Set signal handler
        struct sigaction sa = { .sa_handler = signal_handler };
        sigaction(SIGUSR1, &sa, 0);
@@ -89,11 +88,13 @@ void init (int argc, char *argv[])
        sigaddset(&block_mask, SIGUSR1);
        sigprocmask(SIG_BLOCK, &block_mask, 0);
 
-
        // set global data
        memset(&server, 0, sizeof(Server_global));
-//     memset(&systray, 0, sizeof(Systraybar));
+       memset(&systray, 0, sizeof(Systraybar));
+}
 
+void init_X11()
+{
        server.dsp = XOpenDisplay (NULL);
        if (!server.dsp) {
                fprintf(stderr, "tint2 exit : could not open display.\n");
@@ -119,6 +120,7 @@ void init (int argc, char *argv[])
        gchar *path;
        const gchar * const *data_dirs;
        data_dirs = g_get_system_data_dirs ();
+       int i;
        for (i = 0; data_dirs[i] != NULL; i++)  {
                path = g_build_filename(data_dirs[i], "tint2", "default_icon.png", NULL);
                if (g_file_test (path, G_FILE_TEST_EXISTS))
@@ -681,6 +683,7 @@ int main (int argc, char *argv[])
        GSList *it;
        const struct timespec* timeout;
 
+       init (argc, argv);
        init_config();
        i = 0;
        if (config_path)
@@ -693,8 +696,7 @@ int main (int argc, char *argv[])
                exit(1);
        }
 
-       init (argc, argv);
-
+       init_X11();
        init_panel();
        cleanup_config();
        if (snapshot_path) {
This page took 0.031035 seconds and 4 git commands to generate.