2007-12-22 15:46:57 +01:00
|
|
|
/*
|
|
|
|
* widget.h - widget managing header
|
|
|
|
*
|
2008-03-15 09:10:32 +01:00
|
|
|
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
|
2007-12-22 15:46:57 +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
|
|
|
#ifndef AWESOME_WIDGET_H
|
|
|
|
#define AWESOME_WIDGET_H
|
|
|
|
|
2008-10-24 20:38:29 +02:00
|
|
|
#include "mouse.h"
|
2007-12-15 07:53:53 +01:00
|
|
|
|
2008-06-14 18:12:16 +02:00
|
|
|
#define WIDGET_CACHE_EMBEDDED (1<<3)
|
2007-12-15 18:21:02 +01:00
|
|
|
|
2008-10-21 17:33:16 +02:00
|
|
|
struct widget_node_t
|
|
|
|
{
|
|
|
|
/** The widget */
|
|
|
|
widget_t *widget;
|
2008-10-22 17:32:17 +02:00
|
|
|
/** The geometry where the widget was drawn */
|
|
|
|
area_t geometry;
|
2008-10-21 17:33:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/** Delete a widget structure.
|
|
|
|
* \param widget The widget to destroy.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
widget_delete(widget_t **widget)
|
|
|
|
{
|
|
|
|
if((*widget)->destructor)
|
|
|
|
(*widget)->destructor(*widget);
|
|
|
|
button_array_wipe(&(*widget)->buttons);
|
|
|
|
p_delete(&(*widget)->name);
|
|
|
|
p_delete(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
DO_RCNT(widget_t, widget, widget_delete)
|
|
|
|
|
2008-06-09 21:43:09 +02:00
|
|
|
void widget_invalidate_cache(int, int);
|
2007-12-22 20:55:17 +01:00
|
|
|
int widget_calculate_offset(int, int, int, int);
|
2008-05-20 15:39:47 +02:00
|
|
|
void widget_common_new(widget_t *);
|
2008-10-21 17:21:21 +02:00
|
|
|
void widget_render(widget_node_array_t *, draw_context_t *, xcb_gcontext_t, xcb_drawable_t, int, orientation_t, int, int, wibox_t *);
|
2007-12-15 07:53:53 +01:00
|
|
|
|
2008-06-18 18:31:35 +02:00
|
|
|
int luaA_widget_userdata_new(lua_State *, widget_t *);
|
2008-10-21 17:21:21 +02:00
|
|
|
void luaA_table2widgets(lua_State *, widget_node_array_t *);
|
2008-06-04 13:25:34 +02:00
|
|
|
|
2008-06-25 17:47:51 +02:00
|
|
|
void widget_invalidate_bywidget(widget_t *);
|
|
|
|
|
2008-05-25 14:07:01 +02:00
|
|
|
widget_constructor_t textbox_new;
|
|
|
|
widget_constructor_t progressbar_new;
|
|
|
|
widget_constructor_t graph_new;
|
2008-06-14 18:12:16 +02:00
|
|
|
widget_constructor_t systray_new;
|
2008-09-11 15:57:06 +02:00
|
|
|
widget_constructor_t imagebox_new;
|
2007-12-15 07:53:53 +01:00
|
|
|
|
2008-10-21 17:21:21 +02:00
|
|
|
/** Delete a widget node structure.
|
|
|
|
* \param node The node to destroy.
|
|
|
|
*/
|
|
|
|
static inline void
|
|
|
|
widget_node_delete(widget_node_t *node)
|
|
|
|
{
|
|
|
|
widget_unref(&node->widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
ARRAY_FUNCS(widget_node_t, widget_node, widget_node_delete)
|
|
|
|
|
2007-12-15 07:53:53 +01:00
|
|
|
#endif
|
|
|
|
|
2007-12-18 09:24:15 +01:00
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|