2007-12-22 19:32:47 +01:00
|
|
|
/*
|
2008-02-06 20:13:41 +01:00
|
|
|
* focusicon.c - focused window 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-02-06 20:13:41 +01:00
|
|
|
|
2007-12-22 19:32:47 +01:00
|
|
|
#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"
|
2007-12-29 19:44:15 +01:00
|
|
|
#include "rules.h"
|
2008-01-03 19:02:23 +01:00
|
|
|
#include "ewmh.h"
|
2007-12-22 19:32:47 +01:00
|
|
|
|
|
|
|
extern AwesomeConf globalconf;
|
|
|
|
|
|
|
|
static int
|
2008-02-06 20:13:41 +01:00
|
|
|
focusicon_draw(Widget *widget, DrawCtx *ctx, int offset,
|
2007-12-22 19:32:47 +01:00
|
|
|
int used __attribute__ ((unused)))
|
|
|
|
{
|
2008-03-14 09:37:25 +01:00
|
|
|
area_t area;
|
2007-12-29 19:44:15 +01:00
|
|
|
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-03 19:06:44 +01:00
|
|
|
{
|
2008-01-04 21:46:25 +01:00
|
|
|
widget->area.width = 0;
|
2007-12-22 19:32:47 +01:00
|
|
|
return 0;
|
2008-01-03 19:06:44 +01:00
|
|
|
}
|
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);
|
2007-12-29 19:44:15 +01:00
|
|
|
|
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);
|
2007-12-29 19:44:15 +01:00
|
|
|
|
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-03 19:06:44 +01:00
|
|
|
{
|
2008-01-04 21:46:25 +01:00
|
|
|
widget->area.width = 0;
|
2007-12-22 19:32:47 +01:00
|
|
|
return 0;
|
2008-01-03 19:06:44 +01:00
|
|
|
}
|
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
|
|
|
|
2008-01-05 12:35:12 +01:00
|
|
|
if(!widget->user_supplied_x)
|
|
|
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
2008-01-04 22:05:52 +01:00
|
|
|
widget->area.width,
|
|
|
|
offset,
|
|
|
|
widget->alignment);
|
|
|
|
|
2008-01-05 12:35:12 +01:00
|
|
|
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,
|
2008-01-05 12:35:12 +01:00
|
|
|
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);
|
2007-12-27 11:22:57 +01:00
|
|
|
|
2008-01-04 21:46:25 +01:00
|
|
|
return widget->area.width;
|
2007-12-22 19:32:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Widget *
|
2008-02-06 20:13:41 +01:00
|
|
|
focusicon_new(Statusbar *statusbar, cfg_t *config)
|
2007-12-22 19:32:47 +01:00
|
|
|
{
|
|
|
|
Widget *w;
|
|
|
|
|
|
|
|
w = p_new(Widget, 1);
|
2007-12-22 20:55:17 +01:00
|
|
|
widget_common_new(w, statusbar, config);
|
2008-02-06 20:13:41 +01:00
|
|
|
w->draw = focusicon_draw;
|
2008-03-19 11:45:27 +01:00
|
|
|
w->alignment = * (Alignment *) cfg_getptr(config, "align");
|
2008-02-13 06:53:08 +01:00
|
|
|
|
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
|