diff options
author | Kevin Smith <git@kismith.co.uk> | 2010-03-28 13:25:13 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2010-03-28 13:25:35 (GMT) |
commit | a59af6c6daa72dd491189335cf2d255a788eb0f6 (patch) | |
tree | a09c9b67e6ba5ea0ac87ab06a0b9836d61571a3e /Swift/Controllers/MainController.h | |
parent | 625d6a9f18c2377cdc3180e74b773ce3cbb2dcba (diff) | |
download | swift-contrib-a59af6c6daa72dd491189335cf2d255a788eb0f6.zip swift-contrib-a59af6c6daa72dd491189335cf2d255a788eb0f6.tar.bz2 |
Chat list in the gui (mostly non-functional).
Diffstat (limited to 'Swift/Controllers/MainController.h')
-rw-r--r-- | Swift/Controllers/MainController.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Swift/Controllers/MainController.h b/Swift/Controllers/MainController.h index 387fcb6..75a8e5a 100644 --- a/Swift/Controllers/MainController.h +++ b/Swift/Controllers/MainController.h @@ -26,6 +26,7 @@ namespace Swift { class ChatWindowFactory; class ChatController; class ChatsManager; + class ChatListWindowFactory; class EventController; class MainWindowFactory; class MainWindow; @@ -54,7 +55,7 @@ namespace Swift { class MainController { public: - MainController(ChatWindowFactory* chatWindowFactory, MainWindowFactory *mainWindowFactory, LoginWindowFactory *loginWindowFactory, TreeWidgetFactory* treeWidgetFactory, EventWindowFactory* eventWindowFactory, SettingsProvider *settings, Application* application, SystemTray* systemTray, SoundPlayer* soundPlayer, XMLConsoleWidgetFactory* xmlConsoleWidgetFactory); + MainController(ChatWindowFactory* chatWindowFactory, MainWindowFactory *mainWindowFactory, LoginWindowFactory *loginWindowFactory, TreeWidgetFactory* treeWidgetFactory, EventWindowFactory* eventWindowFactory, SettingsProvider *settings, Application* application, SystemTray* systemTray, SoundPlayer* soundPlayer, XMLConsoleWidgetFactory* xmlConsoleWidgetFactory, ChatListWindowFactory* chatListWindowFactory_); ~MainController(); @@ -117,5 +118,6 @@ namespace Swift { boost::shared_ptr<Presence> queuedPresence_; String password_; String certificateFile_; + ChatListWindowFactory* chatListWindowFactory_; }; } |