2007-12-22 15:42:34 +01:00
|
|
|
/*
|
|
|
|
* layoutinfo.c - layout info widget
|
|
|
|
*
|
|
|
|
* Copyright © 2007 Aldo Cortesi <aldo@nullcube.com>
|
2008-01-02 16:59:43 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-12-27 00:13:44 +01:00
|
|
|
* Aldo Cortesi <aldo@nullcube.com>
|
2007-12-22 15:42:34 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
#include "widget.h"
|
2007-12-27 11:22:57 +01:00
|
|
|
#include "tag.h"
|
2008-01-21 18:14:59 +01:00
|
|
|
#include "common/util.h"
|
2007-12-15 07:53:53 +01:00
|
|
|
|
2007-12-19 04:46:44 +01:00
|
|
|
extern AwesomeConf globalconf;
|
2007-12-16 02:45:38 +01:00
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
static int
|
2007-12-16 09:34:33 +01:00
|
|
|
layoutinfo_draw(Widget *widget,
|
|
|
|
DrawCtx *ctx,
|
|
|
|
int offset,
|
|
|
|
int used __attribute__ ((unused)))
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
2008-01-29 08:31:13 +01:00
|
|
|
Tag **curtags = tags_get_current(widget->statusbar->screen);
|
2008-01-05 12:44:14 +01:00
|
|
|
Area area = draw_get_image_size(curtags[0]->layout->image);
|
2008-01-04 22:05:52 +01:00
|
|
|
|
2008-01-05 12:35:12 +01:00
|
|
|
if(!widget->user_supplied_x)
|
|
|
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
2008-01-04 22:05:52 +01:00
|
|
|
widget->statusbar->height,
|
|
|
|
offset,
|
|
|
|
widget->alignment);
|
|
|
|
|
2008-01-05 12:35:12 +01:00
|
|
|
if(!widget->user_supplied_y)
|
|
|
|
widget->area.y = 0;
|
2007-12-27 00:13:44 +01:00
|
|
|
|
2008-01-05 12:44:14 +01:00
|
|
|
widget->area.width = ((double) widget->statusbar->height / (double) area.height) * area.width;;
|
|
|
|
widget->area.height = widget->statusbar->height;
|
2007-12-27 00:13:44 +01:00
|
|
|
|
2008-01-05 12:35:12 +01:00
|
|
|
draw_image(ctx, widget->area.x, widget->area.y,
|
2008-01-04 22:05:52 +01:00
|
|
|
widget->statusbar->height,
|
2007-12-27 11:22:57 +01:00
|
|
|
curtags[0]->layout->image);
|
|
|
|
|
|
|
|
p_delete(&curtags);
|
|
|
|
|
2008-01-04 21:46:25 +01:00
|
|
|
return widget->area.width;
|
2007-12-15 07:53:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Widget *
|
2007-12-17 10:57:17 +01:00
|
|
|
layoutinfo_new(Statusbar *statusbar, cfg_t* config)
|
2007-12-15 07:53:53 +01:00
|
|
|
{
|
|
|
|
Widget *w;
|
|
|
|
w = p_new(Widget, 1);
|
2007-12-22 20:55:17 +01:00
|
|
|
widget_common_new(w, statusbar, config);
|
2007-12-27 15:49:00 +01:00
|
|
|
w->draw = layoutinfo_draw;
|
2008-01-07 18:12:38 +01:00
|
|
|
|
|
|
|
/* Set cache property */
|
|
|
|
w->cache.flags = WIDGET_CACHE_LAYOUTS;
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|