summaryrefslogtreecommitdiffstats
blob: b3efeaca4748a581df333c1f55cc3abbed6e1f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include "QtChatWindowFactory.h"

#include "QtChatTabs.h"
#include "QtChatWindow.h"
#include "QtSwiftUtil.h"
#include "Roster/QtTreeWidgetFactory.h"


namespace Swift {
QtChatWindowFactory::QtChatWindowFactory(QtTreeWidgetFactory *treeWidgetFactory, QSplitter* splitter) : treeWidgetFactory_(treeWidgetFactory) {
	tabs_ = new QtChatTabs();
	if (splitter) {
		splitter->addWidget(tabs_);
	}
}

ChatWindow* QtChatWindowFactory::createChatWindow(const JID &contact) {
	QtChatWindow *chatWindow = new QtChatWindow(P2QSTRING(contact.toString()), treeWidgetFactory_);
	tabs_->addTab(chatWindow);
	if (!tabs_->isVisible()) {
		tabs_->showMinimized();
		//tabs_->minimise();
	}
	//chatWindow->show();
	return chatWindow;
}

}