Merge #12079: Improve prioritisetransaction test coverage
[bitcoinplatinum.git] / src / qt / notificator.cpp
blob64a8e5d989492fe551440f3a2553de1f99f74377
1 // Copyright (c) 2011-2017 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #include <qt/notificator.h>
7 #include <QApplication>
8 #include <QByteArray>
9 #include <QImageWriter>
10 #include <QMessageBox>
11 #include <QMetaType>
12 #include <QStyle>
13 #include <QSystemTrayIcon>
14 #include <QTemporaryFile>
15 #include <QVariant>
16 #ifdef USE_DBUS
17 #include <stdint.h>
18 #include <QtDBus>
19 #endif
20 // Include ApplicationServices.h after QtDbus to avoid redefinition of check().
21 // This affects at least OSX 10.6. See /usr/include/AssertMacros.h for details.
22 // Note: This could also be worked around using:
23 // #define __ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES 0
24 #ifdef Q_OS_MAC
25 #include <ApplicationServices/ApplicationServices.h>
26 #include <qt/macnotificationhandler.h>
27 #endif
30 #ifdef USE_DBUS
31 // https://wiki.ubuntu.com/NotificationDevelopmentGuidelines recommends at least 128
32 const int FREEDESKTOP_NOTIFICATION_ICON_SIZE = 128;
33 #endif
35 Notificator::Notificator(const QString &_programName, QSystemTrayIcon *_trayIcon, QWidget *_parent) :
36 QObject(_parent),
37 parent(_parent),
38 programName(_programName),
39 mode(None),
40 trayIcon(_trayIcon)
41 #ifdef USE_DBUS
42 ,interface(0)
43 #endif
45 if(_trayIcon && _trayIcon->supportsMessages())
47 mode = QSystemTray;
49 #ifdef USE_DBUS
50 interface = new QDBusInterface("org.freedesktop.Notifications",
51 "/org/freedesktop/Notifications", "org.freedesktop.Notifications");
52 if(interface->isValid())
54 mode = Freedesktop;
56 #endif
57 #ifdef Q_OS_MAC
58 // check if users OS has support for NSUserNotification
59 if( MacNotificationHandler::instance()->hasUserNotificationCenterSupport()) {
60 mode = UserNotificationCenter;
62 #endif
65 Notificator::~Notificator()
67 #ifdef USE_DBUS
68 delete interface;
69 #endif
72 #ifdef USE_DBUS
74 // Loosely based on http://www.qtcentre.org/archive/index.php/t-25879.html
75 class FreedesktopImage
77 public:
78 FreedesktopImage() {}
79 explicit FreedesktopImage(const QImage &img);
81 static int metaType();
83 // Image to variant that can be marshalled over DBus
84 static QVariant toVariant(const QImage &img);
86 private:
87 int width, height, stride;
88 bool hasAlpha;
89 int channels;
90 int bitsPerSample;
91 QByteArray image;
93 friend QDBusArgument &operator<<(QDBusArgument &a, const FreedesktopImage &i);
94 friend const QDBusArgument &operator>>(const QDBusArgument &a, FreedesktopImage &i);
97 Q_DECLARE_METATYPE(FreedesktopImage);
99 // Image configuration settings
100 const int CHANNELS = 4;
101 const int BYTES_PER_PIXEL = 4;
102 const int BITS_PER_SAMPLE = 8;
104 FreedesktopImage::FreedesktopImage(const QImage &img):
105 width(img.width()),
106 height(img.height()),
107 stride(img.width() * BYTES_PER_PIXEL),
108 hasAlpha(true),
109 channels(CHANNELS),
110 bitsPerSample(BITS_PER_SAMPLE)
112 // Convert 00xAARRGGBB to RGBA bytewise (endian-independent) format
113 QImage tmp = img.convertToFormat(QImage::Format_ARGB32);
114 const uint32_t *data = reinterpret_cast<const uint32_t*>(tmp.bits());
116 unsigned int num_pixels = width * height;
117 image.resize(num_pixels * BYTES_PER_PIXEL);
119 for(unsigned int ptr = 0; ptr < num_pixels; ++ptr)
121 image[ptr*BYTES_PER_PIXEL+0] = data[ptr] >> 16; // R
122 image[ptr*BYTES_PER_PIXEL+1] = data[ptr] >> 8; // G
123 image[ptr*BYTES_PER_PIXEL+2] = data[ptr]; // B
124 image[ptr*BYTES_PER_PIXEL+3] = data[ptr] >> 24; // A
128 QDBusArgument &operator<<(QDBusArgument &a, const FreedesktopImage &i)
130 a.beginStructure();
131 a << i.width << i.height << i.stride << i.hasAlpha << i.bitsPerSample << i.channels << i.image;
132 a.endStructure();
133 return a;
136 const QDBusArgument &operator>>(const QDBusArgument &a, FreedesktopImage &i)
138 a.beginStructure();
139 a >> i.width >> i.height >> i.stride >> i.hasAlpha >> i.bitsPerSample >> i.channels >> i.image;
140 a.endStructure();
141 return a;
144 int FreedesktopImage::metaType()
146 return qDBusRegisterMetaType<FreedesktopImage>();
149 QVariant FreedesktopImage::toVariant(const QImage &img)
151 FreedesktopImage fimg(img);
152 return QVariant(FreedesktopImage::metaType(), &fimg);
155 void Notificator::notifyDBus(Class cls, const QString &title, const QString &text, const QIcon &icon, int millisTimeout)
157 Q_UNUSED(cls);
158 // Arguments for DBus call:
159 QList<QVariant> args;
161 // Program Name:
162 args.append(programName);
164 // Unique ID of this notification type:
165 args.append(0U);
167 // Application Icon, empty string
168 args.append(QString());
170 // Summary
171 args.append(title);
173 // Body
174 args.append(text);
176 // Actions (none, actions are deprecated)
177 QStringList actions;
178 args.append(actions);
180 // Hints
181 QVariantMap hints;
183 // If no icon specified, set icon based on class
184 QIcon tmpicon;
185 if(icon.isNull())
187 QStyle::StandardPixmap sicon = QStyle::SP_MessageBoxQuestion;
188 switch(cls)
190 case Information: sicon = QStyle::SP_MessageBoxInformation; break;
191 case Warning: sicon = QStyle::SP_MessageBoxWarning; break;
192 case Critical: sicon = QStyle::SP_MessageBoxCritical; break;
193 default: break;
195 tmpicon = QApplication::style()->standardIcon(sicon);
197 else
199 tmpicon = icon;
201 hints["icon_data"] = FreedesktopImage::toVariant(tmpicon.pixmap(FREEDESKTOP_NOTIFICATION_ICON_SIZE).toImage());
202 args.append(hints);
204 // Timeout (in msec)
205 args.append(millisTimeout);
207 // "Fire and forget"
208 interface->callWithArgumentList(QDBus::NoBlock, "Notify", args);
210 #endif
212 void Notificator::notifySystray(Class cls, const QString &title, const QString &text, const QIcon &icon, int millisTimeout)
214 Q_UNUSED(icon);
215 QSystemTrayIcon::MessageIcon sicon = QSystemTrayIcon::NoIcon;
216 switch(cls) // Set icon based on class
218 case Information: sicon = QSystemTrayIcon::Information; break;
219 case Warning: sicon = QSystemTrayIcon::Warning; break;
220 case Critical: sicon = QSystemTrayIcon::Critical; break;
222 trayIcon->showMessage(title, text, sicon, millisTimeout);
225 // Based on Qt's tray icon implementation
226 #ifdef Q_OS_MAC
227 void Notificator::notifyMacUserNotificationCenter(Class cls, const QString &title, const QString &text, const QIcon &icon) {
228 // icon is not supported by the user notification center yet. OSX will use the app icon.
229 MacNotificationHandler::instance()->showNotification(title, text);
232 #endif
234 void Notificator::notify(Class cls, const QString &title, const QString &text, const QIcon &icon, int millisTimeout)
236 switch(mode)
238 #ifdef USE_DBUS
239 case Freedesktop:
240 notifyDBus(cls, title, text, icon, millisTimeout);
241 break;
242 #endif
243 case QSystemTray:
244 notifySystray(cls, title, text, icon, millisTimeout);
245 break;
246 #ifdef Q_OS_MAC
247 case UserNotificationCenter:
248 notifyMacUserNotificationCenter(cls, title, text, icon);
249 break;
250 #endif
251 default:
252 if(cls == Critical)
254 // Fall back to old fashioned pop-up dialog if critical and no other notification available
255 QMessageBox::critical(parent, title, text, QMessageBox::Ok, QMessageBox::Ok);
257 break;