added isManaged
fluxgen fluxgen
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
src/Window.hh
→
src/Window.hh
@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Window.hh,v 1.7 2002/02/07 15:13:19 fluxgen Exp $ +// $Id: Window.hh,v 1.8 2002/02/11 11:47:37 fluxgen Exp $ #ifndef _WINDOW_HH_ #define _WINDOW_HH_@@ -85,7 +85,6 @@
class FluxboxWindow : public TimeoutHandler { public: enum Error{NOERROR=0, XGETWINDOWATTRIB, CANTFINDSCREEN}; - FluxboxWindow(Window, BScreen * = (BScreen *) 0); virtual ~FluxboxWindow(void);@@ -93,6 +92,7 @@ inline const bool isTransient(void) const
{ return ((transient) ? true : false); } inline const bool hasTransient(void) const { return ((client.transient) ? true : false); } + inline const bool isManaged() const { return managed; } inline const bool &isFocused(void) const { return focused; } inline const bool &isVisible(void) const { return visible; } inline const bool &isIconic(void) const { return iconic; }