/* * netwmicon.c - NET_WM_ICON widget * * Copyright © 2007 Julien Danjou * * 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 #include #include #include "util.h" #include "focus.h" #include "tag.h" #include "widget.h" #include "rules.h" extern AwesomeConf globalconf; static int netwmicon_draw(Widget *widget, DrawCtx *ctx, int offset, int used __attribute__ ((unused))) { unsigned long *data, pixel; unsigned char *wdata; Atom type; int format, width, height, size, i; Area area; unsigned long items, rest; unsigned char *image, *imgdata; Rule* r; Client *sel = focus_get_current_client(widget->statusbar->screen); if(!sel) return 0; for(r = globalconf.rules; r; r = r->next) if(r->icon && client_match_rule(sel, r)) { area = draw_get_image_size(r->icon); widget->width = ((double) widget->statusbar->height / (double) area.height) * area.width; widget->location = widget_calculate_offset(widget->statusbar->width, widget->width, offset, widget->alignment); draw_image(ctx, widget->location, 0, widget->statusbar->height, r->icon); return widget->width; } if(XGetWindowProperty(globalconf.display, sel->win, XInternAtom(globalconf.display, "_NET_WM_ICON", False), 0L, LONG_MAX, False, XA_CARDINAL, &type, &format, &items, &rest, &wdata) != Success || !wdata) return 0; if(type != XA_CARDINAL || format != 32 || items < 2) { XFree(wdata); return 0; } data = (unsigned long *) wdata; width = data[0]; height = data[1]; size = width * height; if(!size) { XFree(wdata); 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 */ } widget->location = widget_calculate_offset(widget->statusbar->width, width, offset, widget->alignment); draw_image_from_argb_data(ctx, widget->location, 0, width, height, widget->statusbar->height, image); p_delete(&image); XFree(wdata); widget->width = widget->statusbar->height; return widget->width; } Widget * netwmicon_new(Statusbar *statusbar, cfg_t *config) { Widget *w; w = p_new(Widget, 1); widget_common_new(w, statusbar, config); w->draw = netwmicon_draw; return w; } // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80