kwin/geometrytip.h
Dirk Mueller 6bbbe69c0e unbreak compilation (gcc 3.4+)
svn path=/trunk/kdebase/kcontrol/; revision=239225
2003-07-26 10:41:28 +00:00

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