2008-10-02 18:47:02 +00:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Tint2 panel
|
2009-01-17 14:07:56 +00:00
|
|
|
*
|
2008-10-02 18:47:02 +00:00
|
|
|
* Copyright (C) 2007 Pål Staurland (staura@gmail.com)
|
|
|
|
* Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
|
2009-01-17 14:07:56 +00:00
|
|
|
*
|
2008-10-02 18:47:02 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xlocale.h>
|
|
|
|
#include <Imlib2.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include "server.h"
|
|
|
|
#include "window.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "task.h"
|
|
|
|
#include "taskbar.h"
|
2009-02-10 23:16:10 +00:00
|
|
|
#include "systraybar.h"
|
2008-10-02 18:47:02 +00:00
|
|
|
#include "panel.h"
|
|
|
|
|
|
|
|
|
|
|
|
void signal_handler(int sig)
|
|
|
|
{
|
|
|
|
// signal handler is light as it should be
|
2009-02-07 23:28:13 +00:00
|
|
|
signal_pending = sig;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void init ()
|
|
|
|
{
|
|
|
|
// Set signal handler
|
|
|
|
signal(SIGUSR1, signal_handler);
|
2009-06-18 20:26:40 +00:00
|
|
|
signal(SIGINT, signal_handler);
|
|
|
|
signal(SIGTERM, signal_handler);
|
|
|
|
signal(SIGHUP, signal_handler);
|
2008-10-02 18:47:02 +00:00
|
|
|
|
|
|
|
// set global data
|
|
|
|
memset(&server, 0, sizeof(Server_global));
|
2009-02-27 22:18:30 +00:00
|
|
|
memset(&systray, 0, sizeof(Systraybar));
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
server.dsp = XOpenDisplay (NULL);
|
|
|
|
if (!server.dsp) {
|
2009-02-25 20:04:43 +00:00
|
|
|
fprintf(stderr, "tint2 exit : could not open display.\n");
|
2008-10-02 18:47:02 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
server_init_atoms ();
|
|
|
|
server.screen = DefaultScreen (server.dsp);
|
2008-10-30 15:39:24 +00:00
|
|
|
server.root_win = RootWindow(server.dsp, server.screen);
|
2008-10-02 18:47:02 +00:00
|
|
|
server.depth = DefaultDepth (server.dsp, server.screen);
|
|
|
|
server.visual = DefaultVisual (server.dsp, server.screen);
|
|
|
|
server.desktop = server_get_current_desktop ();
|
2009-02-03 20:40:46 +00:00
|
|
|
XGCValues gcv;
|
|
|
|
server.gc = XCreateGC (server.dsp, server.root_win, (unsigned long)0, &gcv) ;
|
2008-10-02 18:47:02 +00:00
|
|
|
|
|
|
|
XSetErrorHandler ((XErrorHandler) server_catch_error);
|
|
|
|
|
|
|
|
imlib_context_set_display (server.dsp);
|
|
|
|
imlib_context_set_visual (server.visual);
|
|
|
|
imlib_context_set_colormap (DefaultColormap (server.dsp, server.screen));
|
|
|
|
|
|
|
|
/* Catch events */
|
|
|
|
XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask);
|
|
|
|
|
2008-11-12 15:11:39 +00:00
|
|
|
setlocale (LC_ALL, "");
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
void cleanup()
|
|
|
|
{
|
2009-03-01 19:18:35 +00:00
|
|
|
cleanup_panel();
|
2009-02-07 23:28:13 +00:00
|
|
|
|
|
|
|
if (time1_font_desc) pango_font_description_free(time1_font_desc);
|
|
|
|
if (time2_font_desc) pango_font_description_free(time2_font_desc);
|
|
|
|
if (time1_format) g_free(time1_format);
|
|
|
|
if (time2_format) g_free(time2_format);
|
2009-06-18 20:26:40 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-05-31 12:40:40 +00:00
|
|
|
if (bat1_font_desc) pango_font_description_free(bat1_font_desc);
|
|
|
|
if (bat2_font_desc) pango_font_description_free(bat2_font_desc);
|
2009-05-15 20:44:42 +00:00
|
|
|
if (battery_low_cmd) g_free(battery_low_cmd);
|
2009-05-31 12:40:40 +00:00
|
|
|
if (path_energy_now) g_free(path_energy_now);
|
|
|
|
if (path_energy_full) g_free(path_energy_full);
|
|
|
|
if (path_current_now) g_free(path_current_now);
|
|
|
|
if (path_status) g_free(path_status);
|
2009-06-18 20:26:40 +00:00
|
|
|
#endif
|
2009-06-04 18:41:14 +00:00
|
|
|
if (clock_lclick_command) g_free(clock_lclick_command);
|
|
|
|
if (clock_rclick_command) g_free(clock_rclick_command);
|
2009-02-07 23:28:13 +00:00
|
|
|
|
|
|
|
if (server.monitor) free(server.monitor);
|
|
|
|
XFreeGC(server.dsp, server.gc);
|
|
|
|
XCloseDisplay(server.dsp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
void window_action (Task *tsk, int action)
|
|
|
|
{
|
|
|
|
switch (action) {
|
|
|
|
case CLOSE:
|
|
|
|
set_close (tsk->win);
|
|
|
|
break;
|
|
|
|
case TOGGLE:
|
|
|
|
set_active(tsk->win);
|
|
|
|
break;
|
|
|
|
case ICONIFY:
|
|
|
|
XIconifyWindow (server.dsp, tsk->win, server.screen);
|
|
|
|
break;
|
|
|
|
case TOGGLE_ICONIFY:
|
2009-02-07 23:28:13 +00:00
|
|
|
if (tsk == task_active) XIconifyWindow (server.dsp, tsk->win, server.screen);
|
2008-10-02 18:47:02 +00:00
|
|
|
else set_active (tsk->win);
|
|
|
|
break;
|
|
|
|
case SHADE:
|
|
|
|
window_toggle_shade (tsk->win);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
void event_button_press (XEvent *e)
|
2009-01-17 14:07:56 +00:00
|
|
|
{
|
2009-02-07 23:28:13 +00:00
|
|
|
Panel *panel = get_panel(e->xany.window);
|
|
|
|
if (!panel) return;
|
|
|
|
|
2009-06-06 19:37:27 +00:00
|
|
|
if (wm_menu) {
|
2009-06-23 19:13:29 +00:00
|
|
|
if ((panel_horizontal && (e->xbutton.x < panel->area.paddingxlr || e->xbutton.x > panel->area.width-panel->area.paddingxlr || e->xbutton.y < panel->area.paddingy || e->xbutton.y > panel->area.paddingy+panel->g_taskbar.height)) || (!panel_horizontal && (e->xbutton.y < panel->area.paddingxlr || e->xbutton.y > panel->area.height-panel->area.paddingxlr || e->xbutton.x < panel->area.paddingy || e->xbutton.x > panel->area.paddingy+panel->g_taskbar.width))) {
|
2009-06-06 19:37:27 +00:00
|
|
|
// forward the click to the desktop window (thanks conky)
|
|
|
|
XUngrabPointer(server.dsp, e->xbutton.time);
|
|
|
|
e->xbutton.window = server.root_win;
|
2009-06-10 21:33:12 +00:00
|
|
|
// icewm doesn't open under the mouse.
|
|
|
|
// and xfce doesn't open at all.
|
|
|
|
//e->xbutton.x = e->xbutton.x_root;
|
|
|
|
//e->xbutton.y = e->xbutton.y_root;
|
|
|
|
//printf("**** %d, %d\n", e->xbutton.x, e->xbutton.y);
|
2009-06-06 19:37:27 +00:00
|
|
|
XSetInputFocus(server.dsp, e->xbutton.window, RevertToParent, e->xbutton.time);
|
|
|
|
XSendEvent(server.dsp, e->xbutton.window, False, ButtonPressMask, e);
|
|
|
|
return;
|
|
|
|
}
|
2009-06-05 21:58:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (e->xbutton.button != 1) return;
|
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
if (panel_mode != MULTI_DESKTOP) {
|
2008-10-02 18:47:02 +00:00
|
|
|
// drag and drop disabled
|
2009-02-10 23:16:10 +00:00
|
|
|
XLowerWindow (server.dsp, panel->main_win);
|
2008-10-02 18:47:02 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
GSList *l0;
|
2009-02-07 23:28:13 +00:00
|
|
|
Taskbar *tskbar;
|
2009-06-23 19:13:29 +00:00
|
|
|
if (panel_horizontal) {
|
|
|
|
int x = e->xbutton.x;
|
|
|
|
for (l0 = panel->area.list; l0 ; l0 = l0->next) {
|
|
|
|
tskbar = l0->data;
|
|
|
|
if (!tskbar->area.on_screen) continue;
|
|
|
|
if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (l0) {
|
|
|
|
Task *tsk;
|
|
|
|
for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk = l0->data;
|
|
|
|
if (x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
|
|
|
|
task_drag = tsk;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int y = e->xbutton.y;
|
|
|
|
for (l0 = panel->area.list; l0 ; l0 = l0->next) {
|
|
|
|
tskbar = l0->data;
|
|
|
|
if (!tskbar->area.on_screen) continue;
|
|
|
|
if (y >= tskbar->area.posy && y <= (tskbar->area.posy + tskbar->area.height))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (l0) {
|
|
|
|
Task *tsk;
|
|
|
|
for (l0 = tskbar->area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk = l0->data;
|
|
|
|
if (y >= tsk->area.posy && y <= (tsk->area.posy + tsk->area.height)) {
|
|
|
|
task_drag = tsk;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-02-10 23:16:10 +00:00
|
|
|
XLowerWindow (server.dsp, panel->main_win);
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
void event_button_release (XEvent *e)
|
2008-10-02 18:47:02 +00:00
|
|
|
{
|
2009-02-07 23:28:13 +00:00
|
|
|
Panel *panel = get_panel(e->xany.window);
|
|
|
|
if (!panel) return;
|
|
|
|
|
2009-06-06 19:37:27 +00:00
|
|
|
if (wm_menu) {
|
2009-06-23 19:13:29 +00:00
|
|
|
if ((panel_horizontal && (e->xbutton.x < panel->area.paddingxlr || e->xbutton.x > panel->area.width-panel->area.paddingxlr || e->xbutton.y < panel->area.paddingy || e->xbutton.y > panel->area.paddingy+panel->g_taskbar.height)) || (!panel_horizontal && (e->xbutton.y < panel->area.paddingxlr || e->xbutton.y > panel->area.height-panel->area.paddingxlr || e->xbutton.x < panel->area.paddingy || e->xbutton.x > panel->area.paddingy+panel->g_taskbar.width))) {
|
2009-06-06 19:37:27 +00:00
|
|
|
// forward the click to the desktop window (thanks conky)
|
|
|
|
e->xbutton.window = server.root_win;
|
|
|
|
XSendEvent(server.dsp, e->xbutton.window, False, ButtonReleaseMask, e);
|
|
|
|
return;
|
|
|
|
}
|
2009-06-05 21:58:09 +00:00
|
|
|
}
|
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
int action = TOGGLE_ICONIFY;
|
|
|
|
int x = e->xbutton.x;
|
2009-06-23 19:13:29 +00:00
|
|
|
int y = e->xbutton.y;
|
2009-02-07 23:28:13 +00:00
|
|
|
switch (e->xbutton.button) {
|
2008-10-02 18:47:02 +00:00
|
|
|
case 2:
|
2009-02-07 23:28:13 +00:00
|
|
|
action = mouse_middle;
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2009-02-07 23:28:13 +00:00
|
|
|
action = mouse_right;
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2009-02-07 23:28:13 +00:00
|
|
|
action = mouse_scroll_up;
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2009-02-07 23:28:13 +00:00
|
|
|
action = mouse_scroll_down;
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// search taskbar
|
|
|
|
Taskbar *tskbar;
|
|
|
|
GSList *l0;
|
2009-06-04 18:41:14 +00:00
|
|
|
Clock clk = panel->clock;
|
2009-06-23 19:13:29 +00:00
|
|
|
if (panel_horizontal) {
|
|
|
|
if (clk.area.on_screen && x >= clk.area.posx && x <= (clk.area.posx + clk.area.width))
|
|
|
|
clock_action(e->xbutton.button);
|
|
|
|
else {
|
|
|
|
for (l0 = panel->area.list; l0 ; l0 = l0->next) {
|
|
|
|
tskbar = l0->data;
|
|
|
|
if (!tskbar->area.on_screen) continue;
|
|
|
|
if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
|
|
|
|
goto suite;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-06-04 18:41:14 +00:00
|
|
|
else {
|
2009-06-23 19:13:29 +00:00
|
|
|
if (clk.area.on_screen && y >= clk.area.posy && y <= (clk.area.posy + clk.area.height))
|
|
|
|
clock_action(e->xbutton.button);
|
|
|
|
else {
|
|
|
|
for (l0 = panel->area.list; l0 ; l0 = l0->next) {
|
|
|
|
tskbar = l0->data;
|
|
|
|
if (!tskbar->area.on_screen) continue;
|
|
|
|
if (y >= tskbar->area.posy && y <= (tskbar->area.posy + tskbar->area.height))
|
|
|
|
goto suite;
|
|
|
|
}
|
2009-06-04 18:41:14 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
|
|
|
|
// TODO: check better solution to keep window below
|
2009-02-10 23:16:10 +00:00
|
|
|
XLowerWindow (server.dsp, panel->main_win);
|
2009-02-07 23:28:13 +00:00
|
|
|
task_drag = 0;
|
2008-10-02 18:47:02 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
suite:
|
|
|
|
// drag and drop task
|
2009-02-07 23:28:13 +00:00
|
|
|
if (task_drag) {
|
|
|
|
if (tskbar != task_drag->area.parent && action == TOGGLE_ICONIFY) {
|
|
|
|
if (task_drag->desktop != ALLDESKTOP && panel_mode == MULTI_DESKTOP) {
|
|
|
|
windows_set_desktop(task_drag->win, tskbar->desktop);
|
2009-01-18 22:12:41 +00:00
|
|
|
if (tskbar->desktop == server.desktop)
|
2009-02-07 23:28:13 +00:00
|
|
|
set_active(task_drag->win);
|
|
|
|
task_drag = 0;
|
2009-01-18 22:12:41 +00:00
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
else task_drag = 0;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// switch desktop
|
2009-02-07 23:28:13 +00:00
|
|
|
if (panel_mode == MULTI_DESKTOP)
|
2008-10-02 18:47:02 +00:00
|
|
|
if (tskbar->desktop != server.desktop && action != CLOSE)
|
|
|
|
set_desktop (tskbar->desktop);
|
|
|
|
|
|
|
|
// action on task
|
|
|
|
Task *tsk;
|
|
|
|
GSList *l;
|
|
|
|
for (l = tskbar->area.list ; l ; l = l->next) {
|
|
|
|
tsk = l->data;
|
2009-06-23 19:13:29 +00:00
|
|
|
if (panel_horizontal) {
|
|
|
|
if (x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
|
|
|
|
window_action (tsk, action);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (y >= tsk->area.posy && y <= (tsk->area.posy + tsk->area.height)) {
|
|
|
|
window_action (tsk, action);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// to keep window below
|
2009-02-10 23:16:10 +00:00
|
|
|
XLowerWindow (server.dsp, panel->main_win);
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
void event_property_notify (XEvent *e)
|
2009-01-17 14:07:56 +00:00
|
|
|
{
|
2009-02-07 23:28:13 +00:00
|
|
|
int i, j;
|
|
|
|
Task *tsk;
|
2009-02-25 20:04:43 +00:00
|
|
|
Window win = e->xproperty.window;
|
|
|
|
Atom at = e->xproperty.atom;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
if (win == server.root_win) {
|
|
|
|
if (!server.got_root_win) {
|
|
|
|
XSelectInput (server.dsp, server.root_win, PropertyChangeMask|StructureNotifyMask);
|
|
|
|
server.got_root_win = 1;
|
|
|
|
}
|
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
// Change number of desktops
|
2008-10-02 18:47:02 +00:00
|
|
|
else if (at == server.atom._NET_NUMBER_OF_DESKTOPS) {
|
2009-02-07 23:28:13 +00:00
|
|
|
server.nb_desktop = server_get_number_of_desktop ();
|
|
|
|
cleanup_taskbar();
|
|
|
|
init_taskbar();
|
|
|
|
visible_object();
|
2009-02-10 23:16:10 +00:00
|
|
|
for (i=0 ; i < nb_panel ; i++) {
|
2009-02-13 21:54:42 +00:00
|
|
|
panel1[i].area.resize = 1;
|
2009-02-10 23:16:10 +00:00
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
task_refresh_tasklist();
|
|
|
|
panel_refresh = 1;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
2009-02-25 20:04:43 +00:00
|
|
|
// Change desktop
|
2008-10-02 18:47:02 +00:00
|
|
|
else if (at == server.atom._NET_CURRENT_DESKTOP) {
|
|
|
|
server.desktop = server_get_current_desktop ();
|
2009-02-07 23:28:13 +00:00
|
|
|
if (panel_mode != MULTI_DESKTOP) {
|
|
|
|
visible_object();
|
2008-11-08 20:23:42 +00:00
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
2009-02-25 20:04:43 +00:00
|
|
|
// Window list
|
2008-10-02 18:47:02 +00:00
|
|
|
else if (at == server.atom._NET_CLIENT_LIST) {
|
2009-02-07 23:28:13 +00:00
|
|
|
task_refresh_tasklist();
|
|
|
|
panel_refresh = 1;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
2009-02-25 20:04:43 +00:00
|
|
|
// Change active
|
2008-10-02 18:47:02 +00:00
|
|
|
else if (at == server.atom._NET_ACTIVE_WINDOW) {
|
2009-02-07 23:28:13 +00:00
|
|
|
GSList *l0;
|
|
|
|
if (task_active) {
|
|
|
|
for (i=0 ; i < nb_panel ; i++) {
|
|
|
|
for (j=0 ; j < panel1[i].nb_desktop ; j++) {
|
|
|
|
for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
|
2009-01-18 22:12:41 +00:00
|
|
|
tsk = l0->data;
|
|
|
|
tsk->area.is_active = 0;
|
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
task_active = 0;
|
2009-01-17 14:07:56 +00:00
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
Window w1 = window_get_active ();
|
|
|
|
Task *t = task_get_task(w1);
|
2009-01-17 14:07:56 +00:00
|
|
|
if (!t) {
|
2008-10-02 18:47:02 +00:00
|
|
|
Window w2;
|
|
|
|
if (XGetTransientForHint(server.dsp, w1, &w2) != 0)
|
2009-01-17 14:07:56 +00:00
|
|
|
if (w2) t = task_get_task(w2);
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
2009-06-05 20:19:14 +00:00
|
|
|
if (task_urgent == t) {
|
|
|
|
init_precision();
|
|
|
|
task_urgent = 0;
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
if (t) {
|
2009-02-07 23:28:13 +00:00
|
|
|
for (i=0 ; i < nb_panel ; i++) {
|
|
|
|
for (j=0 ; j < panel1[i].nb_desktop ; j++) {
|
|
|
|
for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
|
2009-01-18 22:12:41 +00:00
|
|
|
tsk = l0->data;
|
2009-02-07 23:28:13 +00:00
|
|
|
if (tsk->win == t->win) {
|
2009-01-18 22:12:41 +00:00
|
|
|
tsk->area.is_active = 1;
|
2009-02-07 23:28:13 +00:00
|
|
|
//printf("active monitor %d, task %s\n", panel1[i].monitor, tsk->title);
|
|
|
|
}
|
2009-01-18 22:12:41 +00:00
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
task_active = t;
|
2009-01-17 14:07:56 +00:00
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
panel_refresh = 1;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
else if (at == server.atom._XROOTPMAP_ID) {
|
2009-06-13 19:39:41 +00:00
|
|
|
// change Wallpaper
|
2009-02-07 23:28:13 +00:00
|
|
|
for (i=0 ; i < nb_panel ; i++) {
|
|
|
|
set_panel_background(&panel1[i]);
|
|
|
|
}
|
|
|
|
panel_refresh = 1;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tsk = task_get_task (win);
|
|
|
|
if (!tsk) return;
|
|
|
|
//printf("atom root_win = %s, %s\n", XGetAtomName(server.dsp, at), tsk->title);
|
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
// Window title changed
|
2008-10-02 18:47:02 +00:00
|
|
|
if (at == server.atom._NET_WM_VISIBLE_NAME || at == server.atom._NET_WM_NAME || at == server.atom.WM_NAME) {
|
2009-02-07 23:28:13 +00:00
|
|
|
Task *tsk2;
|
|
|
|
GSList *l0;
|
|
|
|
get_title(tsk);
|
|
|
|
// changed other tsk->title
|
|
|
|
for (i=0 ; i < nb_panel ; i++) {
|
|
|
|
for (j=0 ; j < panel1[i].nb_desktop ; j++) {
|
|
|
|
for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk2 = l0->data;
|
|
|
|
if (tsk->win == tsk2->win && tsk != tsk2) {
|
|
|
|
tsk2->title = tsk->title;
|
|
|
|
tsk2->area.redraw = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
panel_refresh = 1;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
2009-02-25 20:04:43 +00:00
|
|
|
// Demand attention
|
|
|
|
else if (at == server.atom._NET_WM_STATE) {
|
|
|
|
if (window_is_urgent (win)) {
|
2009-06-05 18:53:49 +00:00
|
|
|
task_urgent = tsk;
|
2009-06-20 14:41:06 +00:00
|
|
|
tick_urgent = 0;
|
2009-06-05 18:53:49 +00:00
|
|
|
time_precision = 1;
|
2009-02-25 20:04:43 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
else if (at == server.atom.WM_STATE) {
|
2009-02-25 20:04:43 +00:00
|
|
|
// Iconic state
|
|
|
|
// TODO : try to delete following code
|
|
|
|
if (window_is_iconified (win)) {
|
2009-02-07 23:28:13 +00:00
|
|
|
if (task_active) {
|
|
|
|
if (task_active->win == tsk->win) {
|
|
|
|
Task *tsk2;
|
|
|
|
GSList *l0;
|
|
|
|
for (i=0 ; i < nb_panel ; i++) {
|
|
|
|
for (j=0 ; j < panel1[i].nb_desktop ; j++) {
|
|
|
|
for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk2 = l0->data;
|
|
|
|
tsk2->area.is_active = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
task_active = 0;
|
2009-01-18 22:12:41 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-25 20:04:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Window icon changed
|
2008-10-02 18:47:02 +00:00
|
|
|
else if (at == server.atom._NET_WM_ICON) {
|
2009-02-07 23:28:13 +00:00
|
|
|
get_icon(tsk);
|
|
|
|
Task *tsk2;
|
|
|
|
GSList *l0;
|
|
|
|
for (i=0 ; i < nb_panel ; i++) {
|
|
|
|
for (j=0 ; j < panel1[i].nb_desktop ; j++) {
|
|
|
|
for (l0 = panel1[i].taskbar[j].area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk2 = l0->data;
|
|
|
|
if (tsk->win == tsk2->win && tsk != tsk2) {
|
|
|
|
tsk2->icon_width = tsk->icon_width;
|
|
|
|
tsk2->icon_height = tsk->icon_height;
|
|
|
|
tsk2->icon_data = tsk->icon_data;
|
|
|
|
tsk2->area.redraw = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
panel_refresh = 1;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
2009-02-25 20:04:43 +00:00
|
|
|
// Window desktop changed
|
2008-10-02 18:47:02 +00:00
|
|
|
else if (at == server.atom._NET_WM_DESKTOP) {
|
2009-06-06 21:03:00 +00:00
|
|
|
int desktop = window_get_desktop (win);
|
|
|
|
//printf(" Window desktop changed %d, %d\n", tsk->desktop, desktop);
|
|
|
|
// bug in windowmaker : send unecessary 'desktop changed' when focus changed
|
|
|
|
if (desktop != tsk->desktop) {
|
|
|
|
remove_task (tsk);
|
|
|
|
add_task (win);
|
|
|
|
panel_refresh = 1;
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!server.got_root_win) server.root_win = RootWindow (server.dsp, server.screen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-28 23:04:53 +00:00
|
|
|
void event_expose (XEvent *e)
|
|
|
|
{
|
|
|
|
Panel *panel;
|
|
|
|
|
|
|
|
panel = get_panel(e->xany.window);
|
|
|
|
if (!panel) return;
|
2009-06-13 19:39:41 +00:00
|
|
|
// TODO : one panel_refresh per panel ?
|
|
|
|
panel_refresh = 1;
|
2009-02-28 23:04:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
void event_configure_notify (Window win)
|
2009-01-17 14:07:56 +00:00
|
|
|
{
|
2009-06-13 19:39:41 +00:00
|
|
|
// check 'win' move in systray
|
|
|
|
TrayWindow *traywin;
|
|
|
|
GSList *l;
|
|
|
|
for (l = systray.list_icons; l ; l = l->next) {
|
|
|
|
traywin = (TrayWindow*)l->data;
|
|
|
|
if (traywin->id == win) {
|
2009-06-14 19:07:58 +00:00
|
|
|
//printf("move tray %d\n", traywin->x);
|
|
|
|
XMoveResizeWindow(server.dsp, traywin->id, traywin->x, traywin->y, traywin->width, traywin->height);
|
|
|
|
panel_refresh = 1;
|
|
|
|
return;
|
2009-06-13 19:39:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// check 'win' move in another monitor
|
2009-06-08 16:50:14 +00:00
|
|
|
if (nb_panel == 1) return;
|
2009-02-07 23:28:13 +00:00
|
|
|
if (server.nb_monitor == 1) return;
|
2009-01-20 00:19:05 +00:00
|
|
|
Task *tsk = task_get_task (win);
|
2008-10-02 18:47:02 +00:00
|
|
|
if (!tsk) return;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
Panel *p = tsk->area.panel;
|
|
|
|
if (p->monitor != window_get_monitor (win)) {
|
2008-11-08 20:23:42 +00:00
|
|
|
remove_task (tsk);
|
2009-01-20 00:19:05 +00:00
|
|
|
add_task (win);
|
2009-02-13 21:54:42 +00:00
|
|
|
if (win == window_get_active ()) {
|
|
|
|
Task *tsk = task_get_task (win);
|
|
|
|
tsk->area.is_active = 1;
|
|
|
|
task_active = tsk;
|
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
panel_refresh = 1;
|
2008-11-08 20:23:42 +00:00
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void event_timer()
|
|
|
|
{
|
|
|
|
struct timeval stv;
|
2009-06-05 18:53:49 +00:00
|
|
|
int i;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
if (gettimeofday(&stv, 0)) return;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-02-03 20:40:46 +00:00
|
|
|
if (abs(stv.tv_sec - time_clock.tv_sec) < time_precision) return;
|
2009-06-09 17:19:59 +00:00
|
|
|
time_clock.tv_sec = stv.tv_sec;
|
|
|
|
time_clock.tv_sec -= time_clock.tv_sec % time_precision;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-06-05 18:53:49 +00:00
|
|
|
// urgent task
|
|
|
|
if (task_urgent) {
|
2009-06-20 14:41:06 +00:00
|
|
|
if (tick_urgent < max_tick_urgent) {
|
|
|
|
task_urgent->area.is_active = !task_urgent->area.is_active;
|
|
|
|
task_urgent->area.redraw = 1;
|
|
|
|
tick_urgent++;
|
|
|
|
}
|
2009-06-05 18:53:49 +00:00
|
|
|
}
|
|
|
|
|
2009-05-15 20:44:42 +00:00
|
|
|
// update battery
|
2009-06-18 20:26:40 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-06-05 18:53:49 +00:00
|
|
|
if (panel1[0].battery.area.on_screen) {
|
2009-06-18 20:26:40 +00:00
|
|
|
update_battery();
|
2009-06-05 18:53:49 +00:00
|
|
|
for (i=0 ; i < nb_panel ; i++)
|
|
|
|
panel1[i].battery.area.resize = 1;
|
|
|
|
}
|
2009-06-18 20:26:40 +00:00
|
|
|
#endif
|
2009-05-15 20:44:42 +00:00
|
|
|
|
|
|
|
// update clock
|
2009-06-05 18:53:49 +00:00
|
|
|
if (time1_format) {
|
|
|
|
for (i=0 ; i < nb_panel ; i++)
|
|
|
|
panel1[i].clock.area.resize = 1;
|
2009-02-07 23:28:13 +00:00
|
|
|
}
|
2009-05-15 20:44:42 +00:00
|
|
|
panel_refresh = 1;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
XEvent e;
|
|
|
|
fd_set fd;
|
|
|
|
int x11_fd, i, c;
|
|
|
|
struct timeval tv;
|
2009-02-07 23:28:13 +00:00
|
|
|
Panel *panel;
|
2009-02-27 22:18:30 +00:00
|
|
|
GSList *it;
|
2008-10-02 18:47:02 +00:00
|
|
|
|
|
|
|
init ();
|
|
|
|
|
|
|
|
load_config:
|
|
|
|
i = 0;
|
2009-06-23 19:13:29 +00:00
|
|
|
c = getopt (argc, argv, "c:");
|
2009-02-07 23:28:13 +00:00
|
|
|
init_config();
|
2009-06-20 14:41:06 +00:00
|
|
|
if (c != -1) {
|
2008-10-02 18:47:02 +00:00
|
|
|
i = config_read_file (optarg);
|
2009-06-20 14:41:06 +00:00
|
|
|
c = getopt (argc, argv, "j:");
|
|
|
|
if (c != -1) {
|
2009-06-29 18:39:44 +00:00
|
|
|
// usage: tint2 [-c] <config_file> -j <file> for internal use
|
|
|
|
printf("file %s\n", optarg);
|
2009-06-20 14:41:06 +00:00
|
|
|
cleanup();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
if (!i)
|
|
|
|
i = config_read ();
|
|
|
|
if (!i) {
|
|
|
|
fprintf(stderr, "usage: tint2 [-c] <config_file>\n");
|
|
|
|
cleanup();
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
config_finish();
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
x11_fd = ConnectionNumber(server.dsp);
|
|
|
|
XSync(server.dsp, False);
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
while (1) {
|
|
|
|
// thanks to AngryLlama for the timer
|
|
|
|
// Create a File Description Set containing x11_fd
|
|
|
|
FD_ZERO (&fd);
|
|
|
|
FD_SET (x11_fd, &fd);
|
|
|
|
|
|
|
|
tv.tv_usec = 500000;
|
|
|
|
tv.tv_sec = 0;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// Wait for X Event or a Timer
|
|
|
|
if (select(x11_fd+1, &fd, 0, 0, &tv)) {
|
|
|
|
while (XPending (server.dsp)) {
|
|
|
|
XNextEvent(server.dsp, &e);
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
switch (e.type) {
|
|
|
|
case ButtonPress:
|
2009-06-05 21:58:09 +00:00
|
|
|
event_button_press (&e);
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ButtonRelease:
|
2009-02-28 23:04:53 +00:00
|
|
|
event_button_release(&e);
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
case Expose:
|
2009-02-28 23:04:53 +00:00
|
|
|
event_expose(&e);
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PropertyNotify:
|
2009-02-28 23:04:53 +00:00
|
|
|
event_property_notify(&e);
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ConfigureNotify:
|
|
|
|
if (e.xconfigure.window == server.root_win)
|
|
|
|
goto load_config;
|
|
|
|
else
|
2009-01-20 00:19:05 +00:00
|
|
|
event_configure_notify (e.xconfigure.window);
|
2009-02-10 23:16:10 +00:00
|
|
|
break;
|
|
|
|
|
2009-06-13 19:39:41 +00:00
|
|
|
case ReparentNotify:
|
2009-06-29 18:39:44 +00:00
|
|
|
if (!systray.area.on_screen)
|
|
|
|
break;
|
|
|
|
panel = (Panel*)systray.area.panel;
|
|
|
|
if (e.xany.window == panel->main_win) // reparented to us
|
2009-06-13 19:39:41 +00:00
|
|
|
break;
|
2009-06-29 18:39:44 +00:00
|
|
|
// FIXME: 'reparent to us' badly detected => disabled
|
|
|
|
break;
|
2009-02-10 23:16:10 +00:00
|
|
|
case UnmapNotify:
|
|
|
|
case DestroyNotify:
|
2009-06-13 19:39:41 +00:00
|
|
|
if (!systray.area.on_screen)
|
|
|
|
break;
|
2009-02-27 22:18:30 +00:00
|
|
|
for (it = systray.list_icons; it; it = g_slist_next(it)) {
|
2009-02-10 23:16:10 +00:00
|
|
|
if (((TrayWindow*)it->data)->id == e.xany.window) {
|
2009-03-01 19:18:35 +00:00
|
|
|
remove_icon((TrayWindow*)it->data);
|
2009-02-10 23:16:10 +00:00
|
|
|
break;
|
|
|
|
}
|
2009-02-27 22:18:30 +00:00
|
|
|
}
|
2009-02-10 23:16:10 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ClientMessage:
|
2009-03-07 10:05:15 +00:00
|
|
|
if (!systray.area.on_screen) break;
|
2009-02-25 20:04:43 +00:00
|
|
|
if (e.xclient.message_type == server.atom._NET_SYSTEM_TRAY_OPCODE && e.xclient.format == 32 && e.xclient.window == net_sel_win) {
|
2009-02-10 23:16:10 +00:00
|
|
|
net_message(&e.xclient);
|
2009-02-25 20:04:43 +00:00
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-06-08 18:49:50 +00:00
|
|
|
event_timer();
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
switch (signal_pending) {
|
2008-10-02 18:47:02 +00:00
|
|
|
case SIGUSR1:
|
2009-06-23 19:13:29 +00:00
|
|
|
signal_pending = 0;
|
2008-10-02 18:47:02 +00:00
|
|
|
goto load_config;
|
|
|
|
case SIGINT:
|
|
|
|
case SIGTERM:
|
2009-06-18 20:26:40 +00:00
|
|
|
case SIGHUP:
|
2008-10-02 18:47:02 +00:00
|
|
|
cleanup ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
if (panel_refresh) {
|
2009-02-13 21:54:42 +00:00
|
|
|
panel_refresh = 0;
|
|
|
|
|
2009-06-20 15:08:33 +00:00
|
|
|
if (refresh_systray) {
|
|
|
|
panel = (Panel*)systray.area.panel;
|
|
|
|
XSetWindowBackgroundPixmap (server.dsp, panel->main_win, None);
|
|
|
|
}
|
2009-02-10 23:16:10 +00:00
|
|
|
for (i=0 ; i < nb_panel ; i++) {
|
2009-02-13 21:54:42 +00:00
|
|
|
panel = &panel1[i];
|
2009-02-10 23:16:10 +00:00
|
|
|
|
2009-02-13 21:54:42 +00:00
|
|
|
if (panel->temp_pmap) XFreePixmap(server.dsp, panel->temp_pmap);
|
|
|
|
panel->temp_pmap = XCreatePixmap(server.dsp, server.root_win, panel->area.width, panel->area.height, server.depth);
|
|
|
|
|
2009-02-27 22:18:30 +00:00
|
|
|
refresh(&panel->area);
|
2009-02-13 21:54:42 +00:00
|
|
|
XCopyArea(server.dsp, panel->temp_pmap, panel->main_win, server.gc, 0, 0, panel->area.width, panel->area.height, 0, 0);
|
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
XFlush (server.dsp);
|
2009-06-20 15:08:33 +00:00
|
|
|
|
|
|
|
if (refresh_systray) {
|
|
|
|
refresh_systray = 0;
|
|
|
|
panel = (Panel*)systray.area.panel;
|
|
|
|
// tint2 doen't draw systray icons. it just redraw background.
|
|
|
|
XSetWindowBackgroundPixmap (server.dsp, panel->main_win, panel->temp_pmap);
|
|
|
|
// force icon's refresh
|
|
|
|
refresh_systray_icon();
|
|
|
|
}
|
2009-02-07 23:28:13 +00:00
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|