2008-09-21 10:13:21 +02:00
|
|
|
/*
|
2008-09-24 12:13:21 +02:00
|
|
|
* wibox.h - wibox functions header
|
2008-09-21 10:13:21 +02:00
|
|
|
*
|
2009-07-28 16:04:58 +02:00
|
|
|
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
|
2008-09-21 10:13:21 +02: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2009-07-28 16:04:58 +02:00
|
|
|
#ifndef AWESOME_WIBOX_H
|
|
|
|
#define AWESOME_WIBOX_H
|
2008-09-21 10:13:21 +02:00
|
|
|
|
|
|
|
#include "widget.h"
|
|
|
|
|
2009-04-17 16:18:14 +02:00
|
|
|
/** Wibox types */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
WIBOX_TYPE_NORMAL = 0,
|
|
|
|
WIBOX_TYPE_TITLEBAR
|
|
|
|
} wibox_type_t;
|
|
|
|
|
|
|
|
/** Wibox type */
|
|
|
|
struct wibox_t
|
|
|
|
{
|
2009-06-16 16:24:58 +02:00
|
|
|
LUA_OBJECT_HEADER
|
2009-04-17 16:18:14 +02:00
|
|
|
/** Ontop */
|
|
|
|
bool ontop;
|
|
|
|
/** Visible */
|
|
|
|
bool isvisible;
|
|
|
|
/** Position */
|
|
|
|
position_t position;
|
|
|
|
/** Wibox type */
|
|
|
|
wibox_type_t type;
|
|
|
|
/** Alignment */
|
|
|
|
alignment_t align;
|
|
|
|
/** Screen */
|
|
|
|
screen_t *screen;
|
|
|
|
/** Widget list */
|
|
|
|
widget_node_array_t widgets;
|
2009-07-28 10:29:30 +02:00
|
|
|
void *widgets_table;
|
2009-04-17 16:18:14 +02:00
|
|
|
/** Widget the mouse is over */
|
|
|
|
widget_t *mouse_over;
|
|
|
|
/** Mouse over event handler */
|
2009-07-28 10:29:30 +02:00
|
|
|
void *mouse_enter, *mouse_leave;
|
2009-04-17 16:18:14 +02:00
|
|
|
/** Need update */
|
|
|
|
bool need_update;
|
2009-06-23 12:55:50 +02:00
|
|
|
/** Need shape update */
|
|
|
|
bool need_shape_update;
|
2009-04-17 16:18:14 +02:00
|
|
|
/** Cursor */
|
|
|
|
char *cursor;
|
|
|
|
/** Background image */
|
|
|
|
image_t *bg_image;
|
|
|
|
/* Banned? used for titlebars */
|
|
|
|
bool isbanned;
|
|
|
|
/** Button bindings */
|
2009-07-28 10:44:54 +02:00
|
|
|
void *buttons;
|
2009-07-28 16:04:58 +02:00
|
|
|
/** The window object. */
|
|
|
|
xcb_window_t window;
|
|
|
|
/** The pixmap copied to the window object. */
|
|
|
|
xcb_pixmap_t pixmap;
|
|
|
|
/** The graphic context. */
|
|
|
|
xcb_gcontext_t gc;
|
|
|
|
/** The window geometry. */
|
|
|
|
area_t geometry;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
/** Internal geometry (matching X11 protocol) */
|
|
|
|
area_t internal;
|
|
|
|
} geometries;
|
|
|
|
/** The window border */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
/** The window border width */
|
|
|
|
uint16_t width;
|
|
|
|
/** The window border color */
|
|
|
|
xcolor_t color;
|
|
|
|
} border;
|
|
|
|
/** Draw context */
|
|
|
|
draw_context_t ctx;
|
|
|
|
/** Orientation */
|
|
|
|
orientation_t orientation;
|
|
|
|
/** Opacity */
|
|
|
|
double opacity;
|
|
|
|
/** The window's shape */
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
/** The window's content */
|
|
|
|
image_t *clip;
|
|
|
|
/** The window's content and border */
|
|
|
|
image_t *bounding;
|
|
|
|
} shape;
|
2009-04-17 16:18:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
void wibox_unref_simplified(wibox_t **);
|
|
|
|
|
2009-05-10 14:55:13 +02:00
|
|
|
ARRAY_FUNCS(wibox_t *, wibox, wibox_unref_simplified)
|
2009-04-17 16:18:14 +02:00
|
|
|
|
2008-09-21 11:47:29 +02:00
|
|
|
void wibox_refresh(void);
|
|
|
|
|
2008-10-19 19:14:55 +02:00
|
|
|
void luaA_wibox_invalidate_byitem(lua_State *, const void *);
|
|
|
|
|
2008-09-24 12:13:21 +02:00
|
|
|
wibox_t * wibox_getbywin(xcb_window_t);
|
2009-04-11 00:27:06 +02:00
|
|
|
|
2009-07-28 16:04:58 +02:00
|
|
|
void wibox_moveresize(wibox_t *, area_t);
|
|
|
|
void wibox_refresh_pixmap_partial(wibox_t *, int16_t, int16_t, uint16_t, uint16_t);
|
|
|
|
void wibox_init(wibox_t *, int);
|
|
|
|
void wibox_wipe(wibox_t *);
|
|
|
|
void wibox_border_width_set(wibox_t *, uint32_t);
|
|
|
|
void wibox_border_color_set(wibox_t *, const xcolor_t *);
|
|
|
|
void wibox_orientation_set(wibox_t *, orientation_t);
|
2008-09-24 12:13:21 +02:00
|
|
|
|
2009-04-11 00:27:06 +02:00
|
|
|
LUA_OBJECT_FUNCS(wibox_t, wibox, "wibox")
|
2008-09-21 10:13:21 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
|