aboutsummaryrefslogtreecommitdiff
path: root/src/Window.hh
diff options
context:
space:
mode:
authorrathnor <rathnor>2004-03-21 09:00:25 (GMT)
committerrathnor <rathnor>2004-03-21 09:00:25 (GMT)
commitdea3281e6917601a81df7833457a942b875b8e49 (patch)
tree09878620d13c944a2a6af724dc3b3366984bac2f /src/Window.hh
parent2d82374b2f458c32895b093aff8c77e88daea2ba (diff)
downloadfluxbox-dea3281e6917601a81df7833457a942b875b8e49.zip
fluxbox-dea3281e6917601a81df7833457a942b875b8e49.tar.bz2
primarily focus fix/tweak/rejigging
Diffstat (limited to 'src/Window.hh')
-rw-r--r--src/Window.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Window.hh b/src/Window.hh
index f6cb3d0..0c80669 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.109 2004/02/20 09:07:27 fluxgen Exp $ 25// $Id: Window.hh,v 1.110 2004/03/21 09:00:25 rathnor Exp $
26 26
27#ifndef WINDOW_HH 27#ifndef WINDOW_HH
28#define WINDOW_HH 28#define WINDOW_HH
@@ -281,6 +281,7 @@ public:
281 inline bool isResizing() const { return resizing; } 281 inline bool isResizing() const { return resizing; }
282 bool isGroupable() const; 282 bool isGroupable() const;
283 inline int numClients() const { return m_clientlist.size(); } 283 inline int numClients() const { return m_clientlist.size(); }
284 inline bool empty() const { return m_clientlist.empty(); }
284 inline ClientList &clientList() { return m_clientlist; } 285 inline ClientList &clientList() { return m_clientlist; }
285 inline const ClientList &clientList() const { return m_clientlist; } 286 inline const ClientList &clientList() const { return m_clientlist; }
286 inline WinClient &winClient() { return *m_client; } 287 inline WinClient &winClient() { return *m_client; }
@@ -370,6 +371,7 @@ public:
370 }; 371 };
371 372
372 bool oplock; ///< Used to help stop transient loops occurring by locking a window during certain operations 373 bool oplock; ///< Used to help stop transient loops occurring by locking a window during certain operations
374
373private: 375private:
374 static const int PropBlackboxAttributesElements = 8; 376 static const int PropBlackboxAttributesElements = 8;
375 377