2007-12-22 19:32:47 +01:00
|
|
|
/*
|
2007-12-22 20:55:39 +01:00
|
|
|
* netwmicon.c - NET_WM_ICON widget
|
2007-12-22 19:32:47 +01:00
|
|
|
*
|
|
|
|
* Copyright © 2007 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 <X11/Xmd.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <confuse.h>
|
|
|
|
#include "util.h"
|
|
|
|
#include "focus.h"
|
2007-12-27 19:23:10 +01:00
|
|
|
#include "tag.h"
|
2007-12-22 19:32:47 +01:00
|
|
|
#include "widget.h"
|
|
|
|
|
|
|
|
extern AwesomeConf globalconf;
|
|
|
|
|
|
|
|
static int
|
|
|
|
netwmicon_draw(Widget *widget, DrawCtx *ctx, int offset,
|
|
|
|
int used __attribute__ ((unused)))
|
|
|
|
{
|
|
|
|
unsigned long *data, pixel;
|
2007-12-27 20:31:56 +01:00
|
|
|
unsigned char *wdata;
|
2007-12-22 19:32:47 +01:00
|
|
|
Atom type;
|
2007-12-27 11:22:57 +01:00
|
|
|
int format, width, height, size, i;
|
2007-12-22 19:32:47 +01:00
|
|
|
unsigned long items, rest;
|
|
|
|
unsigned char *image, *imgdata;
|
2007-12-27 19:57:46 +01:00
|
|
|
Client *sel = focus_get_current_client(widget->statusbar->screen);
|
2007-12-22 19:32:47 +01:00
|
|
|
|
|
|
|
if(!sel)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(XGetWindowProperty(ctx->display, sel->win,
|
|
|
|
XInternAtom(ctx->display, "_NET_WM_ICON", False),
|
|
|
|
0L, LONG_MAX, False, XA_CARDINAL, &type, &format,
|
2007-12-27 20:31:56 +01:00
|
|
|
&items, &rest, &wdata) != Success
|
|
|
|
|| !wdata)
|
2007-12-22 19:32:47 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(type != XA_CARDINAL || format != 32 || items < 2)
|
|
|
|
{
|
2007-12-27 20:31:56 +01:00
|
|
|
XFree(wdata);
|
2007-12-22 19:32:47 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-12-27 20:31:56 +01:00
|
|
|
data = (unsigned long *) wdata;
|
|
|
|
|
2007-12-22 19:32:47 +01:00
|
|
|
width = data[0];
|
|
|
|
height = data[1];
|
|
|
|
size = width * height;
|
|
|
|
|
|
|
|
if(!size)
|
|
|
|
{
|
2007-12-27 20:31:56 +01:00
|
|
|
XFree(wdata);
|
2007-12-22 19:32:47 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
image = p_new(unsigned char, size * 4);
|
|
|
|
for(imgdata = image, i = 2; i < size + 2; i++, imgdata += 4)
|
|
|
|
{
|
|
|
|
pixel = data[i];
|
|
|
|
imgdata[3] = (pixel >> 24) & 0xff; /* A */
|
|
|
|
imgdata[0] = (pixel >> 16) & 0xff; /* R */
|
|
|
|
imgdata[1] = (pixel >> 8) & 0xff; /* G */
|
|
|
|
imgdata[2] = pixel & 0xff; /* B */
|
|
|
|
}
|
|
|
|
|
2007-12-27 11:22:57 +01:00
|
|
|
widget->location = widget_calculate_offset(widget->statusbar->width,
|
|
|
|
width,
|
|
|
|
offset,
|
|
|
|
widget->alignment);
|
2007-12-22 19:32:47 +01:00
|
|
|
|
2007-12-27 11:22:57 +01:00
|
|
|
draw_image_from_argb_data(ctx, widget->location, 0, width, height, widget->statusbar->height, image);
|
2007-12-22 19:32:47 +01:00
|
|
|
|
|
|
|
p_delete(&image);
|
|
|
|
|
2007-12-27 20:31:56 +01:00
|
|
|
XFree(wdata);
|
2007-12-27 11:22:57 +01:00
|
|
|
|
|
|
|
widget->width = widget->statusbar->height;
|
|
|
|
return widget->width;
|
2007-12-22 19:32:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Widget *
|
|
|
|
netwmicon_new(Statusbar *statusbar, cfg_t *config)
|
|
|
|
{
|
|
|
|
Widget *w;
|
|
|
|
|
|
|
|
w = p_new(Widget, 1);
|
2007-12-22 20:55:17 +01:00
|
|
|
widget_common_new(w, statusbar, config);
|
2007-12-22 19:32:47 +01:00
|
|
|
w->draw = netwmicon_draw;
|
|
|
|
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|