2011-09-23 22:06:21 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2014-01-11 16:11:42 +01:00
|
|
|
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
2011-09-23 22:06:21 +02: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 3 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/>.
|
|
|
|
* ============================================================ */
|
2011-05-09 17:58:19 +02:00
|
|
|
#ifndef STATUSBARMESSAGE_H
|
|
|
|
#define STATUSBARMESSAGE_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2012-02-29 18:33:50 +01:00
|
|
|
|
2014-02-26 20:03:20 +01:00
|
|
|
#include "qzcommon.h"
|
2011-07-19 23:26:34 +02:00
|
|
|
#include "squeezelabelv1.h"
|
2011-10-15 16:37:32 +02:00
|
|
|
#include "animatedwidget.h"
|
2011-05-09 17:58:19 +02:00
|
|
|
|
2012-03-21 13:00:30 +01:00
|
|
|
class QTimer;
|
|
|
|
|
2014-02-19 22:07:21 +01:00
|
|
|
class BrowserWindow;
|
2011-07-19 23:26:34 +02:00
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT TipLabel : public SqueezeLabelV1
|
2011-11-06 17:01:23 +01:00
|
|
|
{
|
2011-07-19 23:26:34 +02:00
|
|
|
public:
|
2012-03-21 13:00:30 +01:00
|
|
|
explicit TipLabel(QWidget* parent);
|
|
|
|
|
2012-03-26 17:47:05 +02:00
|
|
|
void show(QWidget* widget);
|
2012-03-21 13:00:30 +01:00
|
|
|
void hideDelayed();
|
2012-03-04 14:25:52 +01:00
|
|
|
|
2011-11-04 22:34:45 +01:00
|
|
|
bool eventFilter(QObject* o, QEvent* e);
|
2011-07-19 23:26:34 +02:00
|
|
|
|
|
|
|
private:
|
2013-04-21 01:24:24 +02:00
|
|
|
void resizeEvent(QResizeEvent* ev);
|
2011-10-24 17:46:45 +02:00
|
|
|
void paintEvent(QPaintEvent* ev);
|
2012-03-21 13:00:30 +01:00
|
|
|
|
|
|
|
QTimer* m_timer;
|
2011-07-19 23:26:34 +02:00
|
|
|
};
|
|
|
|
|
2014-02-19 22:12:32 +01:00
|
|
|
class QUPZILLA_EXPORT StatusBarMessage
|
2011-05-09 17:58:19 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-02-19 22:07:21 +01:00
|
|
|
explicit StatusBarMessage(BrowserWindow* window);
|
2011-05-09 17:58:19 +02:00
|
|
|
|
|
|
|
void showMessage(const QString &message);
|
|
|
|
void clearMessage();
|
|
|
|
|
|
|
|
private:
|
2014-02-19 22:07:21 +01:00
|
|
|
BrowserWindow* m_window;
|
2011-05-09 17:58:19 +02:00
|
|
|
TipLabel* m_statusBarText;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // STATUSBARMESSAGE_H
|