diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-06-01 08:48:42 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-06-01 09:24:28 (GMT) |
commit | 2812bddd81f8a1b804c7460f4e14cd0aa393d129 (patch) | |
tree | d46294f35150c4f0f43deaf2d31fceaf945ae715 /UI/Qt/QtChatWindowFactory.h | |
download | swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.zip swift-contrib-2812bddd81f8a1b804c7460f4e14cd0aa393d129.tar.bz2 |
Import.
Diffstat (limited to 'UI/Qt/QtChatWindowFactory.h')
-rw-r--r-- | UI/Qt/QtChatWindowFactory.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/UI/Qt/QtChatWindowFactory.h b/UI/Qt/QtChatWindowFactory.h new file mode 100644 index 0000000..9e5004e --- /dev/null +++ b/UI/Qt/QtChatWindowFactory.h @@ -0,0 +1,18 @@ +#ifndef SWIFT_QtChatWindowFactory_H +#define SWIFT_QtChatWindowFactory_H + +#include "Swiften/Controllers/ChatWindowFactory.h" +#include "Swiften/JID/JID.h" + +namespace Swift { + class QtTreeWidgetFactory; + class QtChatWindowFactory : public ChatWindowFactory { + public: + QtChatWindowFactory(QtTreeWidgetFactory *treeWidgetFactory); + ChatWindow* createChatWindow(const JID &contact); + private: + QtTreeWidgetFactory *treeWidgetFactory_; + }; +} + +#endif |