diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-01 08:48:42 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-01 09:24:28 (GMT) |
commit | 2812bddd81f8a1b804c7460f4e14cd0aa393d129 (patch) | |
tree | d46294f35150c4f0f43deaf2d31fceaf945ae715 /UI/Qt/NotifierTest/NotifierTest.cpp | |
download | swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.zip swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.tar.bz2 |
Import.
Diffstat (limited to 'UI/Qt/NotifierTest/NotifierTest.cpp')
-rw-r--r-- | UI/Qt/NotifierTest/NotifierTest.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/UI/Qt/NotifierTest/NotifierTest.cpp b/UI/Qt/NotifierTest/NotifierTest.cpp new file mode 100644 index 0000000..8a0fb22 --- /dev/null +++ b/UI/Qt/NotifierTest/NotifierTest.cpp @@ -0,0 +1,20 @@ +#include <iostream> +#include <boost/bind.hpp> + +#include "Swiften/Base/String.h" +#include "Swiften/Base/ByteArray.h" +#include "Swiften/Notifier/GrowlNotifier.h" +#include <QApplication> + +using namespace Swift; + +void notificationClicked(const String& message) { + std::cout << "Notification clicked: " << message << std::endl; +} + +int main(int argc, char* argv[]) { + QApplication app(argc, argv); + GrowlNotifier notifier("Swift-NotifierTest"); + notifier.showMessage(Notifier::ContactAvailable, "Contact is available", "The contact has become available", ByteArray(), boost::bind(¬ificationClicked, "Message 1")); + return app.exec(); +} |