f26f23de50
better alt-tabbing. better transient handling. i dont even know. lots of fucking cool shit so WATCH the FUCK OUT.
19 lines
377 B
C
19 lines
377 B
C
#ifndef __moveresize_h
|
|
#define __moveresize_h
|
|
|
|
#include "client.h"
|
|
|
|
#include <glib.h>
|
|
|
|
extern gboolean moveresize_in_progress;
|
|
extern Client *moveresize_client;
|
|
|
|
void moveresize_startup();
|
|
void moveresize_shutdown();
|
|
|
|
void moveresize_start(Client *c, int x, int y, guint button, guint32 corner);
|
|
void moveresize_end(gboolean cancel);
|
|
|
|
void moveresize_event(XEvent *e);
|
|
|
|
#endif
|