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"
|
|
|
|
#include "panel.h"
|
|
|
|
#include "docker.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "kde.h"
|
|
|
|
|
|
|
|
|
|
|
|
void signal_handler(int sig)
|
|
|
|
{
|
|
|
|
// signal handler is light as it should be
|
|
|
|
panel.signal_pending = sig;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void init ()
|
|
|
|
{
|
|
|
|
// Set signal handler
|
|
|
|
signal(SIGUSR1, signal_handler);
|
|
|
|
signal(SIGINT, signal_handler);
|
|
|
|
signal(SIGTERM, signal_handler);
|
|
|
|
|
|
|
|
// set global data
|
|
|
|
memset(&panel, 0, sizeof(Panel));
|
|
|
|
memset(&server, 0, sizeof(Server_global));
|
|
|
|
memset(&g_task, 0, sizeof(Global_task));
|
|
|
|
memset(&g_taskbar, 0, sizeof(Area));
|
|
|
|
panel.clock.area.draw_foreground = draw_foreground_clock;
|
|
|
|
g_task.area.draw_foreground = draw_foreground_task;
|
|
|
|
window.main_win = 0;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
server.dsp = XOpenDisplay (NULL);
|
|
|
|
if (!server.dsp) {
|
|
|
|
fprintf(stderr, "Could not open display.\n");
|
|
|
|
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);
|
|
|
|
|
|
|
|
// init systray
|
2009-02-03 20:40:46 +00:00
|
|
|
//display = server.dsp;
|
|
|
|
//root = RootWindow(display, DefaultScreen(display));
|
2008-10-02 18:47:02 +00:00
|
|
|
//create_main_window();
|
|
|
|
//kde_init();
|
|
|
|
//net_init();
|
|
|
|
//printf("ici 4\n");
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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:
|
|
|
|
if (tsk == panel.task_active) XIconifyWindow (server.dsp, tsk->win, server.screen);
|
|
|
|
else set_active (tsk->win);
|
|
|
|
break;
|
|
|
|
case SHADE:
|
|
|
|
window_toggle_shade (tsk->win);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void event_button_press (int x, int y)
|
2009-01-17 14:07:56 +00:00
|
|
|
{
|
2008-10-02 18:47:02 +00:00
|
|
|
if (panel.mode == SINGLE_DESKTOP) {
|
|
|
|
// drag and drop disabled
|
|
|
|
XLowerWindow (server.dsp, window.main_win);
|
|
|
|
return;
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
Taskbar *tskbar;
|
|
|
|
GSList *l0;
|
|
|
|
for (l0 = panel.area.list; l0 ; l0 = l0->next) {
|
|
|
|
tskbar = l0->data;
|
|
|
|
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)) {
|
|
|
|
panel.task_drag = tsk;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
XLowerWindow (server.dsp, window.main_win);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void event_button_release (int button, int x, int y)
|
|
|
|
{
|
|
|
|
int action = TOGGLE_ICONIFY;
|
2008-11-08 20:23:42 +00:00
|
|
|
// TODO: convert event_button_press(int x, int y) to area->event_button_press()
|
|
|
|
// if systray is ok
|
2008-10-02 18:47:02 +00:00
|
|
|
|
|
|
|
switch (button) {
|
|
|
|
case 2:
|
|
|
|
action = panel.mouse_middle;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
action = panel.mouse_right;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
action = panel.mouse_scroll_up;
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
action = panel.mouse_scroll_down;
|
|
|
|
break;
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// search taskbar
|
|
|
|
Taskbar *tskbar;
|
|
|
|
GSList *l0;
|
|
|
|
for (l0 = panel.area.list; l0 ; l0 = l0->next) {
|
|
|
|
tskbar = l0->data;
|
|
|
|
if (x >= tskbar->area.posx && x <= (tskbar->area.posx + tskbar->area.width))
|
|
|
|
goto suite;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: check better solution to keep window below
|
|
|
|
XLowerWindow (server.dsp, window.main_win);
|
|
|
|
panel.task_drag = 0;
|
|
|
|
return;
|
|
|
|
|
|
|
|
suite:
|
|
|
|
// drag and drop task
|
|
|
|
if (panel.task_drag) {
|
|
|
|
if (tskbar != panel.task_drag->area.parent && action == TOGGLE_ICONIFY) {
|
2009-01-18 22:12:41 +00:00
|
|
|
if (!panel.task_drag->all_desktop && panel.mode == MULTI_DESKTOP) {
|
|
|
|
windows_set_desktop(panel.task_drag->win, tskbar->desktop);
|
|
|
|
if (tskbar->desktop == server.desktop)
|
|
|
|
set_active(panel.task_drag->win);
|
|
|
|
panel.task_drag = 0;
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else panel.task_drag = 0;
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// switch desktop
|
|
|
|
if (panel.mode == MULTI_DESKTOP)
|
|
|
|
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;
|
|
|
|
if (x >= tsk->area.posx && x <= (tsk->area.posx + tsk->area.width)) {
|
|
|
|
window_action (tsk, action);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// to keep window below
|
|
|
|
XLowerWindow (server.dsp, window.main_win);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void event_property_notify (Window win, Atom at)
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Change number of desktops */
|
|
|
|
else if (at == server.atom._NET_NUMBER_OF_DESKTOPS) {
|
|
|
|
config_taskbar();
|
2008-11-08 20:23:42 +00:00
|
|
|
visible_object();
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
/* Change desktop */
|
|
|
|
else if (at == server.atom._NET_CURRENT_DESKTOP) {
|
|
|
|
server.desktop = server_get_current_desktop ();
|
2008-11-08 20:23:42 +00:00
|
|
|
if (panel.mode != MULTI_DESKTOP) {
|
|
|
|
visible_object();
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
/* Window list */
|
|
|
|
else if (at == server.atom._NET_CLIENT_LIST) {
|
|
|
|
task_refresh_tasklist ();
|
|
|
|
panel.refresh = 1;
|
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
/* Change active */
|
2008-10-02 18:47:02 +00:00
|
|
|
else if (at == server.atom._NET_ACTIVE_WINDOW) {
|
2009-01-17 14:07:56 +00:00
|
|
|
if (panel.task_active) {
|
2009-01-18 22:12:41 +00:00
|
|
|
if (panel.task_active->all_desktop) {
|
|
|
|
Task *tsk;
|
|
|
|
GSList *l0;
|
|
|
|
int i, nb;
|
|
|
|
nb = server.nb_desktop * server.nb_monitor;
|
|
|
|
for (i=0 ; i < nb ; i++) {
|
|
|
|
for (l0 = panel.taskbar[i].area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk = l0->data;
|
|
|
|
tsk->area.is_active = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
panel.task_active->area.is_active = 0;
|
2009-01-17 14:07:56 +00:00
|
|
|
panel.task_active = 0;
|
|
|
|
}
|
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-01-17 14:07:56 +00:00
|
|
|
if (t) {
|
2009-01-18 22:12:41 +00:00
|
|
|
if (t->all_desktop) {
|
|
|
|
Task *tsk;
|
|
|
|
GSList *l0;
|
|
|
|
int i, nb;
|
|
|
|
nb = server.nb_desktop * server.nb_monitor;
|
|
|
|
for (i=0 ; i < nb ; i++) {
|
|
|
|
for (l0 = panel.taskbar[i].area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk = l0->data;
|
|
|
|
if (tsk->win == t->win)
|
|
|
|
tsk->area.is_active = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
t->area.is_active = 1;
|
2009-01-17 14:07:56 +00:00
|
|
|
panel.task_active = t;
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
panel.refresh = 1;
|
|
|
|
}
|
|
|
|
/* Wallpaper changed */
|
|
|
|
else if (at == server.atom._XROOTPMAP_ID) {
|
2009-02-03 20:40:46 +00:00
|
|
|
set_panel_background();
|
2008-10-02 18:47:02 +00:00
|
|
|
panel.refresh = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
Task *tsk;
|
|
|
|
tsk = task_get_task (win);
|
|
|
|
if (!tsk) return;
|
|
|
|
//printf("atom root_win = %s, %s\n", XGetAtomName(server.dsp, at), tsk->title);
|
|
|
|
|
|
|
|
/* Window title changed */
|
|
|
|
if (at == server.atom._NET_WM_VISIBLE_NAME || at == server.atom._NET_WM_NAME || at == server.atom.WM_NAME) {
|
2009-01-18 22:12:41 +00:00
|
|
|
if (tsk->all_desktop) {
|
|
|
|
Task *tsk2;
|
|
|
|
GSList *l0;
|
|
|
|
int i, nb;
|
|
|
|
nb = server.nb_desktop * server.nb_monitor;
|
|
|
|
for (i=0 ; i < nb ; i++) {
|
|
|
|
for (l0 = panel.taskbar[i].area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk2 = l0->data;
|
|
|
|
if (tsk->win == tsk2->win) {
|
|
|
|
get_title(tsk2);
|
|
|
|
tsk2->area.redraw = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
get_title(tsk);
|
|
|
|
tsk->area.redraw = 1;
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
panel.refresh = 1;
|
|
|
|
}
|
|
|
|
/* Iconic state */
|
|
|
|
else if (at == server.atom.WM_STATE) {
|
|
|
|
if (window_is_iconified (win))
|
2009-01-18 22:12:41 +00:00
|
|
|
if (panel.task_active) {
|
|
|
|
if (panel.task_active->win == tsk->win) {
|
|
|
|
if (tsk->all_desktop) {
|
|
|
|
Task *tsk2;
|
|
|
|
GSList *l0;
|
|
|
|
int i, nb;
|
|
|
|
nb = server.nb_desktop * server.nb_monitor;
|
|
|
|
for (i=0 ; i < nb ; i++) {
|
|
|
|
for (l0 = panel.taskbar[i].area.list; l0 ; l0 = l0->next) {
|
|
|
|
tsk2 = l0->data;
|
|
|
|
tsk2->area.is_active = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
panel.task_active->area.is_active = 0;
|
|
|
|
panel.task_active = 0;
|
|
|
|
}
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
/* Window icon changed */
|
|
|
|
else if (at == server.atom._NET_WM_ICON) {
|
2008-11-18 22:14:01 +00:00
|
|
|
if (tsk->icon_data) {
|
|
|
|
free (tsk->icon_data);
|
|
|
|
tsk->icon_data = 0;
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
tsk->area.redraw = 1;
|
|
|
|
panel.refresh = 1;
|
|
|
|
}
|
|
|
|
/* Window desktop changed */
|
|
|
|
else if (at == server.atom._NET_WM_DESKTOP) {
|
2009-01-20 00:19:05 +00:00
|
|
|
remove_task (tsk);
|
2009-01-18 22:12:41 +00:00
|
|
|
add_task (win);
|
2008-10-02 18:47:02 +00:00
|
|
|
panel.refresh = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!server.got_root_win) server.root_win = RootWindow (server.dsp, server.screen);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void event_configure_notify (Window win)
|
2009-01-17 14:07:56 +00:00
|
|
|
{
|
2009-01-20 00:19:05 +00:00
|
|
|
if (panel.mode != MULTI_MONITOR) return;
|
2008-10-02 18:47:02 +00:00
|
|
|
|
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
|
|
|
|
2008-11-08 20:23:42 +00:00
|
|
|
Taskbar *tskbar = tsk->area.parent;
|
2009-01-17 14:07:56 +00:00
|
|
|
if (tskbar->monitor != window_get_monitor (win)) {
|
2008-11-08 20:23:42 +00:00
|
|
|
// task on another monitor
|
|
|
|
remove_task (tsk);
|
2009-01-20 00:19:05 +00:00
|
|
|
add_task (win);
|
2008-11-08 20:23:42 +00:00
|
|
|
panel.refresh = 1;
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void event_timer()
|
|
|
|
{
|
|
|
|
struct timeval stv;
|
|
|
|
|
2009-02-03 20:40:46 +00:00
|
|
|
if (!time1_format) return;
|
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-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// update clock
|
2009-02-03 20:40:46 +00:00
|
|
|
time_clock.tv_sec = stv.tv_sec;
|
|
|
|
time_clock.tv_sec -= time_clock.tv_sec % time_precision;
|
2008-10-02 18:47:02 +00:00
|
|
|
panel.clock.area.redraw = 1;
|
|
|
|
panel.refresh = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
XEvent e;
|
|
|
|
fd_set fd;
|
|
|
|
int x11_fd, i, c;
|
|
|
|
struct timeval tv;
|
|
|
|
|
|
|
|
c = getopt (argc, argv, "c:");
|
|
|
|
init ();
|
|
|
|
|
|
|
|
load_config:
|
2009-01-05 21:01:05 +00:00
|
|
|
// append full transparency background
|
|
|
|
list_back = g_slist_append(0, calloc(1, sizeof(Area)));
|
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
// read tint2rc config
|
|
|
|
i = 0;
|
|
|
|
if (c != -1)
|
|
|
|
i = config_read_file (optarg);
|
|
|
|
if (!i)
|
|
|
|
i = config_read ();
|
|
|
|
if (!i) {
|
|
|
|
fprintf(stderr, "usage: tint2 [-c] <config_file>\n");
|
|
|
|
cleanup();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
config_finish ();
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
window_draw_panel ();
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-01-05 21:01:05 +00:00
|
|
|
// BUG: refresh(clock) is needed here, but 'on the paper' it's not necessary.
|
|
|
|
refresh(&panel.clock.area);
|
2008-10-02 18:47:02 +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:
|
|
|
|
if (e.xbutton.button == 1) event_button_press (e.xbutton.x, e.xbutton.y);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ButtonRelease:
|
|
|
|
event_button_release (e.xbutton.button, e.xbutton.x, e.xbutton.y);
|
|
|
|
break;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
case Expose:
|
2009-02-03 20:40:46 +00:00
|
|
|
//XCopyArea (server.dsp, panel.area.pix.pmap, server.root_win, server.gc_root, 0, 0, panel.area.width, panel.area.height, server.posx, server.posy);
|
|
|
|
//XCopyArea (server.dsp, server.pmap, window.main_win, server.gc, panel.area.paddingxlr, 0, panel.area.width-(2*panel.area.paddingxlr), panel.area.height, 0, 0);
|
|
|
|
XCopyArea (server.dsp, server.pmap, window.main_win, server.gc, 0, 0, panel.area.width, panel.area.height, 0, 0);
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PropertyNotify:
|
2008-10-30 15:39:24 +00:00
|
|
|
//printf("PropertyNotify\n");
|
2008-10-02 18:47:02 +00:00
|
|
|
event_property_notify (e.xproperty.window, e.xproperty.atom);
|
|
|
|
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);
|
2008-10-02 18:47:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else event_timer();
|
|
|
|
|
|
|
|
switch (panel.signal_pending) {
|
|
|
|
case SIGUSR1:
|
|
|
|
goto load_config;
|
|
|
|
case SIGINT:
|
|
|
|
case SIGTERM:
|
|
|
|
cleanup ();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (panel.refresh && !panel.sleep_mode) {
|
|
|
|
visual_refresh ();
|
|
|
|
//printf(" *** visual_refresh\n");
|
2009-01-17 14:07:56 +00:00
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|