/* * $Id$ * Window Geometry Display * Copyright (c) 2003, Karol Szwed */ #ifndef KWIN_GEOMETRY_TIP_H #define KWIN_GEOMETRY_TIP_H #include #include "client.h" namespace KWinInternal { class GeometryTip: public QLabel { Q_OBJECT public: GeometryTip( const Client* client, const XSizeHints* xSizeHints ); ~GeometryTip(); void setGeometry( const QRect& geom ); private: const XSizeHints* sizeHints; const Client* c; }; }; #endif