aboutsummaryrefslogtreecommitdiff
path: root/src/Window.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/Window.hh')
-rw-r--r--src/Window.hh7
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