Make callbacks to rules.execute optional
[awesome.git] / objects / drawin.h
blob29e0c8329081d7a325002adbe7874298e7535a77
1 /*
2 * drawin.h - drawin functions header
4 * Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
5 * Copyright © 2010 Uli Schlachter <psychon@znc.in>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #ifndef AWESOME_OBJECTS_DRAWIN_H
24 #define AWESOME_OBJECTS_DRAWIN_H
26 #include "objects/window.h"
27 #include "objects/drawable.h"
29 /** Drawin type */
30 struct drawin_t
32 WINDOW_OBJECT_HEADER
33 /** Ontop */
34 bool ontop;
35 /** Visible */
36 bool visible;
37 /** Cursor */
38 char *cursor;
39 /** The drawable for this drawin. */
40 drawable_t *drawable;
41 /** The window geometry. */
42 area_t geometry;
45 ARRAY_FUNCS(drawin_t *, drawin, DO_NOTHING)
47 drawin_t * drawin_getbywin(xcb_window_t);
49 void drawin_refresh_pixmap_partial(drawin_t *, int16_t, int16_t, uint16_t, uint16_t);
51 void drawin_class_setup(lua_State *);
53 lua_class_t drawin_class;
55 #endif
56 // vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80