summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/XMLConsoleController.cpp')
-rw-r--r--Swift/Controllers/XMLConsoleController.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/Swift/Controllers/XMLConsoleController.cpp b/Swift/Controllers/XMLConsoleController.cpp
new file mode 100644
index 0000000..8bd79ed
--- /dev/null
+++ b/Swift/Controllers/XMLConsoleController.cpp
@@ -0,0 +1,21 @@
+#include "Swift/Controllers/XMLConsoleController.h"
+
+#include "Swift/Controllers/UIInterfaces/XMLConsoleWidgetFactory.h"
+
+#include "Swift/Controllers/UIEvents/RequestXMLConsoleUIEvent.h"
+
+namespace Swift {
+XMLConsoleController::XMLConsoleController(UIEventStream* uiEventStream, XMLConsoleWidgetFactory* xmlConsoleWidgetFactory) {
+ uiEventStream_ = uiEventStream;
+ xmlConsoleWidgetFactory_ = xmlConsoleWidgetFactory;
+ uiEventStream_->onUIEvent.connect(boost::bind(&XMLConsoleController::handleUIEvent, this, _1));
+}
+
+void XMLConsoleController::handleUIEvent(boost::shared_ptr<UIEvent> rawEvent) {
+ boost::shared_ptr<RequestXMLConsoleUIEvent> event = boost::dynamic_pointer_cast<RequestXMLConsoleUIEvent>(rawEvent);
+ if (event != NULL) {
+ xmlConsoleWidget_ = xmlConsoleWidgetFactory_->createXMLConsoleWidget();
+ }
+}
+
+}