2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
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>
|
|
|
|
|
2007-11-27 19:40:25 +00:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#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
|