aboutsummaryrefslogtreecommitdiff
path: root/src/qt/notificator.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix warning when compiling in OS XFederico Bond2014-05-231-0/+2
|
* qt5: fix a build issue with osx and qtdbusCory Fields2014-01-101-8/+8
| | | | See comment in notificator.cpp for details.
* [Qt] small notificator and style changesPhilip Kaufmann2013-12-031-3/+2
| | | | | | - remove default arguments for notificator - re-order some calls to use same ordering in Qt files - style police changes (spaces, comments and such)
* Cleanup code using forward declarations.Brandon Dahler2013-11-101-10/+14
| | | | | | | | | Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
* qt: add license header to source filesWladimir J. van der Laan2013-11-041-0/+4
| | | | Closes #839
* Bitcoin-Qt: fix QApplication includes to match our include defaultsPhilip Kaufmann2013-07-231-1/+1
| | | | | - move all QApplication includes to top of included Qt headers - undef our loop macro where it would cause compilation errors otherwise
* osx: make use of the 10.8+ user notification center to display growl like ↵Jonas Schnelli2013-05-241-14/+29
| | | | | | | | notifications - if 10.8, use user notification center, if <10.8, use growl Signed-off-by: Jonas Schnelli <[email protected]>
* Bitcoin-Qt: massive header and cpp cleanupPhilip Kaufmann2013-03-171-1/+1
| | | | | | | - try to enforce the same style to all Qt related files - remove unneeded includes from the files - add missing Q_OBJECT, QT_BEGIN_NAMESPACE / QT_END_NAMESPACE - prepares for a pull-req to include Qt5 compatibility
* Use QImage.bits instead of QImage.constBits to ease backportingPetter Reinholdtsen2013-02-091-1/+1
| | | | | Image.constBits was introduced in Qt 4.7. Should be ok here to use QImage.bits which allows linking against the Qt in Squeeze.
* enhance Qt5 compatibilityPhilip Kaufmann2012-09-211-4/+4
| | | | | - replace Q_WS_MAC (not supported anymore in Qt5) with Q_OS_MAC (supported in Qt4/5)
* Bugfix: Fix a variety of misspellingsLuke Dashjr2012-08-011-2/+2
|
* Proper support for Growl 1.3 notificationsp2k2012-03-201-5/+10
|
* Revert "Use standard C99 (and Qt) types for 64-bit integers"Wladimir J. van der Laan2011-12-211-1/+0
| | | | This reverts commit 21d9f36781604e4ca9fc35dc65265593423b73e9.
* Use standard C99 (and Qt) types for 64-bit integersLuke Dashjr2011-12-201-0/+1
|
* Improved Mac experience; QDoubleSpinBox for BitcoinAmountFieldp2k2011-10-091-0/+73
| | | | | | | | Now it can't be told if this is was a Windows App before. All Mac design principles are fulfilled and some cosmetics have been applied to suit the native look and feel. The biggest change there is the proper use of the Dock icon which takes the role of the Tray icon on Mac. The QDoubleSpinBox improves entering of Bitcoin amounts, no two separate fields are required anymore. All functionality and validation effects have been retained; pressing the comma key will be internally translated to a period to keep it consistent throughout the application and eases entering in countries which use the comma as decimal separator. Additionally, Notificator now supports Growl, Mac's native notification system. This is provided via Apple Script in order to avoid linking to Growl on compile time. Other changes involve encapsulation of Toolbar and Menubar creation, loading of Qt's own translation and some clean up.
* Change define to determine use of DBUS to USE_DBUS, to prevent overlap with ↵Wladimir J. van der Laan2011-09-241-6/+6
| | | | Qt-defined QT_DBUS
* (k)ubuntu 10.04+ notification support (based on @zwierzak his code)Wladimir J. van der Laan2011-09-031-0/+224