widgets: replace appicon by imagebox

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-09-11 15:57:06 +02:00
parent 856192fa99
commit 71ac6710e5
6 changed files with 177 additions and 104 deletions

View File

@ -83,7 +83,7 @@ set(AWE_SRCS
${SOURCE_DIR}/widgets/tasklist.c
${SOURCE_DIR}/widgets/textbox.c
${SOURCE_DIR}/widgets/systray.c
${SOURCE_DIR}/widgets/appicon.c)
${SOURCE_DIR}/widgets/imagebox.c)
set(AWE_CLIENT_SRCS
${SOURCE_DIR}/awesome-client.c

View File

@ -131,14 +131,14 @@ mysystray = widget({ type = "systray", name = "mysystray", align = "right" })
-- We need one layoutbox per screen.
mylayoutbox = {}
for s = 1, screen.count() do
mylayoutbox[s] = widget({ type = "textbox", name = "mylayoutbox", align = "right" })
mylayoutbox[s] = widget({ type = "imagebox", name = "mylayoutbox", align = "right" })
mylayoutbox[s]:buttons({
button({ }, 1, function () awful.layout.inc(layouts, 1) end),
button({ }, 3, function () awful.layout.inc(layouts, -1) end),
button({ }, 4, function () awful.layout.inc(layouts, 1) end),
button({ }, 5, function () awful.layout.inc(layouts, -1) end)
})
mylayoutbox[s].text = "<bg image=\"@AWESOME_ICON_PATH@/layouts/tilew.png\" resize=\"true\"/>"
mylayoutbox[s].image = image("@AWESOME_ICON_PATH@/layouts/tilew.png")
end
-- Create a statusbar for each screen and add it
@ -417,10 +417,9 @@ end)
awful.hooks.arrange.register(function (screen)
local layout = awful.layout.get(screen)
if layout then
mylayoutbox[screen].text =
"<bg image=\"@AWESOME_ICON_PATH@/layouts/" .. awful.layout.get(screen) .. "w.png\" resize=\"true\"/>"
else
mylayoutbox[screen].text = "No layout."
mylayoutbox[screen].image = image("@AWESOME_ICON_PATH@/layouts/" .. layout .. "w.png")
else
mylayoutbox[screen].image = nil
end
-- Give focus to the latest client in history if no window has focus

View File

@ -1522,6 +1522,9 @@ function titlebar.add(c, args)
}
title:buttons(bts)
local appicon = capi.widget({ type = "imagebox", name = "appicon", align = "left" })
appicon.image = c.icon
if theme.titlebar_close_button == "true" then
local closef = widget.button({ name = "closef", align = "right",
image = theme.titlebar_close_button_focus
@ -1543,13 +1546,13 @@ function titlebar.add(c, args)
close:buttons(bts)
tb:widgets({
capi.widget({ type = "appicon", name = "appicon", align = "left" }),
appicon,
title,
closef, close
})
else
tb:widgets({
capi.widget({ type = "appicon", name = "appicon", align = "left" }),
appicon,
title
})
end

View File

@ -45,7 +45,7 @@ widget_constructor_t progressbar_new;
widget_constructor_t graph_new;
widget_constructor_t tasklist_new;
widget_constructor_t systray_new;
widget_constructor_t appicon_new;
widget_constructor_t imagebox_new;
#endif

View File

@ -1,94 +0,0 @@
/*
* appicon.c - application icon 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 "ewmh.h"
#include "titlebar.h"
extern awesome_t globalconf;
/** Draw a application icon widget.
* \param ctx The draw context.
* \param screen The screen.
* \param w The widget node we are linked from.
* \param offset Offset to draw at.
* \param used The size used on the element.
* \param p A pointer to the object we're draw onto.
* \param type The type of the object.
* \return The width used.
*/
static int
appicon_draw(draw_context_t *ctx, int screen __attribute__ ((unused)),
widget_node_t *w,
int offset, int used,
void *p, awesome_type_t type)
{
client_t *c = NULL;
draw_image_t *image;
switch(type)
{
case AWESOME_TYPE_STATUSBAR:
c = globalconf.screen_focus->client_focus;
break;
case AWESOME_TYPE_TITLEBAR:
c = client_getbytitlebar(p);
break;
}
if(c)
{
if(c->icon)
{
image = c->icon->image;
w->area.width = ((double) ctx->height / (double) image->height) * image->width;
w->area.x = widget_calculate_offset(ctx->width,
w->area.width,
offset,
w->widget->align);
draw_image(ctx, w->area.x,
w->area.y, ctx->height, image);
}
}
else
w->area.width = 0;
return w->area.width;
}
/** Create a new appicon widget.
* \param align Widget alignment.
* \return A brand new widget.
*/
widget_t *
appicon_new(alignment_t align)
{
widget_t *w;
w = p_new(widget_t, 1);
widget_common_new(w);
w->align = align;
w->draw = appicon_draw;
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80

165
widgets/imagebox.c Normal file
View File

@ -0,0 +1,165 @@
/*
* 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;
} imagebox_data_t;
/** Draw an image.
* \param ctx The draw context.
* \param screen The screen.
* \param w The widget node we are linked from.
* \param offset Offset to draw at.
* \param used The size used on the element.
* \param p A pointer to the object we're draw onto.
* \param type The type of the object.
* \return The width used.
*/
static int
imagebox_draw(draw_context_t *ctx, int screen __attribute__ ((unused)),
widget_node_t *w,
int offset, int used,
void *p, awesome_type_t type)
{
imagebox_data_t *d = w->widget->data;
w->area.y = 0;
if(d->image)
{
w->area.height = ctx->height;
w->area.width = ((double) ctx->height / (double) d->image->image->height) * d->image->image->width;
w->area.x = widget_calculate_offset(ctx->width,
w->area.width,
offset,
w->widget->align);
draw_image(ctx, w->area.x, w->area.y, ctx->height, d->image->image);
}
else
{
w->area.width = 0;
w->area.height = 0;
}
return w->area.width;
}
/** 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.
* \return The number of elements pushed on stack.
* \luastack
* \lfield image The image to display.
* \lfield width The width of the imagebox. Set to 0 for auto.
*/
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);
default:
break;
}
return 0;
}
/** 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)
{
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;
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);
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->data = p_new(imagebox_data_t, 1);
return w;
}
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80