diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2008-08-16 07:22:12 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-08-16 07:22:12 (GMT) |
commit | fe412dbeef7af324a376cba338bff8c24e032d2e (patch) | |
tree | eab03ffc2e6b94e70d78c29ae3384b2c265e7a18 /src/WinClient.hh | |
parent | 1d8dfcdf9ad5405f4eef18dc009ce8cfe6d27f29 (diff) | |
download | fluxbox_pavel-fe412dbeef7af324a376cba338bff8c24e032d2e.zip fluxbox_pavel-fe412dbeef7af324a376cba338bff8c24e032d2e.tar.bz2 |
move interpretation of normal hints to size hint class
Diffstat (limited to 'src/WinClient.hh')
-rw-r--r-- | src/WinClient.hh | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/WinClient.hh b/src/WinClient.hh index 54c431d..a119f7d 100644 --- a/src/WinClient.hh +++ b/src/WinClient.hh | |||
@@ -27,8 +27,6 @@ | |||
27 | #include "FbTk/FbWindow.hh" | 27 | #include "FbTk/FbWindow.hh" |
28 | #include "FbTk/FbString.hh" | 28 | #include "FbTk/FbString.hh" |
29 | 29 | ||
30 | #include <X11/Xutil.h> | ||
31 | |||
32 | class BScreen; | 30 | class BScreen; |
33 | class Strut; | 31 | class Strut; |
34 | 32 | ||
@@ -110,7 +108,7 @@ public: | |||
110 | bool isStateModal() const { return m_modal; } | 108 | bool isStateModal() const { return m_modal; } |
111 | void setStateModal(bool state); | 109 | void setStateModal(bool state); |
112 | 110 | ||
113 | int gravity() const { return m_win_gravity; } | 111 | int gravity() const { return m_size_hints.win_gravity; } |
114 | 112 | ||
115 | bool hasGroupLeftWindow() const; | 113 | bool hasGroupLeftWindow() const; |
116 | // grouping is tracked by remembering the window to the left in the group | 114 | // grouping is tracked by remembering the window to the left in the group |
@@ -155,8 +153,6 @@ private: | |||
155 | bool m_modal; | 153 | bool m_modal; |
156 | bool accepts_input, send_focus_message, send_close_message; | 154 | bool accepts_input, send_focus_message, send_close_message; |
157 | 155 | ||
158 | int m_win_gravity; | ||
159 | |||
160 | bool m_title_override; | 156 | bool m_title_override; |
161 | bool m_icon_override; | 157 | bool m_icon_override; |
162 | 158 | ||