summaryrefslogtreecommitdiff
path: root/openbox/resist.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-12 19:57:04 +0000
committerDana Jansens <danakj@orodu.net>2003-08-12 19:57:04 +0000
commit35ed95fe18e9b8d7a79f79f4fd7466a2b46435e3 (patch)
treee6591143a46ae20426da8a035f1d12fa70d006d8 /openbox/resist.h
parent950b85b9880012ed45b81854b5b5865b1de08a87 (diff)
move the resistance plugin into the kernel. dont resist when move/resizing with the keyboard, only when doing it with the mouse.
Diffstat (limited to 'openbox/resist.h')
-rw-r--r--openbox/resist.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/openbox/resist.h b/openbox/resist.h
new file mode 100644
index 00000000..4031ac24
--- /dev/null
+++ b/openbox/resist.h
@@ -0,0 +1,11 @@
+#ifndef ob__resist_h
+#define ob__resist_h
+
+struct _ObClient;
+
+#include <glib.h>
+
+void resist_move(struct _ObClient *c, gint *x, gint *y);
+void resist_size(struct _ObClient *c, gint *w, gint *h, ObCorner corn);
+
+#endif