awesome/widgets/iconbox.c

106 lines
2.7 KiB
C
Raw Normal View History

2007-12-22 15:38:14 +01:00
/*
* iconbox.c - icon widget
*
2008-01-02 16:59:43 +01:00
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
2007-12-22 15:38:14 +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 "widget.h"
2008-01-21 18:14:59 +01:00
#include "common/util.h"
2007-12-22 15:38:14 +01:00
2008-01-02 14:59:15 +01:00
typedef struct
{
char *image;
2008-03-21 16:50:17 +01:00
bool resize;
2008-01-02 14:59:15 +01:00
} Data;
2007-12-22 15:38:14 +01:00
static int
iconbox_draw(draw_context_t *ctx, int screen __attribute__ ((unused)),
widget_node_t *w,
int width, int height, int offset,
int used __attribute__ ((unused)),
void *p __attribute__ ((unused)))
2007-12-22 15:38:14 +01:00
{
Data *d = w->widget->data;
area_t area = draw_get_image_size(d->image);
2008-01-02 14:59:15 +01:00
2008-01-17 13:45:24 +01:00
/* image not valid */
if(area.width < 0 || area.height < 0)
return (w->area.width = 0);
2008-01-17 13:45:24 +01:00
2008-01-02 14:59:15 +01:00
if(d->resize)
w->area.width = ((double) height / area.height) * area.width;
2008-01-02 14:59:15 +01:00
else
w->area.width = area.width;
if(w->area.width > width - used)
return (w->area.width = 0);
w->area.height = height;
2008-01-05 12:44:14 +01:00
w->area.x = widget_calculate_offset(width,
w->area.width,
offset,
w->widget->align);
2007-12-22 15:38:14 +01:00
w->area.y = 0;
draw_image(ctx, w->area.x, w->area.y,
d->resize ? height : 0, d->image);
2007-12-22 15:38:14 +01:00
return w->area.width;
2007-12-22 15:38:14 +01:00
}
static widget_tell_status_t
iconbox_tell(widget_t *widget, const char *property, const char *new_value)
2007-12-22 15:38:14 +01:00
{
2008-01-02 14:59:15 +01:00
Data *d = widget->data;
if(!new_value)
return WIDGET_ERROR_NOVALUE;
if(!a_strcmp(property, "image"))
{
p_delete(&d->image);
d->image = a_strdup(new_value);
}
else if(!a_strcmp(property, "resize"))
d->resize = a_strtobool(new_value);
else
return WIDGET_ERROR;
return WIDGET_NOERROR;
2007-12-22 15:38:14 +01:00
}
widget_t *
iconbox_new(alignment_t align)
2007-12-22 15:38:14 +01:00
{
widget_t *w;
2008-01-02 14:59:15 +01:00
Data *d;
2007-12-22 15:38:14 +01:00
w = p_new(widget_t, 1);
widget_common_new(w);
w->align = align;
2007-12-22 15:38:14 +01:00
w->draw = iconbox_draw;
w->tell = iconbox_tell;
2008-01-02 14:59:15 +01:00
w->data = d = p_new(Data, 1);
d->resize = true;
2007-12-22 15:38:14 +01:00
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80