awesome/widgets/netwmicon.c

112 lines
3.3 KiB
C
Raw Normal View History

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
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
2007-12-22 19:32:47 +01:00
*
* 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 "focus.h"
#include "tag.h"
2007-12-22 19:32:47 +01:00
#include "widget.h"
#include "rules.h"
2008-01-03 19:02:23 +01:00
#include "ewmh.h"
2008-01-21 18:14:59 +01:00
#include "common/util.h"
2007-12-22 19:32:47 +01:00
extern AwesomeConf globalconf;
static int
netwmicon_draw(Widget *widget, DrawCtx *ctx, int offset,
int used __attribute__ ((unused)))
{
Area area;
Rule* r;
2007-12-27 19:57:46 +01:00
Client *sel = focus_get_current_client(widget->statusbar->screen);
2008-01-03 19:02:23 +01:00
NetWMIcon *icon;
2007-12-22 19:32:47 +01:00
if(!sel)
{
2008-01-04 21:46:25 +01:00
widget->area.width = 0;
2007-12-22 19:32:47 +01:00
return 0;
}
2007-12-22 19:32:47 +01:00
2008-01-05 12:44:14 +01:00
widget->area.height = widget->statusbar->height;
2008-01-12 22:59:13 +01:00
if((r = rule_matching_client(sel)) && r->icon)
{
area = draw_get_image_size(r->icon);
widget->area.width = ((double) widget->statusbar->height / (double) area.height)
* area.width;
if(!widget->user_supplied_x)
widget->area.x = widget_calculate_offset(widget->statusbar->width,
widget->area.width,
offset,
widget->alignment);
2008-01-12 22:59:13 +01:00
if(!widget->user_supplied_y)
widget->area.y = 0;
draw_image(ctx, widget->area.x, widget->area.y,
widget->statusbar->height, r->icon);
2008-01-12 22:59:13 +01:00
return widget->area.width;
}
2007-12-22 19:32:47 +01:00
2008-01-03 19:02:23 +01:00
if(!(icon = ewmh_get_window_icon(sel->win)))
{
2008-01-04 21:46:25 +01:00
widget->area.width = 0;
2007-12-22 19:32:47 +01:00
return 0;
}
2007-12-27 20:31:56 +01:00
2008-01-04 21:46:25 +01:00
widget->area.width = ((double) widget->statusbar->height / (double) icon->height) * icon->width;
2007-12-22 19:32:47 +01:00
if(!widget->user_supplied_x)
widget->area.x = widget_calculate_offset(widget->statusbar->width,
widget->area.width,
offset,
widget->alignment);
if(!widget->user_supplied_y)
widget->area.y = 0;
2007-12-22 19:32:47 +01:00
2008-01-03 19:02:23 +01:00
draw_image_from_argb_data(ctx,
widget->area.x, widget->area.y,
2008-01-03 19:02:23 +01:00
icon->width, icon->height,
widget->statusbar->height, icon->image);
2008-01-04 15:59:17 +01:00
p_delete(&icon->image);
2008-01-03 19:02:23 +01:00
p_delete(&icon);
2008-01-04 21:46:25 +01:00
return widget->area.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;
2008-01-07 18:12:38 +01:00
/* Set cache property */
w->cache.flags = WIDGET_CACHE_CLIENTS;
2007-12-22 19:32:47 +01:00
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80