diff options
author | sabetts <sabetts> | 2000-12-15 09:53:44 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2000-12-15 09:53:44 +0000 |
commit | e92d7ba918c1a7334e8bed0785949c2faf17f0dd (patch) | |
tree | 28e2949952236bef73c50de2c806daa44b7f7855 /src | |
parent | 6d25c8f74831937b8340b41d0d6bfe7ecc6dfc19 (diff) | |
download | ratpoison-e92d7ba918c1a7334e8bed0785949c2faf17f0dd.zip |
(struct rp_window): Added XSizeHints member
Diffstat (limited to 'src')
-rw-r--r-- | src/data.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -22,6 +22,7 @@ #include <X11/X.h> #include <X11/Xlib.h> +#include <X11/Xutil.h> #define FONT_HEIGHT(f) ((f)->max_bounds.ascent + (f)->max_bounds.descent) @@ -46,6 +47,9 @@ struct rp_window /* Dimensions */ int x, y, width, height, border; + /* WM Hints */ + XSizeHints *hints; + rp_window *next, *prev; }; |