]> icculus.org git repositories - dana/openbox.git/blob - openbox/moveresize.h
frame context fallbacks when there is no binding on the context
[dana/openbox.git] / openbox / moveresize.h
1 #ifndef __moveresize_h
2 #define __moveresize_h
3
4 #include <glib.h>
5
6 struct _ObClient;
7
8 extern gboolean moveresize_in_progress;
9 extern struct _ObClient *moveresize_client;
10
11 void moveresize_startup(gboolean reconfig);
12 void moveresize_shutdown(gboolean reconfig);
13
14 void moveresize_start(struct _ObClient *c,
15                       int x, int y, guint button, guint32 corner);
16 void moveresize_end(gboolean cancel);
17
18 void moveresize_event(XEvent *e);
19
20 #endif