2009-01-20 21:16:54 +00:00
|
|
|
/**************************************************************************
|
|
|
|
* Tint2 : systraybar
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 thierry lorthiois (lorthiois@bbsoft.fr)
|
2009-06-19 21:08:34 +00:00
|
|
|
* based on 'docker-1.5' from Ben Jansens.
|
2009-01-20 21:16:54 +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 <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
|
|
|
#include <Imlib2.h>
|
|
|
|
|
|
|
|
#include "systraybar.h"
|
|
|
|
#include "server.h"
|
2009-02-10 23:16:10 +00:00
|
|
|
#include "panel.h"
|
2009-01-20 21:16:54 +00:00
|
|
|
|
2009-02-10 23:16:10 +00:00
|
|
|
GSList *icons;
|
2009-01-20 21:16:54 +00:00
|
|
|
|
2009-02-10 23:16:10 +00:00
|
|
|
/* defined in the systray spec */
|
|
|
|
#define SYSTEM_TRAY_REQUEST_DOCK 0
|
|
|
|
#define SYSTEM_TRAY_BEGIN_MESSAGE 1
|
|
|
|
#define SYSTEM_TRAY_CANCEL_MESSAGE 2
|
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
// selection window
|
2009-04-01 20:19:09 +00:00
|
|
|
Window net_sel_win = None, hint_win = None;
|
2009-02-10 23:16:10 +00:00
|
|
|
|
2009-02-27 22:18:30 +00:00
|
|
|
// freedesktop specification doesn't allow multi systray
|
|
|
|
Systraybar systray;
|
2009-06-20 15:08:33 +00:00
|
|
|
int refresh_systray;
|
2009-02-27 22:18:30 +00:00
|
|
|
|
2009-02-10 23:16:10 +00:00
|
|
|
|
2009-02-15 17:22:48 +00:00
|
|
|
void init_systray()
|
2009-02-10 23:16:10 +00:00
|
|
|
{
|
2009-02-27 22:18:30 +00:00
|
|
|
Panel *panel = &panel1[0];
|
|
|
|
|
2009-02-28 23:04:53 +00:00
|
|
|
if (systray.area.on_screen)
|
2009-03-07 10:05:15 +00:00
|
|
|
systray.area.on_screen = init_net();
|
2009-02-15 17:22:48 +00:00
|
|
|
|
2009-02-28 23:04:53 +00:00
|
|
|
if (!systray.area.on_screen)
|
2009-02-27 22:18:30 +00:00
|
|
|
return;
|
2009-02-15 17:22:48 +00:00
|
|
|
|
2009-06-19 21:08:34 +00:00
|
|
|
systray.area.parent = panel;
|
|
|
|
systray.area.panel = panel;
|
2009-06-20 15:08:33 +00:00
|
|
|
systray.area._draw_foreground = draw_systray;
|
2009-06-19 21:08:34 +00:00
|
|
|
systray.area._resize = resize_systray;
|
2009-06-24 20:17:57 +00:00
|
|
|
systray.area.resize = 1;
|
|
|
|
systray.area.redraw = 1;
|
2009-06-20 15:08:33 +00:00
|
|
|
refresh_systray = 0;
|
2009-06-19 21:08:34 +00:00
|
|
|
|
2009-02-27 22:18:30 +00:00
|
|
|
// configure systray
|
|
|
|
// draw only one systray (even with multi panel)
|
2009-06-24 20:17:57 +00:00
|
|
|
if (panel_horizontal) {
|
|
|
|
systray.area.posy = panel->area.pix.border.width + panel->area.paddingy;
|
|
|
|
systray.area.height = panel->area.height - (2 * systray.area.posy);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
systray.area.posx = panel->area.pix.border.width + panel->area.paddingy;
|
|
|
|
systray.area.width = panel->area.width - (2 * panel->area.pix.border.width) - (2 * panel->area.paddingy);
|
|
|
|
}
|
2009-02-15 17:22:48 +00:00
|
|
|
}
|
2009-02-10 23:16:10 +00:00
|
|
|
|
|
|
|
|
2009-02-15 17:22:48 +00:00
|
|
|
void cleanup_systray()
|
|
|
|
{
|
2009-03-01 19:18:35 +00:00
|
|
|
if (systray.list_icons) {
|
2009-07-19 17:53:30 +00:00
|
|
|
// remove_icon change systray.list_icons
|
|
|
|
while(systray.list_icons)
|
|
|
|
remove_icon((TrayWindow*)systray.list_icons->data);
|
2009-03-01 19:18:35 +00:00
|
|
|
|
|
|
|
g_slist_free(systray.list_icons);
|
|
|
|
systray.list_icons = 0;
|
|
|
|
}
|
|
|
|
|
2009-02-27 22:18:30 +00:00
|
|
|
free_area(&systray.area);
|
2009-03-07 10:05:15 +00:00
|
|
|
cleanup_net();
|
2009-02-10 23:16:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-20 15:08:33 +00:00
|
|
|
void draw_systray(void *obj, cairo_t *c, int active)
|
|
|
|
{
|
|
|
|
// tint2 don't draw systray icons. just the background.
|
|
|
|
refresh_systray = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-28 23:04:53 +00:00
|
|
|
void resize_systray(void *obj)
|
|
|
|
{
|
|
|
|
Systraybar *sysbar = obj;
|
|
|
|
Panel *panel = sysbar->area.panel;
|
|
|
|
TrayWindow *traywin;
|
|
|
|
GSList *l;
|
|
|
|
int count, posx, posy;
|
|
|
|
int icon_size;
|
|
|
|
|
2009-06-24 20:17:57 +00:00
|
|
|
if (panel_horizontal)
|
|
|
|
icon_size = sysbar->area.height;
|
|
|
|
else
|
|
|
|
icon_size = sysbar->area.width;
|
|
|
|
icon_size = icon_size - (2 * sysbar->area.pix.border.width) - (2 * sysbar->area.paddingy);
|
2009-02-28 23:04:53 +00:00
|
|
|
count = g_slist_length(systray.list_icons);
|
|
|
|
|
2009-06-24 20:17:57 +00:00
|
|
|
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);
|
2009-02-28 23:04:53 +00:00
|
|
|
|
2009-06-24 20:17:57 +00:00
|
|
|
systray.area.posx = panel->area.width - panel->area.pix.border.width - panel->area.paddingxlr - systray.area.width;
|
|
|
|
if (panel->clock.area.on_screen)
|
|
|
|
systray.area.posx -= (panel->clock.area.width + panel->area.paddingx);
|
2009-06-18 20:26:40 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-06-24 20:17:57 +00:00
|
|
|
if (panel->battery.area.on_screen)
|
|
|
|
systray.area.posx -= (panel->battery.area.width + panel->area.paddingx);
|
2009-06-18 20:26:40 +00:00
|
|
|
#endif
|
2009-06-24 20:17:57 +00:00
|
|
|
}
|
|
|
|
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);
|
2009-02-28 23:04:53 +00:00
|
|
|
|
2009-06-24 20:17:57 +00:00
|
|
|
systray.area.posy = panel->area.pix.border.width + panel->area.paddingxlr;
|
|
|
|
if (panel->clock.area.on_screen)
|
|
|
|
systray.area.posy += (panel->clock.area.height + panel->area.paddingx);
|
|
|
|
#ifdef ENABLE_BATTERY
|
|
|
|
if (panel->battery.area.on_screen)
|
|
|
|
systray.area.posy += (panel->battery.area.height + panel->area.paddingx);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if (panel_horizontal) {
|
|
|
|
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 {
|
|
|
|
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;
|
|
|
|
}
|
2009-02-28 23:04:53 +00:00
|
|
|
for (l = systray.list_icons; l ; l = l->next) {
|
|
|
|
traywin = (TrayWindow*)l->data;
|
|
|
|
|
|
|
|
traywin->y = posy;
|
|
|
|
traywin->x = posx;
|
2009-06-14 19:07:58 +00:00
|
|
|
traywin->width = icon_size;
|
|
|
|
traywin->height = icon_size;
|
2009-06-24 20:17:57 +00:00
|
|
|
if (panel_horizontal)
|
|
|
|
posx += (icon_size + systray.area.paddingx);
|
|
|
|
else
|
|
|
|
posy += (icon_size + systray.area.paddingx);
|
2009-02-28 23:04:53 +00:00
|
|
|
|
2009-06-19 21:08:34 +00:00
|
|
|
// position and size the icon window
|
|
|
|
XMoveResizeWindow(server.dsp, traywin->id, traywin->x, traywin->y, icon_size, icon_size);
|
|
|
|
}
|
2009-02-28 23:04:53 +00:00
|
|
|
}
|
|
|
|
|
2009-04-01 20:19:09 +00:00
|
|
|
|
2009-06-29 18:39:44 +00:00
|
|
|
// ***********************************************
|
|
|
|
// systray protocol
|
2009-02-28 23:04:53 +00:00
|
|
|
|
2009-03-07 10:05:15 +00:00
|
|
|
int init_net()
|
2009-02-25 20:04:43 +00:00
|
|
|
{
|
2009-06-29 18:39:44 +00:00
|
|
|
// freedesktop systray specification
|
2009-03-07 10:05:15 +00:00
|
|
|
if (XGetSelectionOwner(server.dsp, server.atom._NET_SYSTEM_TRAY_SCREEN) != None) {
|
|
|
|
fprintf(stderr, "tint2 : another systray is running\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
// init systray protocol
|
|
|
|
net_sel_win = XCreateSimpleWindow(server.dsp, server.root_win, -1, -1, 1, 1, 0, 0, 0);
|
|
|
|
|
|
|
|
// v0.2 trayer specification. tint2 always orizontal.
|
2009-06-29 18:39:44 +00:00
|
|
|
// TODO : vertical panel ??
|
2009-02-25 20:04:43 +00:00
|
|
|
int orient = 0;
|
|
|
|
XChangeProperty(server.dsp, net_sel_win, server.atom._NET_SYSTEM_TRAY_ORIENTATION, XA_CARDINAL, 32, PropModeReplace, (unsigned char *) &orient, 1);
|
|
|
|
|
|
|
|
XSetSelectionOwner(server.dsp, server.atom._NET_SYSTEM_TRAY_SCREEN, net_sel_win, CurrentTime);
|
|
|
|
if (XGetSelectionOwner(server.dsp, server.atom._NET_SYSTEM_TRAY_SCREEN) != net_sel_win) {
|
|
|
|
fprintf(stderr, "tint2 : can't get systray manager\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
XClientMessageEvent ev;
|
|
|
|
ev.type = ClientMessage;
|
|
|
|
ev.window = server.root_win;
|
|
|
|
ev.message_type = server.atom.MANAGER;
|
|
|
|
ev.format = 32;
|
|
|
|
ev.data.l[0] = CurrentTime;
|
|
|
|
ev.data.l[1] = server.atom._NET_SYSTEM_TRAY_SCREEN;
|
|
|
|
ev.data.l[2] = net_sel_win;
|
|
|
|
ev.data.l[3] = 0;
|
|
|
|
ev.data.l[4] = 0;
|
2009-02-27 22:18:30 +00:00
|
|
|
XSendEvent(server.dsp, server.root_win, False, StructureNotifyMask, (XEvent*)&ev);
|
2009-02-25 20:04:43 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-07 10:05:15 +00:00
|
|
|
void cleanup_net()
|
|
|
|
{
|
|
|
|
if (net_sel_win != None) {
|
|
|
|
XDestroyWindow(server.dsp, net_sel_win);
|
|
|
|
net_sel_win = None;
|
|
|
|
}
|
|
|
|
}
|
2009-02-10 23:16:10 +00:00
|
|
|
|
2009-04-01 20:19:09 +00:00
|
|
|
|
2009-02-10 23:16:10 +00:00
|
|
|
gboolean error;
|
|
|
|
int window_error_handler(Display *d, XErrorEvent *e)
|
|
|
|
{
|
2009-06-18 20:26:40 +00:00
|
|
|
d=d;e=e;
|
|
|
|
error = TRUE;
|
|
|
|
if (e->error_code != BadWindow) {
|
|
|
|
printf("error_handler %d\n", e->error_code);
|
|
|
|
}
|
|
|
|
return 0;
|
2009-02-10 23:16:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-19 21:08:34 +00:00
|
|
|
gboolean add_icon(Window id)
|
2009-02-10 23:16:10 +00:00
|
|
|
{
|
2009-06-19 21:08:34 +00:00
|
|
|
TrayWindow *traywin;
|
2009-06-18 20:26:40 +00:00
|
|
|
XErrorHandler old;
|
|
|
|
Panel *panel = systray.area.panel;
|
2009-02-10 23:16:10 +00:00
|
|
|
|
2009-06-18 20:26:40 +00:00
|
|
|
error = FALSE;
|
|
|
|
old = XSetErrorHandler(window_error_handler);
|
|
|
|
XReparentWindow(server.dsp, id, panel->main_win, 0, 0);
|
|
|
|
XSync(server.dsp, False);
|
|
|
|
XSetErrorHandler(old);
|
2009-06-19 21:08:34 +00:00
|
|
|
if (error != FALSE) {
|
2009-03-01 19:18:35 +00:00
|
|
|
fprintf(stderr, "tint2 : not icon_swallow\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-06-29 18:39:44 +00:00
|
|
|
{
|
|
|
|
Atom acttype;
|
|
|
|
int actfmt;
|
|
|
|
unsigned long nbitem, bytes;
|
|
|
|
unsigned char *data = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = XGetWindowProperty(server.dsp, id, server.atom._XEMBED_INFO, 0, 2, False, server.atom._XEMBED_INFO, &acttype, &actfmt, &nbitem, &bytes, &data);
|
|
|
|
if (data) XFree(data);
|
|
|
|
if (ret != Success) {
|
|
|
|
fprintf(stderr, "tint2 : xembed error\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
XEvent e;
|
|
|
|
e.xclient.type = ClientMessage;
|
|
|
|
e.xclient.serial = 0;
|
|
|
|
e.xclient.send_event = True;
|
|
|
|
e.xclient.message_type = server.atom._XEMBED;
|
|
|
|
e.xclient.window = id;
|
|
|
|
e.xclient.format = 32;
|
|
|
|
e.xclient.data.l[0] = CurrentTime;
|
|
|
|
e.xclient.data.l[1] = XEMBED_EMBEDDED_NOTIFY;
|
|
|
|
e.xclient.data.l[2] = 0;
|
|
|
|
e.xclient.data.l[3] = panel->main_win;
|
|
|
|
e.xclient.data.l[4] = 0;
|
|
|
|
XSendEvent(server.dsp, id, False, 0xFFFFFF, &e);
|
|
|
|
}
|
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
traywin = g_new0(TrayWindow, 1);
|
|
|
|
traywin->id = id;
|
2009-02-10 23:16:10 +00:00
|
|
|
|
2009-02-28 23:04:53 +00:00
|
|
|
systray.list_icons = g_slist_prepend(systray.list_icons, traywin);
|
2009-02-27 22:18:30 +00:00
|
|
|
systray.area.resize = 1;
|
2009-06-19 21:08:34 +00:00
|
|
|
systray.area.redraw = 1;
|
2009-06-29 18:39:44 +00:00
|
|
|
//printf("add_icon id %lx, %d\n", id, g_slist_length(systray.list_icons));
|
2009-06-19 21:08:34 +00:00
|
|
|
|
|
|
|
// watch for the icon trying to resize itself!
|
|
|
|
XSelectInput(server.dsp, traywin->id, StructureNotifyMask);
|
|
|
|
|
|
|
|
// show the window
|
|
|
|
XMapRaised(server.dsp, traywin->id);
|
2009-02-27 22:18:30 +00:00
|
|
|
|
|
|
|
// changed in systray force resize on panel
|
|
|
|
panel->area.resize = 1;
|
|
|
|
panel_refresh = 1;
|
2009-02-25 20:04:43 +00:00
|
|
|
return TRUE;
|
2009-02-10 23:16:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-01 19:18:35 +00:00
|
|
|
void remove_icon(TrayWindow *traywin)
|
2009-02-27 22:18:30 +00:00
|
|
|
{
|
|
|
|
XErrorHandler old;
|
2009-06-29 18:39:44 +00:00
|
|
|
Window id = traywin->id;
|
2009-02-27 22:18:30 +00:00
|
|
|
|
2009-06-29 18:39:44 +00:00
|
|
|
// remove from our list
|
|
|
|
systray.list_icons = g_slist_remove(systray.list_icons, traywin);
|
|
|
|
g_free(traywin);
|
|
|
|
systray.area.resize = 1;
|
|
|
|
systray.area.redraw = 1;
|
|
|
|
//printf("remove_icon id %lx, %d\n", traywin->id);
|
|
|
|
|
|
|
|
XSelectInput(server.dsp, id, NoEventMask);
|
2009-02-27 22:18:30 +00:00
|
|
|
|
2009-03-01 19:18:35 +00:00
|
|
|
// reparent to root
|
|
|
|
error = FALSE;
|
|
|
|
old = XSetErrorHandler(window_error_handler);
|
2009-06-29 18:39:44 +00:00
|
|
|
XUnmapWindow(server.dsp, id);
|
|
|
|
XReparentWindow(server.dsp, id, server.root_win, 0, 0);
|
2009-03-01 19:18:35 +00:00
|
|
|
XSync(server.dsp, False);
|
|
|
|
XSetErrorHandler(old);
|
|
|
|
|
2009-02-27 22:18:30 +00:00
|
|
|
// changed in systray force resize on panel
|
|
|
|
Panel *panel = systray.area.panel;
|
|
|
|
panel->area.resize = 1;
|
|
|
|
panel_refresh = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-10 23:16:10 +00:00
|
|
|
void net_message(XClientMessageEvent *e)
|
|
|
|
{
|
2009-02-25 20:04:43 +00:00
|
|
|
unsigned long opcode;
|
|
|
|
Window id;
|
|
|
|
|
|
|
|
opcode = e->data.l[1];
|
|
|
|
switch (opcode) {
|
2009-02-28 23:04:53 +00:00
|
|
|
case SYSTEM_TRAY_REQUEST_DOCK:
|
|
|
|
id = e->data.l[2];
|
2009-03-01 19:18:35 +00:00
|
|
|
if (id) add_icon(id);
|
2009-02-28 23:04:53 +00:00
|
|
|
break;
|
2009-02-25 20:04:43 +00:00
|
|
|
|
2009-02-28 23:04:53 +00:00
|
|
|
case SYSTEM_TRAY_BEGIN_MESSAGE:
|
|
|
|
case SYSTEM_TRAY_CANCEL_MESSAGE:
|
2009-06-13 19:39:41 +00:00
|
|
|
// we don't show baloons messages.
|
2009-02-28 23:04:53 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2009-06-29 18:39:44 +00:00
|
|
|
if (opcode == server.atom._NET_SYSTEM_TRAY_MESSAGE_DATA)
|
2009-06-13 19:39:41 +00:00
|
|
|
printf("message from dockapp: %s\n", e->data.b);
|
|
|
|
else
|
2009-06-29 18:39:44 +00:00
|
|
|
fprintf(stderr, "SYSTEM_TRAY : unknown message type\n");
|
2009-02-28 23:04:53 +00:00
|
|
|
break;
|
2009-02-25 20:04:43 +00:00
|
|
|
}
|
2009-02-10 23:16:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-20 15:08:33 +00:00
|
|
|
void refresh_systray_icon()
|
2009-06-13 19:39:41 +00:00
|
|
|
{
|
|
|
|
TrayWindow *traywin;
|
|
|
|
GSList *l;
|
|
|
|
for (l = systray.list_icons; l ; l = l->next) {
|
|
|
|
traywin = (TrayWindow*)l->data;
|
|
|
|
XClearArea(server.dsp, traywin->id, 0, 0, traywin->width, traywin->height, True);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-10 23:16:10 +00:00
|
|
|
|