blob: a5391c5a997475abf1da043ea0ebfc66f3fafd48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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
|