taglist: append area even if function fails
[awesome.git] / statusbar.h
blobb199ed3cb3694276c88d95a8a595a552bbfe6e10
1 /*
2 * statusbar.h - statusbar functions header
4 * Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #ifndef AWESOME_STATUSBAR_H
23 #define AWESOME_STATUSBAR_H
25 #include "structs.h"
26 #include "common/refcount.h"
27 #include "common/swindow.h"
29 static inline void
30 statusbar_delete(statusbar_t **statusbar)
32 simplewindow_delete(&(*statusbar)->sw);
33 widget_node_list_wipe(&(*statusbar)->widgets);
34 p_delete(&(*statusbar)->name);
35 p_delete(statusbar);
38 void statusbar_refresh(void);
40 int luaA_statusbar_userdata_new(lua_State *, statusbar_t *);
42 DO_RCNT(statusbar_t, statusbar, statusbar_delete)
43 DO_SLIST(statusbar_t, statusbar, statusbar_delete)
45 #endif
46 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80