aboutsummaryrefslogtreecommitdiff
path: root/dminiwm.c
diff options
context:
space:
mode:
authorIvan Kanakarakis <ivan.kanak@gmail.com>2011-12-11 15:26:38 +0200
committerIvan Kanakarakis <ivan.kanak@gmail.com>2011-12-11 15:26:43 +0200
commit8780b82cc9cd5243084b973ddb55c5e8cd40b7d3 (patch)
tree8b21d1ecc25864c2f0f39010baa78f6e9aedc1a5 /dminiwm.c
parent9fb6db41bdc05072bbe7030c3288cafeb1f310bb (diff)
remove configurerequest() function - makes sense for floating layout only, which is not supported
Diffstat (limited to 'dminiwm.c')
-rw-r--r--dminiwm.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/dminiwm.c b/dminiwm.c
index 7cb5d2c..7ba543a 100644
--- a/dminiwm.c
+++ b/dminiwm.c
@@ -88,7 +88,6 @@ static void add_window(Window w);
static void buttonpressed(XEvent *e);
static void change_desktop(const Arg arg);
static void client_to_desktop(const Arg arg);
-static void configurerequest(XEvent *e);
static void destroynotify(XEvent *e);
static void enternotify(XEvent *e);
static void die(const char* errstr, ...);
@@ -154,7 +153,6 @@ static void (*events[LASTEvent])(XEvent *e) = {
[EnterNotify] = enternotify,
[ButtonPress] = buttonpressed,
[DestroyNotify] = destroynotify,
- [ConfigureRequest] = configurerequest
};
/* ~~~ Window Management ~~~ */
@@ -522,27 +520,6 @@ void keypress(XEvent *e) {
}
/* ~~~ Signal Management ~~~ */
-void configurerequest(XEvent *e) {
- XConfigureRequestEvent *ev = &e->xconfigurerequest;
- XWindowChanges wc;
-
- wc.x = ev->x;
- wc.y = ev->y;
- if(ev->width < sw - BORDER_WIDTH)
- wc.width = ev->width;
- else
- wc.width = sw - BORDER_WIDTH;
- if(ev->height < sh - BORDER_WIDTH)
- wc.height = ev->height;
- else
- wc.height = sh - BORDER_WIDTH;
- wc.border_width = ev->border_width;
- wc.sibling = ev->above;
- wc.stack_mode = ev->detail;
- XConfigureWindow(dis, ev->window, ev->value_mask, &wc);
- XSync(dis, False);
-}
-
void maprequest(XEvent *e) {
XMapRequestEvent *ev = &e->xmaprequest;