imagebox: remove valign
[awesome.git] / wibox.h
blobf66667045a665b2e6cf4566c94031c6e445e2d22
1 /*
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
25 #include "widget.h"
27 /** Wibox types */
28 typedef enum
30 WIBOX_TYPE_NORMAL = 0,
31 WIBOX_TYPE_TITLEBAR
32 } wibox_type_t;
34 /** Wibox type */
35 struct wibox_t
37 LUA_OBJECT_HEADER
38 /** Ontop */
39 bool ontop;
40 /** Visible */
41 bool isvisible;
42 /** Position */
43 position_t position;
44 /** Wibox type */
45 wibox_type_t type;
46 /** Alignment */
47 alignment_t align;
48 /** Screen */
49 screen_t *screen;
50 /** Widget list */
51 widget_node_array_t widgets;
52 void *widgets_table;
53 /** Widget the mouse is over */
54 widget_t *mouse_over;
55 /** Mouse over event handler */
56 void *mouse_enter, *mouse_leave;
57 /** Need update */
58 bool need_update;
59 /** Need shape update */
60 bool need_shape_update;
61 /** Cursor */
62 char *cursor;
63 /** Background image */
64 image_t *bg_image;
65 /* Banned? used for titlebars */
66 bool isbanned;
67 /** Button bindings */
68 void *buttons;
69 /** The window object. */
70 xcb_window_t window;
71 /** The pixmap copied to the window object. */
72 xcb_pixmap_t pixmap;
73 /** The graphic context. */
74 xcb_gcontext_t gc;
75 /** The window geometry. */
76 area_t geometry;
77 /** The window border */
78 struct
80 /** The window border width */
81 uint16_t width;
82 /** The window border color */
83 xcolor_t color;
84 } border;
85 /** Draw context */
86 draw_context_t ctx;
87 /** Orientation */
88 orientation_t orientation;
89 /** Opacity */
90 double opacity;
91 /** The window's shape */
92 struct
94 /** The window's content */
95 image_t *clip;
96 /** The window's content and border */
97 image_t *bounding;
98 } shape;
101 void wibox_unref_simplified(wibox_t **);
103 ARRAY_FUNCS(wibox_t *, wibox, wibox_unref_simplified)
105 void wibox_refresh(void);
107 void luaA_wibox_invalidate_byitem(lua_State *, const void *);
109 wibox_t * wibox_getbywin(xcb_window_t);
111 void wibox_moveresize(wibox_t *, area_t);
112 void wibox_refresh_pixmap_partial(wibox_t *, int16_t, int16_t, uint16_t, uint16_t);
113 void wibox_init(wibox_t *, int);
114 void wibox_wipe(wibox_t *);
115 void wibox_border_width_set(wibox_t *, uint32_t);
116 void wibox_border_color_set(wibox_t *, const xcolor_t *);
117 void wibox_orientation_set(wibox_t *, orientation_t);
119 lua_class_t wibox_class;
120 LUA_OBJECT_FUNCS(wibox_class, wibox_t, wibox, "wibox")
122 #endif
123 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80