diff options
author | simonb <simonb> | 2005-01-05 05:37:06 (GMT) |
---|---|---|
committer | simonb <simonb> | 2005-01-05 05:37:06 (GMT) |
commit | 83224b7f55c9fd1febb89171d311da95f323eae4 (patch) | |
tree | e96bf13c28e04cb0a5086bcaf997995211125890 /src/Window.hh | |
parent | a6c1529a97585aea2392e6cc2ddcbd3b909aeff7 (diff) | |
download | fluxbox_pavel-83224b7f55c9fd1febb89171d311da95f323eae4.zip fluxbox_pavel-83224b7f55c9fd1febb89171d311da95f323eae4.tar.bz2 |
fix up window initialisation ordering
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Window.hh b/src/Window.hh index 020fd88..5f1468b 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -234,7 +234,7 @@ public: | |||
234 | /// move and resize frame to pox x,y and size width, height | 234 | /// move and resize frame to pox x,y and size width, height |
235 | void moveResize(int x, int y, unsigned int width, unsigned int height, int gravity = ForgetGravity); | 235 | void moveResize(int x, int y, unsigned int width, unsigned int height, int gravity = ForgetGravity); |
236 | 236 | ||
237 | void setWorkspace(int n, bool notify = true); | 237 | void setWorkspace(int n); |
238 | void changeBlackboxHints(const BlackboxHints &bh); | 238 | void changeBlackboxHints(const BlackboxHints &bh); |
239 | void updateFunctions(); | 239 | void updateFunctions(); |
240 | void restoreAttributes(); | 240 | void restoreAttributes(); |
@@ -286,7 +286,8 @@ public: | |||
286 | 286 | ||
287 | inline bool isFocusHidden() const { return (m_blackbox_attrib.flags & ATTRIB_HIDDEN); } | 287 | inline bool isFocusHidden() const { return (m_blackbox_attrib.flags & ATTRIB_HIDDEN); } |
288 | inline bool isIconHidden() const { return m_icon_hidden; } | 288 | inline bool isIconHidden() const { return m_icon_hidden; } |
289 | inline bool isManaged() const { return m_managed; } | 289 | inline bool isManaged() const { return m_initialized; } |
290 | inline bool isInitialized() const { return m_initialized; } | ||
290 | inline bool isFocused() const { return focused; } | 291 | inline bool isFocused() const { return focused; } |
291 | bool isVisible() const; | 292 | bool isVisible() const; |
292 | inline bool isIconic() const { return iconic; } | 293 | inline bool isIconic() const { return iconic; } |
@@ -459,7 +460,7 @@ private: | |||
459 | 460 | ||
460 | // Window states | 461 | // Window states |
461 | bool moving, resizing, shaded, iconic, | 462 | bool moving, resizing, shaded, iconic, |
462 | focused, stuck, m_managed, fullscreen; | 463 | focused, stuck, m_initialized, fullscreen; |
463 | 464 | ||
464 | int maximized; | 465 | int maximized; |
465 | 466 | ||