[widget] Rename WidgetConstructor to widget_constructor_t

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-05-25 14:07:01 +02:00
parent 083a4f13f7
commit c822a9ccf1
3 changed files with 10 additions and 10 deletions

View File

@ -7,7 +7,7 @@ echo "{"
for file in ${top_srcdir}/widget.h
do
echo " /* $file */"
grep '^WidgetConstructor ' "$file" | cut -d' ' -f2 | cut -d\; -f1 | while read widget
grep '^widget_constructor_t ' "$file" | cut -d' ' -f2 | cut -d\; -f1 | while read widget
do
shortname=$(echo $widget | cut -d_ -f1)
echo " {\"$shortname\", $widget},"

View File

@ -168,7 +168,7 @@ luaA_widget_new(lua_State *L)
{
const char *type;
widget_t *w;
WidgetConstructor *wc;
widget_constructor_t *wc;
alignment_t align;
luaA_checktable(L, 1);
@ -176,7 +176,7 @@ luaA_widget_new(lua_State *L)
type = luaA_getopt_string(L, 1, "type", NULL);
/* \todo use type to call the WidgetConstructor and set ->tell*/
/* \todo use type to call the widget_constructor_t and set ->tell*/
if((wc = name_func_lookup(type, WidgetList)))
w = wc(align);
else

View File

@ -30,7 +30,7 @@
#define WIDGET_CACHE_TAGS 1<<2
#define WIDGET_CACHE_ALL (WIDGET_CACHE_CLIENTS | WIDGET_CACHE_LAYOUTS | WIDGET_CACHE_TAGS)
typedef widget_t *(WidgetConstructor)(alignment_t);
typedef widget_t *(widget_constructor_t)(alignment_t);
void widget_invalidate_cache(int, int);
int widget_calculate_offset(int, int, int, int);
@ -39,12 +39,12 @@ widget_t * widget_getbyname(const char *);
void widget_invalidate_statusbar_bywidget(widget_t *);
void widget_tell_managestatus(widget_t *, widget_tell_status_t, const char *);
WidgetConstructor taglist_new;
WidgetConstructor textbox_new;
WidgetConstructor iconbox_new;
WidgetConstructor progressbar_new;
WidgetConstructor graph_new;
WidgetConstructor tasklist_new;
widget_constructor_t taglist_new;
widget_constructor_t textbox_new;
widget_constructor_t iconbox_new;
widget_constructor_t progressbar_new;
widget_constructor_t graph_new;
widget_constructor_t tasklist_new;
#endif