2011-04-27 09:05:54 +02:00
|
|
|
/* ============================================================
|
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 David Rosca <nowrep@gmail.com>
|
2011-04-27 09:05:54 +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-04-22 16:03:38 +02:00
|
|
|
#ifndef DESKTOPNOTIFICATION_H
|
|
|
|
#define DESKTOPNOTIFICATION_H
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include "qz_namespace.h"
|
|
|
|
|
2011-04-22 16:03:38 +02:00
|
|
|
#include <QWidget>
|
2012-01-12 18:40:02 +01:00
|
|
|
#include <QPixmap>
|
2011-04-22 16:03:38 +02:00
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class DesktopNotification;
|
2011-04-22 16:03:38 +02:00
|
|
|
}
|
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
class QT_QUPZILLA_EXPORT DesktopNotification : public QWidget
|
2011-04-22 16:03:38 +02:00
|
|
|
{
|
2012-02-23 21:53:22 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2011-04-22 16:03:38 +02:00
|
|
|
public:
|
2011-04-27 09:49:41 +02:00
|
|
|
explicit DesktopNotification(bool setPosition = false);
|
2011-04-23 22:33:25 +02:00
|
|
|
void setPixmap(const QPixmap &icon) { m_icon = icon; }
|
|
|
|
void setHeading(const QString &heading) { m_heading = heading; }
|
|
|
|
void setText(const QString &text) { m_text = text; }
|
|
|
|
void setTimeout(int timeout) { m_timeout = timeout; }
|
|
|
|
void show();
|
2011-04-22 16:03:38 +02:00
|
|
|
~DesktopNotification();
|
|
|
|
|
|
|
|
private:
|
2011-04-23 22:33:25 +02:00
|
|
|
void enterEvent(QEvent* e);
|
|
|
|
void leaveEvent(QEvent* e);
|
|
|
|
void mousePressEvent(QMouseEvent* e);
|
|
|
|
void mouseMoveEvent(QMouseEvent* e);
|
2011-04-22 16:03:38 +02:00
|
|
|
|
2011-04-23 22:33:25 +02:00
|
|
|
Ui::DesktopNotification* ui;
|
|
|
|
bool m_settingPosition;
|
|
|
|
QPoint m_dragPosition;
|
|
|
|
|
|
|
|
QPixmap m_icon;
|
|
|
|
QString m_heading;
|
|
|
|
QString m_text;
|
|
|
|
int m_timeout;
|
|
|
|
QTimer* m_timer;
|
2011-04-22 16:03:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DESKTOPNOTIFICATION_H
|