X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fpanel.c;h=61b4b2025a01a36be364a4abf90b257d79653b7c;hb=a72ae04bf96477f11d8bf24baea54596f6d3356b;hp=1c5fbd8b11b039a92991f3aec84a4dfed9acab4b;hpb=880f96997be8b3be10d609ed829abec96e5391b3;p=chaz%2Ftint2 diff --git a/src/panel.c b/src/panel.c index 1c5fbd8..61b4b20 100644 --- a/src/panel.c +++ b/src/panel.c @@ -71,11 +71,6 @@ GArray* backgrounds; Imlib_Image default_icon; - -void autohide_hide(void* p); -void autohide_show(void* p); - - void default_panel() { panel1 = 0; @@ -92,7 +87,7 @@ void default_panel() panel_dock = 0; // default not in the dock panel_layer = BOTTOM_LAYER; // default is bottom layer wm_menu = 0; - max_tick_urgent = 7; + max_tick_urgent = 14; backgrounds = g_array_new(0, 0, sizeof(Background)); memset(&panel_config, 0, sizeof(Panel)); @@ -139,6 +134,7 @@ void init_panel() init_tooltip(); init_systray(); + init_launcher(); init_clock(); #ifdef ENABLE_BATTERY init_battery(); @@ -161,10 +157,13 @@ void init_panel() if (panel_config.monitor < 0) p->monitor = i; + if ( p->area.bg == 0 ) + p->area.bg = &g_array_index(backgrounds, Background, 0); p->area.parent = p; p->area.panel = p; p->area.on_screen = 1; p->area.resize = 1; + p->area.size_mode = SIZE_BY_LAYOUT; p->area._resize = resize_panel; p->g_taskbar.area.parent = p; p->g_taskbar.area.panel = p; @@ -181,6 +180,10 @@ void init_panel() p->area.list = g_slist_append(p->area.list, &p->battery); } #endif + if (launcher_enabled) { + init_launcher_panel(p); + p->area.list = g_slist_append(p->area.list, &p->launcher); + } // systray only on first panel if (systray.area.on_screen && i == 0) { init_systray_panel(p); @@ -301,6 +304,7 @@ void init_panel_size_and_position(Panel *panel) void resize_panel(void *obj) { Panel *panel = (Panel*)obj; +//printf("resize_panel : taskbar\n"); if (panel_horizontal) { int taskbar_width, modulo_width = 0; @@ -308,6 +312,8 @@ void resize_panel(void *obj) taskbar_width = panel->area.width - (2 * panel->area.paddingxlr) - (2 * panel->area.bg->border.width); if (panel->clock.area.on_screen && panel->clock.area.width) taskbar_width -= (panel->clock.area.width + panel->area.paddingx); + if (panel->launcher.area.on_screen && panel->launcher.area.width) + taskbar_width -= (panel->launcher.area.width + panel->area.paddingx); #ifdef ENABLE_BATTERY if (panel->battery.area.on_screen && panel->battery.area.width) taskbar_width -= (panel->battery.area.width + panel->area.paddingx); @@ -325,6 +331,8 @@ void resize_panel(void *obj) // change posx and width for all taskbar int i, posx; posx = panel->area.bg->border.width + panel->area.paddingxlr; + if (panel->launcher.area.on_screen && panel->launcher.area.width) + posx += (panel->launcher.area.width + panel->area.paddingx); for (i=0 ; i < panel->nb_desktop ; i++) { panel->taskbar[i].area.posx = posx; panel->taskbar[i].area.width = taskbar_width; @@ -345,6 +353,8 @@ void resize_panel(void *obj) taskbar_height = panel->area.height - (2 * panel->area.paddingxlr) - (2 * panel->area.bg->border.width); if (panel->clock.area.on_screen && panel->clock.area.height) taskbar_height -= (panel->clock.area.height + panel->area.paddingx); + if (panel->launcher.area.on_screen && panel->launcher.area.height) + taskbar_height -= (panel->launcher.area.height + panel->area.paddingx); #ifdef ENABLE_BATTERY if (panel->battery.area.on_screen && panel->battery.area.height) taskbar_height -= (panel->battery.area.height + panel->area.paddingx); @@ -354,6 +364,8 @@ void resize_panel(void *obj) taskbar_height -= (systray.area.height + panel->area.paddingx); posy = panel->area.height - panel->area.bg->border.width - panel->area.paddingxlr - taskbar_height; + if (panel->launcher.area.on_screen && panel->launcher.area.height) + posy -= (panel->launcher.area.height + panel->area.paddingx); if (panel_mode == MULTI_DESKTOP) { int height = taskbar_height - ((panel->nb_desktop-1) * panel->area.paddingx); taskbar_height = height / panel->nb_desktop; @@ -498,7 +510,7 @@ void set_panel_properties(Panel *p) XChangeProperty(server.dsp, p->main_win, server.atom._MOTIF_WM_HINTS, server.atom._MOTIF_WM_HINTS, 32, PropModeReplace, (unsigned char *) prop, 5); // XdndAware - Register for Xdnd events - int version=5; + Atom version=4; XChangeProperty(server.dsp, p->main_win, server.atom.XdndAware, XA_ATOM, 32, PropModeReplace, (unsigned char*)&version, 1); update_strut(p); @@ -650,6 +662,43 @@ Task *click_task (Panel *panel, int x, int y) } +Launcher *click_launcher (Panel *panel, int x, int y) +{ + Launcher *launcher = &panel->launcher; + + if (panel_horizontal) { + if (launcher->area.on_screen && x >= launcher->area.posx && x <= (launcher->area.posx + launcher->area.width)) + return launcher; + } + else { + if (launcher->area.on_screen && y >= launcher->area.posy && y <= (launcher->area.posy + launcher->area.height)) + return launcher; + } + return NULL; +} + + +LauncherIcon *click_launcher_icon (Panel *panel, int x, int y) +{ + GSList *l0; + Launcher *launcher; + + //printf("Click x=%d y=%d\n", x, y); + if ( (launcher = click_launcher(panel, x, y)) ) { + LauncherIcon *icon; + for (l0 = launcher->list_icons; l0 ; l0 = l0->next) { + icon = l0->data; + if (x >= (launcher->area.posx + icon->x) && x <= (launcher->area.posx + icon->x + icon->icon_size) && + y >= (launcher->area.posy + icon->y) && y <= (launcher->area.posy + icon->y + icon->icon_size)) { + //printf("Hit rect x=%d y=%d xmax=%d ymax=%d\n", launcher->area.posx + icon->x, launcher->area.posy + icon->y, launcher->area.posx + icon->x + icon->width, launcher->area.posy + icon->y + icon->height); + return icon; + } + } + } + return NULL; +} + + int click_padding(Panel *panel, int x, int y) { if (panel_horizontal) {