diff options
author | rathnor <rathnor> | 2003-05-01 13:19:36 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-05-01 13:19:36 (GMT) |
commit | c5e5009c2faf48db34ae2d15fda05ba1c46e10d9 (patch) | |
tree | f2a65de646c1f8c53dde367bae15e21865acc7b8 /src/Window.hh | |
parent | 80c1f78cb55923980a2121dac2dfa2d330669fdd (diff) | |
download | fluxbox_pavel-c5e5009c2faf48db34ae2d15fda05ba1c46e10d9.zip fluxbox_pavel-c5e5009c2faf48db34ae2d15fda05ba1c46e10d9.tar.bz2 |
clean ups of reconfigure/redraws
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Window.hh b/src/Window.hh index d8ddcdd..426196d 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.hh,v 1.65 2003/04/28 13:38:23 rathnor Exp $ | 25 | // $Id: Window.hh,v 1.66 2003/05/01 13:19:36 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -242,7 +242,7 @@ public: | |||
242 | bool hasTransient() const; | 242 | bool hasTransient() const; |
243 | inline bool isManaged() const { return m_managed; } | 243 | inline bool isManaged() const { return m_managed; } |
244 | inline bool isFocused() const { return focused; } | 244 | inline bool isFocused() const { return focused; } |
245 | inline bool isVisible() const { return visible; } | 245 | inline bool isVisible() const { return m_frame.isVisible(); } |
246 | inline bool isIconic() const { return iconic; } | 246 | inline bool isIconic() const { return iconic; } |
247 | inline bool isShaded() const { return shaded; } | 247 | inline bool isShaded() const { return shaded; } |
248 | inline bool isMaximized() const { return maximized; } | 248 | inline bool isMaximized() const { return maximized; } |
@@ -387,7 +387,7 @@ private: | |||
387 | std::string m_class_name; /// class name from WM_CLASS | 387 | std::string m_class_name; /// class name from WM_CLASS |
388 | 388 | ||
389 | //Window state | 389 | //Window state |
390 | bool moving, resizing, shaded, maximized, visible, iconic, transient, | 390 | bool moving, resizing, shaded, maximized, iconic, transient, |
391 | focused, stuck, modal, send_focus_message, m_managed; | 391 | focused, stuck, modal, send_focus_message, m_managed; |
392 | WinClient *m_attaching_tab; | 392 | WinClient *m_attaching_tab; |
393 | 393 | ||