2007-04-29 17:35:43 +00:00
|
|
|
/*****************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
#ifndef KWIN_POPUPINFO_H
|
|
|
|
#define KWIN_POPUPINFO_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class Workspace;
|
|
|
|
|
|
|
|
class PopupInfo : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2007-09-02 19:11:09 +00:00
|
|
|
explicit PopupInfo( Workspace* ws, const char *name=0 );
|
2007-04-29 17:35:43 +00:00
|
|
|
~PopupInfo();
|
|
|
|
|
|
|
|
void reset();
|
|
|
|
void hide();
|
2007-09-02 20:01:17 +00:00
|
|
|
void showInfo(const QString &infoString);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
void reconfigure();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void paintEvent( QPaintEvent* );
|
|
|
|
void paintContents();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QTimer m_delayedHideTimer;
|
|
|
|
int m_delayTime;
|
|
|
|
bool m_show;
|
|
|
|
bool m_shown;
|
|
|
|
QString m_infoString;
|
2007-05-07 12:18:19 +00:00
|
|
|
Workspace* workspace;
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|