summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2009-11-26 17:31:53 (GMT)
committerKevin Smith <git@kismith.co.uk>2009-11-26 17:46:21 (GMT)
commiteebdef9a7724ff7fa86a5d1cca37759d37bbb336 (patch)
tree7dd76b8e5d364eb1b019b2511a839a9eac8397e4 /Swift/Controllers/UIEvents
parent39e58e4593f54a65f810e73728fe2490958fcba2 (diff)
downloadswift-eebdef9a7724ff7fa86a5d1cca37759d37bbb336.zip
swift-eebdef9a7724ff7fa86a5d1cca37759d37bbb336.tar.bz2
Plumbing to show a dummy XMLConsoleWidget in the chat tabs.
This should all work now, and the XMLConsoleController needs to talk to the QtXMLConsoleWidget through the XMLConsoleWidget interface. Resolves: #256
Diffstat (limited to 'Swift/Controllers/UIEvents')
-rw-r--r--Swift/Controllers/UIEvents/RequestXMLConsoleUIEvent.h9
-rw-r--r--Swift/Controllers/UIEvents/UIEvent.cpp7
-rw-r--r--Swift/Controllers/UIEvents/UIEvent.h8
-rw-r--r--Swift/Controllers/UIEvents/UIEventStream.h15
4 files changed, 39 insertions, 0 deletions
diff --git a/Swift/Controllers/UIEvents/RequestXMLConsoleUIEvent.h b/Swift/Controllers/UIEvents/RequestXMLConsoleUIEvent.h
new file mode 100644
index 0000000..63492b3
--- /dev/null
+++ b/Swift/Controllers/UIEvents/RequestXMLConsoleUIEvent.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "Swift/Controllers/UIEvents/UIEvent.h"
+
+namespace Swift {
+ class RequestXMLConsoleUIEvent : public UIEvent {
+
+ };
+}
diff --git a/Swift/Controllers/UIEvents/UIEvent.cpp b/Swift/Controllers/UIEvents/UIEvent.cpp
new file mode 100644
index 0000000..7d29a19
--- /dev/null
+++ b/Swift/Controllers/UIEvents/UIEvent.cpp
@@ -0,0 +1,7 @@
+#include "Swift/Controllers/UIEvents/UIEvent.h"
+
+namespace Swift {
+UIEvent::~UIEvent() {
+
+}
+}
diff --git a/Swift/Controllers/UIEvents/UIEvent.h b/Swift/Controllers/UIEvents/UIEvent.h
new file mode 100644
index 0000000..7e06255
--- /dev/null
+++ b/Swift/Controllers/UIEvents/UIEvent.h
@@ -0,0 +1,8 @@
+#pragma once
+
+namespace Swift {
+ class UIEvent {
+ public:
+ virtual ~UIEvent();
+ };
+}
diff --git a/Swift/Controllers/UIEvents/UIEventStream.h b/Swift/Controllers/UIEvents/UIEventStream.h
new file mode 100644
index 0000000..a20c578
--- /dev/null
+++ b/Swift/Controllers/UIEvents/UIEventStream.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <boost/signals.hpp>
+#include <boost/shared_ptr.hpp>
+
+
+#include "Swift/Controllers/UIEvents/UIEvent.h"
+
+namespace Swift {
+ class UIEventStream {
+ public:
+ boost::signal<void (boost::shared_ptr<UIEvent>)> onUIEvent;
+ void send(boost::shared_ptr<UIEvent> event) {onUIEvent(event);};
+ };
+}