openbox/openbox/moveresize.h
Dana Jansens 806a8c411f add a reconfigure action, also reconfigure on SIGUSR2.
support reconfiguring throughout the entire codebase.
2003-09-03 18:11:39 +00:00

20 lines
451 B
C

#ifndef __moveresize_h
#define __moveresize_h
#include <glib.h>
struct _ObClient;
extern gboolean moveresize_in_progress;
extern struct _ObClient *moveresize_client;
void moveresize_startup(gboolean reconfig);
void moveresize_shutdown(gboolean reconfig);
void moveresize_start(struct _ObClient *c,
int x, int y, guint button, guint32 corner);
void moveresize_end(gboolean cancel);
void moveresize_event(XEvent *e);
#endif