diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-04-17 05:28:35 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-04-17 05:28:35 +0000 |
| commit | 7886b797a36f5a035a75a19424e0b3cf7825baf8 (patch) | |
| tree | d7279da4dbeda975909f71af3193a39ce7e69901 /openbox/moveresize.h | |
| parent | 55c424d38bb119bd04199ed5e73b035b00474dd9 (diff) | |
move the move/resize functionality into moveresize.c, for use with the netwm atoms. use it from teh plugins. combine the two actions.
Diffstat (limited to 'openbox/moveresize.h')
| -rw-r--r-- | openbox/moveresize.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/openbox/moveresize.h b/openbox/moveresize.h new file mode 100644 index 00000000..971ad359 --- /dev/null +++ b/openbox/moveresize.h @@ -0,0 +1,14 @@ +#ifndef __moveresize_h +#define __moveresize_h + +#include "client.h" + +#include <glib.h> + +extern gboolean moveresize_in_progress; + +void moveresize_start(Client *c, int x, int y, guint b, guint32 corner); + +void moveresize_event(XEvent *e); + +#endif |
