6bbbe69c0e
svn path=/trunk/kdebase/kcontrol/; revision=239225
30 lines
503 B
C++
30 lines
503 B
C++
/*
|
|
* $Id$
|
|
* Window Geometry Display
|
|
* Copyright (c) 2003, Karol Szwed <kszwed@kde.org>
|
|
*/
|
|
|
|
#ifndef KWIN_GEOMETRY_TIP_H
|
|
#define KWIN_GEOMETRY_TIP_H
|
|
|
|
#include <qlabel.h>
|
|
#include "client.h"
|
|
|
|
namespace KWinInternal {
|
|
|
|
class GeometryTip: public QLabel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GeometryTip( const Client* client, const XSizeHints* xSizeHints, bool resizing );
|
|
~GeometryTip();
|
|
void setGeometry( const QRect& geom );
|
|
|
|
private:
|
|
const XSizeHints* sizeHints;
|
|
const Client* c;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|