awesome/widgets/imagebox.c
Julien Danjou 0b6b96131a imagebox: allow to not resize images
Signed-off-by: Julien Danjou <julien@danjou.info>
2008-11-04 16:34:29 +01:00

197 lines
4.8 KiB
C

/*
* imagebox.c - imagebox widget
*
* Copyright © 2008 Julien Danjou <julien@danjou.info>
*
* 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"
#include "titlebar.h"
extern awesome_t globalconf;
/** The imagebox private data structure */
typedef struct
{
/** Imagebox image */
image_t *image;
xcolor_t bg;
bool resize;
} imagebox_data_t;
static area_t
imagebox_geometry(widget_t *widget, int screen, int height, int width)
{
area_t geometry;
imagebox_data_t *d = widget->data;
if(d->image)
{
if(d->resize)
geometry.width = ((double) height / (double) d->image->height) * d->image->width;
else
geometry.width = d->image->width;
geometry.height = height;
}
else
{
geometry.width = 0;
geometry.height = 0;
}
return geometry;
}
/** Draw an image.
* \param widget The widget.
* \param ctx The draw context.
* \param geometry The geometry we draw in.
* \param screen The screen.
* \param p A pointer to the object we're draw onto.
*/
static void
imagebox_draw(widget_t *widget, draw_context_t *ctx, area_t geometry,
int screen, wibox_t *p)
{
imagebox_data_t *d = widget->data;
if(d->image)
{
if(d->bg.initialized)
draw_rectangle(ctx, geometry, 1.0, true, &d->bg);
draw_image(ctx, geometry.x, geometry.y, d->resize ? ctx->height : 0, d->image);
}
}
/** Delete a imagebox widget.
* \param w The widget to destroy.
*/
static void
imagebox_destructor(widget_t *w)
{
imagebox_data_t *d = w->data;
image_unref(&d->image);
p_delete(&d);
}
/** Imagebox widget.
* \param L The Lua VM state.
* \param token The key token.
* \param resize Resize image.
* \return The number of elements pushed on stack.
* \luastack
* \lfield image The image to display.
* \lfield bg The background color to use.
*/
static int
luaA_imagebox_index(lua_State *L, awesome_token_t token)
{
widget_t **widget = luaA_checkudata(L, 1, "widget");
imagebox_data_t *d = (*widget)->data;
switch(token)
{
case A_TK_IMAGE:
if(d->image)
return luaA_image_userdata_new(L, d->image);
else
return 0;
case A_TK_BG:
luaA_pushcolor(L, &d->bg);
break;
case A_TK_RESIZE:
lua_pushboolean(L, d->resize);
break;
default:
return 0;
}
return 1;
}
/** The __newindex method for a imagebox object.
* \param L The Lua VM state.
* \param token The key token.
* \return The number of elements pushed on stack.
*/
static int
luaA_imagebox_newindex(lua_State *L, awesome_token_t token)
{
widget_t **widget = luaA_checkudata(L, 1, "widget");
image_t **image = NULL;
imagebox_data_t *d = (*widget)->data;
switch(token)
{
const char *buf;
size_t len;
case A_TK_IMAGE:
if(lua_isnil(L, 3)
|| (image = luaA_checkudata(L, 3, "image")))
{
/* unref image */
image_unref(&d->image);
if(image)
d->image = image_ref(image);
else
d->image = NULL;
}
break;
case A_TK_BG:
if(lua_isnil(L, 3))
p_clear(&d->bg, 1);
else if((buf = luaL_checklstring(L, 3, &len)))
xcolor_init_reply(xcolor_init_unchecked(&d->bg, buf, len));
break;
case A_TK_RESIZE:
d->resize = luaA_checkboolean(L, 3);
break;
default:
return 0;
}
widget_invalidate_bywidget(*widget);
return 0;
}
/** Create a new imagebox widget.
* \param align Widget alignment.
* \return A brand new widget.
*/
widget_t *
imagebox_new(alignment_t align)
{
widget_t *w = p_new(widget_t, 1);
imagebox_data_t *d;
widget_common_new(w);
w->align = align;
w->draw = imagebox_draw;
w->index = luaA_imagebox_index;
w->newindex = luaA_imagebox_newindex;
w->destructor = imagebox_destructor;
w->geometry = imagebox_geometry;
w->data = d = p_new(imagebox_data_t, 1);
d->resize = true;
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80