diff options
author | Kevin Smith <git@kismith.co.uk> | 2009-06-16 21:27:44 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2009-06-16 21:27:44 (GMT) |
commit | f1c690a5352ee77282bbbd145a3fe0137aceb160 (patch) | |
tree | ee54e5a269295f3010f906097efbf0e3a9ce8dd3 /Swift/QtUI/QtChatWindowFactory.cpp | |
parent | a2e0cf9108081663607706f661f411a5fcf86e1d (diff) | |
parent | 73fa400641352d2f397b2e4a8589bf6ce80c7beb (diff) | |
download | swift-f1c690a5352ee77282bbbd145a3fe0137aceb160.zip swift-f1c690a5352ee77282bbbd145a3fe0137aceb160.tar.bz2 |
Merge branch 'tabs'
Diffstat (limited to 'Swift/QtUI/QtChatWindowFactory.cpp')
-rw-r--r-- | Swift/QtUI/QtChatWindowFactory.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Swift/QtUI/QtChatWindowFactory.cpp b/Swift/QtUI/QtChatWindowFactory.cpp index b0b3679..c3c8f67 100644 --- a/Swift/QtUI/QtChatWindowFactory.cpp +++ b/Swift/QtUI/QtChatWindowFactory.cpp @@ -1,15 +1,21 @@ #include "QtChatWindowFactory.h" + +#include "QtChatTabs.h" #include "QtChatWindow.h" #include "QtSwiftUtil.h" #include "QtTreeWidgetFactory.h" + namespace Swift { QtChatWindowFactory::QtChatWindowFactory(QtTreeWidgetFactory *treeWidgetFactory) : treeWidgetFactory_(treeWidgetFactory) { - + tabs_ = new QtChatTabs(); } + ChatWindow* QtChatWindowFactory::createChatWindow(const JID &contact) { QtChatWindow *chatWindow = new QtChatWindow(P2QSTRING(contact.toString()), treeWidgetFactory_); - chatWindow->show(); + tabs_->addTab(chatWindow); + tabs_->show(); + //chatWindow->show(); return chatWindow; } |