2 * iconbox.c - icon widget
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include "common/util.h"
25 extern AwesomeConf globalconf
;
34 iconbox_draw(Widget
*widget
, DrawCtx
*ctx
, int offset
,
35 int used
__attribute__ ((unused
)))
37 Data
*d
= widget
->data
;
38 Area area
= draw_get_image_size(d
->image
);
41 if(area
.width
< 0 || area
.height
< 0)
42 return (widget
->area
.width
= 0);
45 widget
->area
.width
= ((double) widget
->statusbar
->height
/ area
.height
) * area
.width
;
47 widget
->area
.width
= area
.width
;
49 widget
->area
.height
= widget
->statusbar
->height
;
51 if(!widget
->user_supplied_x
)
52 widget
->area
.x
= widget_calculate_offset(widget
->statusbar
->width
,
57 if(!widget
->user_supplied_y
)
60 draw_image(ctx
, widget
->area
.x
, widget
->area
.y
,
61 d
->resize
? widget
->statusbar
->height
: 0, d
->image
);
63 return widget
->area
.width
;
67 iconbox_tell(Widget
*widget
, char *command
)
69 Data
*d
= widget
->data
;
73 d
->image
= a_strdup(command
);
77 iconbox_new(Statusbar
*statusbar
, cfg_t
*config
)
83 widget_common_new(w
, statusbar
, config
);
84 w
->draw
= iconbox_draw
;
85 w
->tell
= iconbox_tell
;
86 w
->data
= d
= p_new(Data
, 1);
87 d
->image
= a_strdup(cfg_getstr(config
, "image"));
88 d
->resize
= cfg_getbool(config
, "resize");
92 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80