kwin/geometrytip.h
Karol Szwed cf8e983d87 Do not use saveunder in opaque modes as it slows down
moving/resizing significantly.
(kwin_iii port later)

svn path=/trunk/kdebase/kwin/; revision=231502
2003-06-15 07:19:05 +00:00

30 lines
504 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