[test] Add getblockchaininfo functional test
[bitcoinplatinum.git] / src / qt / notificator.h
blob67f2b1df6992cf3662a146b7d330db6266541758
1 // Copyright (c) 2011-2015 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 #ifndef BITCOIN_QT_NOTIFICATOR_H
6 #define BITCOIN_QT_NOTIFICATOR_H
8 #if defined(HAVE_CONFIG_H)
9 #include "config/bitcoin-config.h"
10 #endif
12 #include <QIcon>
13 #include <QObject>
15 QT_BEGIN_NAMESPACE
16 class QSystemTrayIcon;
18 #ifdef USE_DBUS
19 class QDBusInterface;
20 #endif
21 QT_END_NAMESPACE
23 /** Cross-platform desktop notification client. */
24 class Notificator: public QObject
26 Q_OBJECT
28 public:
29 /** Create a new notificator.
30 @note Ownership of trayIcon is not transferred to this object.
32 Notificator(const QString &programName, QSystemTrayIcon *trayIcon, QWidget *parent);
33 ~Notificator();
35 // Message class
36 enum Class
38 Information, /**< Informational message */
39 Warning, /**< Notify user of potential problem */
40 Critical /**< An error occurred */
43 public Q_SLOTS:
44 /** Show notification message.
45 @param[in] cls general message class
46 @param[in] title title shown with message
47 @param[in] text message content
48 @param[in] icon optional icon to show with message
49 @param[in] millisTimeout notification timeout in milliseconds (defaults to 10 seconds)
50 @note Platform implementations are free to ignore any of the provided fields except for \a text.
52 void notify(Class cls, const QString &title, const QString &text,
53 const QIcon &icon = QIcon(), int millisTimeout = 10000);
55 private:
56 QWidget *parent;
57 enum Mode {
58 None, /**< Ignore informational notifications, and show a modal pop-up dialog for Critical notifications. */
59 Freedesktop, /**< Use DBus org.freedesktop.Notifications */
60 QSystemTray, /**< Use QSystemTray::showMessage */
61 UserNotificationCenter /**< Use the 10.8+ User Notification Center (Mac only) */
63 QString programName;
64 Mode mode;
65 QSystemTrayIcon *trayIcon;
66 #ifdef USE_DBUS
67 QDBusInterface *interface;
69 void notifyDBus(Class cls, const QString &title, const QString &text, const QIcon &icon, int millisTimeout);
70 #endif
71 void notifySystray(Class cls, const QString &title, const QString &text, const QIcon &icon, int millisTimeout);
72 #ifdef Q_OS_MAC
73 void notifyMacUserNotificationCenter(Class cls, const QString &title, const QString &text, const QIcon &icon);
74 #endif
77 #endif // BITCOIN_QT_NOTIFICATOR_H