2008-06-14 18:12:16 +02:00
|
|
|
/*
|
|
|
|
* systray.c - systray widget
|
|
|
|
*
|
|
|
|
* Copyright © 2008 Julien Danjou <julien@danjou.info>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 <xcb/xcb.h>
|
|
|
|
|
|
|
|
#include "widget.h"
|
2008-06-14 23:20:35 +02:00
|
|
|
#include "screen.h"
|
2008-06-14 18:12:16 +02:00
|
|
|
#include "common/xembed.h"
|
|
|
|
|
|
|
|
extern awesome_t globalconf;
|
|
|
|
|
|
|
|
static int
|
|
|
|
systray_draw(draw_context_t *ctx,
|
|
|
|
int screen __attribute__ ((unused)),
|
|
|
|
widget_node_t *w,
|
|
|
|
int offset, int used __attribute__ ((unused)),
|
2008-06-14 23:20:35 +02:00
|
|
|
void *p)
|
2008-06-14 18:12:16 +02:00
|
|
|
{
|
2008-06-14 23:20:35 +02:00
|
|
|
int i = 0, phys_screen;
|
2008-06-14 18:12:16 +02:00
|
|
|
xembed_window_t *em;
|
|
|
|
uint32_t config_win_vals[6];
|
2008-06-14 23:20:35 +02:00
|
|
|
/* p is always a statusbar, titlebars are forbidden */
|
|
|
|
statusbar_t *sb = (statusbar_t *) p;
|
2008-06-14 18:12:16 +02:00
|
|
|
|
2008-06-14 23:20:35 +02:00
|
|
|
phys_screen = screen_virttophys(screen);
|
2008-06-14 18:12:16 +02:00
|
|
|
|
|
|
|
for(em = globalconf.embedded; em; em = em->next)
|
|
|
|
i++;
|
|
|
|
|
|
|
|
if(ctx->width - used > 0)
|
|
|
|
w->area.width = MIN(i * ctx->height, ctx->width - used);
|
|
|
|
else
|
|
|
|
w->area.width = 0;
|
|
|
|
w->area.height = ctx->height;
|
|
|
|
w->area.x = widget_calculate_offset(ctx->width,
|
|
|
|
w->area.width,
|
|
|
|
offset,
|
|
|
|
w->widget->align);
|
|
|
|
w->area.y = 0;
|
|
|
|
|
|
|
|
/* width */
|
|
|
|
config_win_vals[2] = w->area.height;
|
|
|
|
/* height */
|
|
|
|
config_win_vals[3] = w->area.height;
|
|
|
|
/* sibling */
|
2008-06-14 23:20:35 +02:00
|
|
|
config_win_vals[4] = sb->sw->window;
|
2008-06-14 18:12:16 +02:00
|
|
|
/* stack mode */
|
|
|
|
config_win_vals[5] = XCB_STACK_MODE_ABOVE;
|
|
|
|
|
2008-06-14 23:20:35 +02:00
|
|
|
switch(sb->position)
|
2008-06-14 18:12:16 +02:00
|
|
|
{
|
|
|
|
case Left:
|
2008-06-14 23:20:35 +02:00
|
|
|
config_win_vals[0] = sb->sw->geometry.x + w->area.y;
|
|
|
|
config_win_vals[1] = sb->sw->geometry.y + sb->sw->geometry.height
|
2008-06-14 18:12:16 +02:00
|
|
|
- w->area.x - config_win_vals[3];
|
|
|
|
for(em = globalconf.embedded; em; em = em->next)
|
2008-06-14 23:20:35 +02:00
|
|
|
if(config_win_vals[1] - config_win_vals[2] >= (uint32_t) sb->sw->geometry.y)
|
2008-06-14 18:12:16 +02:00
|
|
|
{
|
|
|
|
xcb_map_window(globalconf.connection, em->win);
|
|
|
|
xcb_configure_window(globalconf.connection, em->win,
|
|
|
|
XCB_CONFIG_WINDOW_X
|
|
|
|
| XCB_CONFIG_WINDOW_Y
|
|
|
|
| XCB_CONFIG_WINDOW_WIDTH
|
|
|
|
| XCB_CONFIG_WINDOW_HEIGHT
|
|
|
|
| XCB_CONFIG_WINDOW_SIBLING
|
|
|
|
| XCB_CONFIG_WINDOW_STACK_MODE,
|
|
|
|
config_win_vals);
|
|
|
|
config_win_vals[1] -= config_win_vals[3];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xcb_unmap_window(globalconf.connection, em->win);
|
|
|
|
break;
|
|
|
|
case Right:
|
2008-06-14 23:20:35 +02:00
|
|
|
config_win_vals[0] = sb->sw->geometry.x - w->area.y;
|
|
|
|
config_win_vals[1] = sb->sw->geometry.y + w->area.x;
|
2008-06-14 18:12:16 +02:00
|
|
|
for(em = globalconf.embedded; em; em = em->next)
|
2008-06-14 23:20:35 +02:00
|
|
|
if(config_win_vals[1] + config_win_vals[3] <= (uint32_t) sb->sw->geometry.y + ctx->width)
|
2008-06-14 18:12:16 +02:00
|
|
|
{
|
|
|
|
xcb_map_window(globalconf.connection, em->win);
|
|
|
|
xcb_configure_window(globalconf.connection, em->win,
|
|
|
|
XCB_CONFIG_WINDOW_X
|
|
|
|
| XCB_CONFIG_WINDOW_Y
|
|
|
|
| XCB_CONFIG_WINDOW_WIDTH
|
|
|
|
| XCB_CONFIG_WINDOW_HEIGHT
|
|
|
|
| XCB_CONFIG_WINDOW_SIBLING
|
|
|
|
| XCB_CONFIG_WINDOW_STACK_MODE,
|
|
|
|
config_win_vals);
|
|
|
|
config_win_vals[1] += config_win_vals[3];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xcb_unmap_window(globalconf.connection, em->win);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* x */
|
2008-06-14 23:20:35 +02:00
|
|
|
config_win_vals[0] = sb->sw->geometry.x + w->area.x;
|
2008-06-14 18:12:16 +02:00
|
|
|
/* y */
|
2008-06-14 23:20:35 +02:00
|
|
|
config_win_vals[1] = sb->sw->geometry.y + w->area.y;
|
2008-06-14 18:12:16 +02:00
|
|
|
|
|
|
|
for(em = globalconf.embedded; em; em = em->next)
|
|
|
|
/* if(x + width < systray.x + systray.width) */
|
2008-06-14 23:20:35 +02:00
|
|
|
if(config_win_vals[0] + config_win_vals[2] <= (uint32_t) AREA_RIGHT(w->area) + sb->sw->geometry.x)
|
2008-06-14 18:12:16 +02:00
|
|
|
{
|
|
|
|
xcb_map_window(globalconf.connection, em->win);
|
|
|
|
xcb_configure_window(globalconf.connection, em->win,
|
|
|
|
XCB_CONFIG_WINDOW_X
|
|
|
|
| XCB_CONFIG_WINDOW_Y
|
|
|
|
| XCB_CONFIG_WINDOW_WIDTH
|
|
|
|
| XCB_CONFIG_WINDOW_HEIGHT
|
|
|
|
| XCB_CONFIG_WINDOW_SIBLING
|
|
|
|
| XCB_CONFIG_WINDOW_STACK_MODE,
|
|
|
|
config_win_vals);
|
|
|
|
config_win_vals[0] += config_win_vals[2];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xcb_unmap_window(globalconf.connection, em->win);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return w->area.width;
|
|
|
|
}
|
|
|
|
|
|
|
|
widget_t *
|
|
|
|
systray_new(alignment_t align)
|
|
|
|
{
|
|
|
|
widget_t *w;
|
|
|
|
|
|
|
|
w = p_new(widget_t, 1);
|
|
|
|
widget_common_new(w);
|
|
|
|
w->align = align;
|
|
|
|
w->draw = systray_draw;
|
|
|
|
w->cache_flags = WIDGET_CACHE_EMBEDDED;
|
|
|
|
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|