diff options
Diffstat (limited to 'Swift/QtUI/QtChatWindowFactory.cpp')
-rw-r--r-- | Swift/QtUI/QtChatWindowFactory.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Swift/QtUI/QtChatWindowFactory.cpp b/Swift/QtUI/QtChatWindowFactory.cpp new file mode 100644 index 0000000..b0b3679 --- /dev/null +++ b/Swift/QtUI/QtChatWindowFactory.cpp @@ -0,0 +1,16 @@ +#include "QtChatWindowFactory.h" +#include "QtChatWindow.h" +#include "QtSwiftUtil.h" +#include "QtTreeWidgetFactory.h" + +namespace Swift { +QtChatWindowFactory::QtChatWindowFactory(QtTreeWidgetFactory *treeWidgetFactory) : treeWidgetFactory_(treeWidgetFactory) { + +} +ChatWindow* QtChatWindowFactory::createChatWindow(const JID &contact) { + QtChatWindow *chatWindow = new QtChatWindow(P2QSTRING(contact.toString()), treeWidgetFactory_); + chatWindow->show(); + return chatWindow; +} + +} |