summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-04-12 15:05:57 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-04-12 15:05:57 (GMT)
commitfa47c498947e818438ec9c6318924d11c2ae6c84 (patch)
treec33ca1f4376686edafbca3f120b363bfedc027ac /Swift/QtUI/EventViewer/main.cpp
parent6578b5872440f63ed8a4903bae83e46e936d469e (diff)
downloadswift-fa47c498947e818438ec9c6318924d11c2ae6c84.zip
swift-fa47c498947e818438ec9c6318924d11c2ae6c84.tar.bz2
Allow ErrorEvents into the EventController (display them to the user).
Diffstat (limited to 'Swift/QtUI/EventViewer/main.cpp')
-rw-r--r--Swift/QtUI/EventViewer/main.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/Swift/QtUI/EventViewer/main.cpp b/Swift/QtUI/EventViewer/main.cpp
index ec96561..afdb442 100644
--- a/Swift/QtUI/EventViewer/main.cpp
+++ b/Swift/QtUI/EventViewer/main.cpp
@@ -10,18 +10,22 @@
#include "QtEventWindow.h"
#include "Swiften/Events/MessageEvent.h"
+#include "Swiften/Events/ErrorEvent.h"
+#include "Swiften/JID/JID.h"
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
- Swift::QtEventWindow* viewer = new Swift::QtEventWindow();
+ Swift::UIEventStream eventStream;
+ Swift::QtEventWindow* viewer = new Swift::QtEventWindow(&eventStream);
viewer->show();
boost::shared_ptr<Swift::Message> message1(new Swift::Message());
message1->setBody("Oooh, shiny");
boost::shared_ptr<Swift::MessageEvent> event1(new Swift::MessageEvent(message1));
- viewer->addEvent(boost::dynamic_pointer_cast<Swift::Event>(event1), true);
+ viewer->addEvent(boost::dynamic_pointer_cast<Swift::StanzaEvent>(event1), true);
for (int i = 0; i < 100; i++) {
- viewer->addEvent(boost::dynamic_pointer_cast<Swift::Event>(event1), false);
+ viewer->addEvent(boost::dynamic_pointer_cast<Swift::StanzaEvent>(event1), false);
}
+ viewer->addEvent(boost::dynamic_pointer_cast<Swift::StanzaEvent>(boost::shared_ptr<Swift::ErrorEvent>(new Swift::ErrorEvent(Swift::JID("me@example.com"), "Something bad did happen to you."))), true);
return app.exec();
}