/***************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2006 Lubos Lunak You can Freely distribute this program under the GNU General Public License. See the file "COPYING" for the exact licensing terms. ******************************************************************/ #ifndef KWIN_TOPLEVEL_H #define KWIN_TOPLEVEL_H #include #include #include #include "utils.h" namespace KWinInternal { class Workspace; class Toplevel : public QObject, public KDecorationDefines { Q_OBJECT public: Toplevel( Workspace *ws ); virtual ~Toplevel(); Window handle() const; Workspace* workspace() const; QRect geometry() const; QSize size() const; QPoint pos() const; QRect rect() const; int x() const; int y() const; int width() const; int height() const; Pixmap windowPixmap() const; Visual* visual() const; virtual double opacity() const = 0; void setupCompositing(); void finishCompositing(); protected: void setHandle( Window id ); void resetWindowPixmap(); void damageNotifyEvent( XDamageNotifyEvent* e ); QRect geom; Visual* vis; virtual void debug( kdbgstream& stream ) const = 0; friend kdbgstream& operator<<( kdbgstream& stream, const Toplevel* ); private: Window id; Workspace* wspace; Damage damage_handle; mutable Pixmap window_pixmap; }; inline Window Toplevel::handle() const { return id; } inline void Toplevel::setHandle( Window w ) { assert( id == None && w != None ); id = w; } inline Workspace* Toplevel::workspace() const { return wspace; } inline QRect Toplevel::geometry() const { return geom; } inline QSize Toplevel::size() const { return geom.size(); } inline QPoint Toplevel::pos() const { return geom.topLeft(); } inline int Toplevel::x() const { return geom.x(); } inline int Toplevel::y() const { return geom.y(); } inline int Toplevel::width() const { return geom.width(); } inline int Toplevel::height() const { return geom.height(); } inline QRect Toplevel::rect() const { return QRect( 0, 0, width(), height()); } inline Visual* Toplevel::visual() const { return vis; } #ifdef NDEBUG inline kndbgstream& operator<<( kndbgstream& stream, const Toplevel* ) { return stream; } inline kndbgstream& operator<<( kndbgstream& stream, const ToplevelList& ) { return stream; } inline kndbgstream& operator<<( kndbgstream& stream, const ConstToplevelList& ) { return stream; } #else kdbgstream& operator<<( kdbgstream& stream, const Toplevel* ); kdbgstream& operator<<( kdbgstream& stream, const ToplevelList& ); kdbgstream& operator<<( kdbgstream& stream, const ConstToplevelList& ); #endif KWIN_COMPARE_PREDICATE( HandleMatchPredicate, Toplevel, Window, cl->handle() == value ); } // namespace #endif