2 * wibox.h - wibox functions header
4 * Copyright © 2007-2009 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_WIBOX_H
23 #define AWESOME_WIBOX_H
27 #include "common/luaobject.h"
32 WIBOX_TYPE_NORMAL
= 0,
53 widget_node_array_t widgets
;
55 /** Widget the mouse is over */
59 /** Need shape update */
60 bool need_shape_update
;
63 /** Background image */
65 /* Banned? used for titlebars */
67 /** Button bindings */
68 button_array_t buttons
;
69 /** The window object. */
71 /** The pixmap copied to the window object. */
73 /** The graphic context. */
75 /** The window geometry. */
77 /** The window border width */
78 uint16_t border_width
;
79 /** The window border color */
80 xcolor_t border_color
;
84 orientation_t orientation
;
89 /** The window's shape */
92 /** The window's content */
94 /** The window's content and border */
97 /** Has wibox an attached systray **/
101 void wibox_unref_simplified(wibox_t
**);
103 ARRAY_FUNCS(wibox_t
*, wibox
, wibox_unref_simplified
)
104 void wibox_widget_node_array_wipe(lua_State
*, int);
106 void wibox_refresh(void);
108 void luaA_wibox_invalidate_byitem(lua_State
*, const void *);
110 wibox_t
* wibox_getbywin(xcb_window_t
);
112 void wibox_moveresize(lua_State
*, int, area_t
);
113 void wibox_refresh_pixmap_partial(wibox_t
*, int16_t, int16_t, uint16_t, uint16_t);
114 void wibox_init(wibox_t
*, int);
115 void wibox_wipe(wibox_t
*);
116 void wibox_set_opacity(lua_State
*, int, double);
117 void wibox_set_orientation(lua_State
*, int, orientation_t
);
119 void wibox_class_setup(lua_State
*);
121 lua_class_t wibox_class
;
123 void wibox_clear_mouse_over(wibox_t
*);
126 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80