blob: 1205164f318e25ae44b7ac65a64fe1c224cf34ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SWIFT_QtChatWindowFactory_H
#define SWIFT_QtChatWindowFactory_H
#include "Swift/Controllers/ChatWindowFactory.h"
#include "Swiften/JID/JID.h"
#include <QSplitter>
namespace Swift {
class QtTreeWidgetFactory;
class QtChatTabs;
class QtChatWindowFactory : public ChatWindowFactory {
public:
QtChatWindowFactory(QtTreeWidgetFactory *treeWidgetFactory, QSplitter* splitter);
ChatWindow* createChatWindow(const JID &contact);
private:
QtTreeWidgetFactory* treeWidgetFactory_;
QtChatTabs* tabs_;
};
}
#endif
|