summaryrefslogtreecommitdiff
path: root/src/data.h
diff options
context:
space:
mode:
authorsabetts <sabetts>2000-12-09 23:43:32 +0000
committersabetts <sabetts>2000-12-09 23:43:32 +0000
commit6eb8f2a4f20a82a719fec33ecf29d7382794c796 (patch)
tree12c844bc3a80da5826029c84342594d2c34d663c /src/data.h
parent3068ac85a5716aff7b3ff0652220c9504b3c00b1 (diff)
downloadratpoison-6eb8f2a4f20a82a719fec33ecf29d7382794c796.zip
* data.h (struct rp_window): added x, y, width, height, border;
* events.c (configure_request): Now honours request, but then maximizes it afterwards. (configure_request): updates the rp_window's geometry fields * manage.c (manage): commented out XMoveResizeWindow call (send_configure): added * actions.h (maximize): added prototype * actions.c (maximize): added
Diffstat (limited to 'src/data.h')
-rw-r--r--src/data.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/data.h b/src/data.h
index da10642..d893873 100644
--- a/src/data.h
+++ b/src/data.h
@@ -42,6 +42,10 @@ struct rp_window
int state;
int last_access;
int named;
+
+ /* Dimensions */
+ int x, y, width, height, border;
+
rp_window *next, *prev;
};