better use of the space in smart placement
[awesome.git] / widgets / iconbox.c
blobfa4855e77d1c2fca9818e2f9aa3a7d2564e4748a
1 /*
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.
22 #include "widget.h"
23 #include "common/util.h"
25 extern AwesomeConf globalconf;
27 typedef struct
29 char *image;
30 Bool resize;
31 } Data;
33 static int
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);
40 /* image not valid */
41 if(area.width < 0 || area.height < 0)
42 return (widget->area.width = 0);
44 if(d->resize)
45 widget->area.width = ((double) widget->statusbar->height / area.height) * area.width;
46 else
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,
53 widget->area.width,
54 offset,
55 widget->alignment);
57 if(!widget->user_supplied_y)
58 widget->area.y = 0;
60 draw_image(ctx, widget->area.x, widget->area.y,
61 d->resize ? widget->statusbar->height : 0, d->image);
63 return widget->area.width;
66 static void
67 iconbox_tell(Widget *widget, char *command)
69 Data *d = widget->data;
71 if(d->image)
72 p_delete(&d->image);
73 d->image = a_strdup(command);
76 Widget *
77 iconbox_new(Statusbar *statusbar, cfg_t *config)
79 Widget *w;
80 Data *d;
82 w = p_new(Widget, 1);
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");
90 return w;
92 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80