Work on notifications.
This commit is contained in:
parent
bdcd47a946
commit
fb824c82b4
@ -82,6 +82,7 @@
|
|||||||
#define ACCEPT_HEADER_FOR_FEED_DOWNLOADER "application/atom+xml,application/xml;q=0.9,text/xml;q=0.8,*/*;q=0.7"
|
#define ACCEPT_HEADER_FOR_FEED_DOWNLOADER "application/atom+xml,application/xml;q=0.9,text/xml;q=0.8,*/*;q=0.7"
|
||||||
#define MIME_TYPE_ITEM_POINTER "@APP_LOW_NAME@/itempointer"
|
#define MIME_TYPE_ITEM_POINTER "@APP_LOW_NAME@/itempointer"
|
||||||
#define DOWNLOADER_ICON_SIZE 48
|
#define DOWNLOADER_ICON_SIZE 48
|
||||||
|
#define NOTIFICATION_ICON_SIZE 64
|
||||||
#define GOOGLE_SEARCH_URL "https://www.google.com/search?q=%1&ie=utf-8&oe=utf-8"
|
#define GOOGLE_SEARCH_URL "https://www.google.com/search?q=%1&ie=utf-8&oe=utf-8"
|
||||||
#define GOOGLE_SUGGEST_URL "http://suggestqueries.google.com/complete/search?output=toolbar&hl=en&q=%1"
|
#define GOOGLE_SUGGEST_URL "http://suggestqueries.google.com/complete/search?output=toolbar&hl=en&q=%1"
|
||||||
|
|
||||||
|
@ -40,13 +40,13 @@ Notification::Notification() : QWidget(0), m_title(QString()), m_text(QString())
|
|||||||
Notification::~Notification() {
|
Notification::~Notification() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Notification::notify(const QString &text, const QString &title, QSystemTrayIcon::MessageIcon icon) {
|
void Notification::notify(const QString &text, const QString &title, const QIcon &icon) {
|
||||||
hide();
|
hide();
|
||||||
|
|
||||||
// Set new values.
|
// Set new values.
|
||||||
m_text = text;
|
m_text = text;
|
||||||
m_title = title;
|
m_title = title;
|
||||||
m_icon = MessageBox::iconForStatus((QMessageBox::Icon) icon).pixmap(64, 64);
|
m_icon = icon.pixmap(NOTIFICATION_ICON_SIZE, NOTIFICATION_ICON_SIZE);
|
||||||
|
|
||||||
// Show it.
|
// Show it.
|
||||||
updateGeometries();
|
updateGeometries();
|
||||||
@ -54,6 +54,10 @@ void Notification::notify(const QString &text, const QString &title, QSystemTray
|
|||||||
show();
|
show();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Notification::notify(const QString &text, const QString &title, QSystemTrayIcon::MessageIcon icon) {
|
||||||
|
notify(text, title, MessageBox::iconForStatus((QMessageBox::Icon) icon));
|
||||||
|
}
|
||||||
|
|
||||||
void Notification::updateGeometries() {
|
void Notification::updateGeometries() {
|
||||||
// Calculate width and height of notification with given icon and text.
|
// Calculate width and height of notification with given icon and text.
|
||||||
m_width = m_padding +
|
m_width = m_padding +
|
||||||
@ -69,7 +73,6 @@ void Notification::updateGeometries() {
|
|||||||
int x, y;
|
int x, y;
|
||||||
QRect screen_geometry = QApplication::desktop()->availableGeometry(m_screen);
|
QRect screen_geometry = QApplication::desktop()->availableGeometry(m_screen);
|
||||||
|
|
||||||
// TODO: dodělat pozice x, y
|
|
||||||
switch (m_position) {
|
switch (m_position) {
|
||||||
case Qt::BottomLeftCorner:
|
case Qt::BottomLeftCorner:
|
||||||
x = m_widgetMargin;
|
x = m_widgetMargin;
|
||||||
@ -96,25 +99,12 @@ void Notification::updateGeometries() {
|
|||||||
setGeometry(x, y, m_width, m_height);
|
setGeometry(x, y, m_width, m_height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void Notification::focusInEvent(QFocusEvent *event) {
|
|
||||||
QWidget::focusInEvent(event);
|
|
||||||
repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
void Notification::focusOutEvent(QFocusEvent *event) {
|
|
||||||
QWidget::focusOutEvent(event);
|
|
||||||
repaint();
|
|
||||||
}
|
|
||||||
|
|
||||||
void Notification::paintEvent(QPaintEvent *event) {
|
void Notification::paintEvent(QPaintEvent *event) {
|
||||||
Q_UNUSED(event)
|
Q_UNUSED(event)
|
||||||
|
|
||||||
QPainter painter(this);
|
QPainter painter(this);
|
||||||
painter.setFont(font());
|
painter.setFont(font());
|
||||||
|
|
||||||
QFontMetrics font_metrics = painter.fontMetrics();
|
|
||||||
|
|
||||||
if (!underMouse()) {
|
if (!underMouse()) {
|
||||||
painter.setOpacity(0.7);
|
painter.setOpacity(0.7);
|
||||||
}
|
}
|
||||||
|
@ -32,11 +32,10 @@ class Notification : public QWidget {
|
|||||||
virtual ~Notification();
|
virtual ~Notification();
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
void notify(const QString &text, const QString &title, const QIcon &icon);
|
||||||
void notify(const QString &text, const QString &title, QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::Information);
|
void notify(const QString &text, const QString &title, QSystemTrayIcon::MessageIcon icon = QSystemTrayIcon::Information);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void focusInEvent(QFocusEvent *event);
|
|
||||||
void focusOutEvent(QFocusEvent *event);
|
|
||||||
void paintEvent(QPaintEvent *event);
|
void paintEvent(QPaintEvent *event);
|
||||||
void mousePressEvent(QMouseEvent *event);
|
void mousePressEvent(QMouseEvent *event);
|
||||||
void enterEvent(QEvent *event);
|
void enterEvent(QEvent *event);
|
||||||
|
@ -35,8 +35,7 @@ TrayIconMenu::~TrayIconMenu() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool TrayIconMenu::event(QEvent *event) {
|
bool TrayIconMenu::event(QEvent *event) {
|
||||||
if (Application::activeModalWidget() != NULL &&
|
if (Application::activeModalWidget() != NULL && event->type() == QEvent::Show) {
|
||||||
event->type() == QEvent::Show) {
|
|
||||||
QTimer::singleShot(0, this, SLOT(hide()));
|
QTimer::singleShot(0, this, SLOT(hide()));
|
||||||
qApp->trayIcon()->showMessage(QSL(APP_LONG_NAME),
|
qApp->trayIcon()->showMessage(QSL(APP_LONG_NAME),
|
||||||
tr("Close opened modal dialogs first."),
|
tr("Close opened modal dialogs first."),
|
||||||
@ -46,9 +45,7 @@ bool TrayIconMenu::event(QEvent *event) {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
SystemTrayIcon::SystemTrayIcon(const QString &normal_icon,
|
SystemTrayIcon::SystemTrayIcon(const QString &normal_icon, const QString &plain_icon, FormMain *parent)
|
||||||
const QString &plain_icon,
|
|
||||||
FormMain *parent)
|
|
||||||
: QSystemTrayIcon(parent),
|
: QSystemTrayIcon(parent),
|
||||||
m_normalIcon(normal_icon),
|
m_normalIcon(normal_icon),
|
||||||
m_plainPixmap(plain_icon),
|
m_plainPixmap(plain_icon),
|
||||||
@ -116,7 +113,7 @@ void SystemTrayIcon::show() {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void SystemTrayIcon::setNumber(int number, bool any_unread_message) {
|
void SystemTrayIcon::setNumber(int number, bool any_new_message) {
|
||||||
if (number <= 0) {
|
if (number <= 0) {
|
||||||
setToolTip(QSL(APP_LONG_NAME));
|
setToolTip(QSL(APP_LONG_NAME));
|
||||||
QSystemTrayIcon::setIcon(QIcon(m_normalIcon));
|
QSystemTrayIcon::setIcon(QIcon(m_normalIcon));
|
||||||
@ -129,7 +126,7 @@ void SystemTrayIcon::setNumber(int number, bool any_unread_message) {
|
|||||||
|
|
||||||
// TODO: Here draw different background instead of different color of number.
|
// TODO: Here draw different background instead of different color of number.
|
||||||
tray_painter.begin(&background);
|
tray_painter.begin(&background);
|
||||||
tray_painter.setPen(any_unread_message ? Qt::blue : Qt::black);
|
tray_painter.setPen(any_new_message ? Qt::blue : Qt::black);
|
||||||
tray_painter.setRenderHint(QPainter::SmoothPixmapTransform, true);
|
tray_painter.setRenderHint(QPainter::SmoothPixmapTransform, true);
|
||||||
tray_painter.setRenderHint(QPainter::TextAntialiasing, true);
|
tray_painter.setRenderHint(QPainter::TextAntialiasing, true);
|
||||||
|
|
||||||
@ -137,7 +134,6 @@ void SystemTrayIcon::setNumber(int number, bool any_unread_message) {
|
|||||||
// infinity symbol in that case.
|
// infinity symbol in that case.
|
||||||
if (number > 999) {
|
if (number > 999) {
|
||||||
m_font.setPixelSize(100);
|
m_font.setPixelSize(100);
|
||||||
|
|
||||||
tray_painter.setFont(m_font);
|
tray_painter.setFont(m_font);
|
||||||
tray_painter.drawText(QRect(0, 0, 128, 128), Qt::AlignVCenter | Qt::AlignCenter, QChar(8734));
|
tray_painter.drawText(QRect(0, 0, 128, 128), Qt::AlignVCenter | Qt::AlignCenter, QChar(8734));
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ class SystemTrayIcon : public QSystemTrayIcon {
|
|||||||
virtual ~SystemTrayIcon();
|
virtual ~SystemTrayIcon();
|
||||||
|
|
||||||
// Sets the number to be visible in the tray icon, number <= 0 removes it.
|
// Sets the number to be visible in the tray icon, number <= 0 removes it.
|
||||||
void setNumber(int number = -1, bool any_unread_message = false);
|
void setNumber(int number = -1, bool any_new_message = false);
|
||||||
|
|
||||||
void showMessage(const QString &title, const QString &message, MessageIcon icon = Information,
|
void showMessage(const QString &title, const QString &message, MessageIcon icon = Information,
|
||||||
int milliseconds_timeout_hint = TRAY_ICON_BUBBLE_TIMEOUT, QObject *click_target = NULL,
|
int milliseconds_timeout_hint = TRAY_ICON_BUBBLE_TIMEOUT, QObject *click_target = NULL,
|
||||||
|
@ -26,19 +26,19 @@
|
|||||||
#include "gui/statusbar.h"
|
#include "gui/statusbar.h"
|
||||||
#include "gui/dialogs/formmain.h"
|
#include "gui/dialogs/formmain.h"
|
||||||
#include "exceptions/applicationexception.h"
|
#include "exceptions/applicationexception.h"
|
||||||
|
#include "adblock/adblockmanager.h"
|
||||||
|
|
||||||
#include <QSessionManager>
|
#include <QSessionManager>
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
|
|
||||||
#include <adblock/adblockmanager.h>
|
|
||||||
|
|
||||||
|
|
||||||
Application::Application(const QString &id, int &argc, char **argv)
|
Application::Application(const QString &id, int &argc, char **argv)
|
||||||
: QtSingleApplication(id, argc, argv),
|
: QtSingleApplication(id, argc, argv),
|
||||||
m_updateFeedsLock(NULL), m_userActions(QList<QAction*>()), m_mainForm(NULL),
|
m_updateFeedsLock(NULL), m_userActions(QList<QAction*>()), m_mainForm(NULL),
|
||||||
m_trayIcon(NULL), m_settings(NULL), m_system(NULL), m_skins(NULL),
|
m_trayIcon(NULL), m_settings(NULL), m_system(NULL), m_skins(NULL),
|
||||||
m_localization(NULL), m_icons(NULL), m_database(NULL), m_downloadManager(NULL), m_shouldRestart(false) {
|
m_localization(NULL), m_icons(NULL), m_database(NULL), m_downloadManager(NULL), m_shouldRestart(false),
|
||||||
|
m_notification(NULL) {
|
||||||
connect(this, SIGNAL(aboutToQuit()), this, SLOT(onAboutToQuit()));
|
connect(this, SIGNAL(aboutToQuit()), this, SLOT(onAboutToQuit()));
|
||||||
connect(this, SIGNAL(commitDataRequest(QSessionManager&)), this, SLOT(onCommitData(QSessionManager&)));
|
connect(this, SIGNAL(commitDataRequest(QSessionManager&)), this, SLOT(onCommitData(QSessionManager&)));
|
||||||
connect(this, SIGNAL(saveStateRequest(QSessionManager&)), this, SLOT(onSaveState(QSessionManager&)));
|
connect(this, SIGNAL(saveStateRequest(QSessionManager&)), this, SLOT(onSaveState(QSessionManager&)));
|
||||||
@ -171,12 +171,15 @@ void Application::deleteTrayIcon() {
|
|||||||
void Application::showGuiMessage(const QString &title, const QString &message,
|
void Application::showGuiMessage(const QString &title, const QString &message,
|
||||||
QSystemTrayIcon::MessageIcon message_type,
|
QSystemTrayIcon::MessageIcon message_type,
|
||||||
QWidget *parent, int duration) {
|
QWidget *parent, int duration) {
|
||||||
if (SystemTrayIcon::isSystemTrayActivated()) {
|
/*if (true) {
|
||||||
// TODO: Maybe show OSD instead if tray icon bubble, depending on settings.
|
// Show OSD instead if tray icon bubble, depending on settings.
|
||||||
|
notification()->notify(message, title, message_type);
|
||||||
|
}
|
||||||
|
else */if (SystemTrayIcon::isSystemTrayActivated()) {
|
||||||
trayIcon()->showMessage(title, message, message_type, duration);
|
trayIcon()->showMessage(title, message, message_type, duration);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// TODO: Tray icon or OSD is not available, display simple text box.
|
// Tray icon or OSD is not available, display simple text box.
|
||||||
MessageBox::show(parent, (QMessageBox::Icon) message_type, title, message);
|
MessageBox::show(parent, (QMessageBox::Icon) message_type, title, message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -225,6 +228,11 @@ void Application::onAboutToQuit() {
|
|||||||
qDebug("Close lock timed-out.");
|
qDebug("Close lock timed-out.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (m_notification != NULL) {
|
||||||
|
m_notification->deleteLater();
|
||||||
|
m_notification = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
// Now, we can check if application should just quit or restart itself.
|
// Now, we can check if application should just quit or restart itself.
|
||||||
if (m_shouldRestart) {
|
if (m_shouldRestart) {
|
||||||
finish();
|
finish();
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
#include "miscellaneous/databasefactory.h"
|
#include "miscellaneous/databasefactory.h"
|
||||||
#include "miscellaneous/iofactory.h"
|
#include "miscellaneous/iofactory.h"
|
||||||
#include "gui/systemtrayicon.h"
|
#include "gui/systemtrayicon.h"
|
||||||
|
#include "gui/notifications/notification.h"
|
||||||
#include "network-web/downloadmanager.h"
|
#include "network-web/downloadmanager.h"
|
||||||
|
|
||||||
#include <QList>
|
#include <QList>
|
||||||
@ -63,6 +64,14 @@ class Application : public QtSingleApplication {
|
|||||||
return m_system;
|
return m_system;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline Notification *notification() {
|
||||||
|
if (m_notification == NULL) {
|
||||||
|
m_notification = new Notification();
|
||||||
|
}
|
||||||
|
|
||||||
|
return m_notification;
|
||||||
|
}
|
||||||
|
|
||||||
inline SkinFactory *skins() {
|
inline SkinFactory *skins() {
|
||||||
if (m_skins == NULL) {
|
if (m_skins == NULL) {
|
||||||
m_skins = new SkinFactory(this);
|
m_skins = new SkinFactory(this);
|
||||||
@ -184,6 +193,7 @@ class Application : public QtSingleApplication {
|
|||||||
DatabaseFactory *m_database;
|
DatabaseFactory *m_database;
|
||||||
DownloadManager *m_downloadManager;
|
DownloadManager *m_downloadManager;
|
||||||
bool m_shouldRestart;
|
bool m_shouldRestart;
|
||||||
|
Notification *m_notification;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // APPLICATION_H
|
#endif // APPLICATION_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user