2003-04-17 05:28:35 +00:00
|
|
|
#ifndef __moveresize_h
|
|
|
|
#define __moveresize_h
|
|
|
|
|
|
|
|
#include "client.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
extern gboolean moveresize_in_progress;
|
2003-07-10 06:38:42 +00:00
|
|
|
extern ObClient *moveresize_client;
|
2003-04-17 05:28:35 +00:00
|
|
|
|
2003-04-17 06:17:06 +00:00
|
|
|
void moveresize_startup();
|
2003-05-09 16:57:17 +00:00
|
|
|
void moveresize_shutdown();
|
2003-04-17 06:17:06 +00:00
|
|
|
|
2003-07-10 06:38:42 +00:00
|
|
|
void moveresize_start(ObClient *c, int x, int y, guint button, guint32 corner);
|
2003-04-18 01:51:41 +00:00
|
|
|
void moveresize_end(gboolean cancel);
|
2003-04-17 05:28:35 +00:00
|
|
|
|
|
|
|
void moveresize_event(XEvent *e);
|
|
|
|
|
|
|
|
#endif
|