aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-02-11 11:47:37 (GMT)
committerfluxgen <fluxgen>2002-02-11 11:47:37 (GMT)
commitefa5e85503e31b75737089aa045991455120910e (patch)
treed1e45c9ea7622c700889855a4393974e5fd4f257
parentc222ff6f0ab9bb1b7ddefded3be41d7350624626 (diff)
downloadfluxbox-efa5e85503e31b75737089aa045991455120910e.zip
fluxbox-efa5e85503e31b75737089aa045991455120910e.tar.bz2
added isManaged
-rw-r--r--src/Window.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.hh b/src/Window.hh
index ad20c50..fbb7069 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.7 2002/02/07 15:13:19 fluxgen Exp $ 25// $Id: Window.hh,v 1.8 2002/02/11 11:47:37 fluxgen Exp $
26 26
27#ifndef _WINDOW_HH_ 27#ifndef _WINDOW_HH_
28#define _WINDOW_HH_ 28#define _WINDOW_HH_
@@ -85,7 +85,6 @@ class Tab;
85class FluxboxWindow : public TimeoutHandler { 85class FluxboxWindow : public TimeoutHandler {
86public: 86public:
87 enum Error{NOERROR=0, XGETWINDOWATTRIB, CANTFINDSCREEN}; 87 enum Error{NOERROR=0, XGETWINDOWATTRIB, CANTFINDSCREEN};
88
89 FluxboxWindow(Window, BScreen * = (BScreen *) 0); 88 FluxboxWindow(Window, BScreen * = (BScreen *) 0);
90 virtual ~FluxboxWindow(void); 89 virtual ~FluxboxWindow(void);
91 90
@@ -93,6 +92,7 @@ public:
93 { return ((transient) ? true : false); } 92 { return ((transient) ? true : false); }
94 inline const bool hasTransient(void) const 93 inline const bool hasTransient(void) const
95 { return ((client.transient) ? true : false); } 94 { return ((client.transient) ? true : false); }
95 inline const bool isManaged() const { return managed; }
96 inline const bool &isFocused(void) const { return focused; } 96 inline const bool &isFocused(void) const { return focused; }
97 inline const bool &isVisible(void) const { return visible; } 97 inline const bool &isVisible(void) const { return visible; }
98 inline const bool &isIconic(void) const { return iconic; } 98 inline const bool &isIconic(void) const { return iconic; }