Implement user authentication for core login
[quassel.git] / src / qtui / mainwin.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef MAINWIN_H_
22 #define MAINWIN_H_
23
24 #ifdef HAVE_KDE
25 #  include <KMainWindow>
26 #else
27 #  include <QMainWindow>
28 #endif
29
30 #ifdef Q_WS_WIN
31 #  include <windows.h>
32 #endif
33
34 #include <QSystemTrayIcon>
35
36 #include "qtui.h"
37 #include "titlesetter.h"
38 #include "uisettings.h"
39
40 class ActionCollection;
41 class BufferHotListFilter;
42 class BufferView;
43 class BufferViewConfig;
44 class ClientBufferViewConfig;
45 class CoreAccount;
46 class CoreConnectionStatusWidget;
47 class BufferViewDock;
48 class BufferWidget;
49 class InputWidget;
50 class MsgProcessorStatusWidget;
51 class NickListWidget;
52 class SystemTray;
53
54 class QMenu;
55 class QLabel;
56 class QToolBar;
57
58 class KHelpMenu;
59
60 //!\brief The main window of Quassel's QtUi.
61 class MainWin
62 #ifdef HAVE_KDE
63 : public KMainWindow {
64 #else
65 : public QMainWindow {
66 #endif
67   Q_OBJECT
68
69   public:
70     MainWin(QWidget *parent = 0);
71     virtual ~MainWin();
72
73     void init();
74
75     void addBufferView(ClientBufferViewConfig *config);
76     BufferView *allBuffersView() const;
77
78     BufferWidget *bufferWidget() const { return _bufferWidget; }
79
80     inline SystemTray *systemTray() const;
81
82     bool event(QEvent *event);
83
84     static void flagRemoteCoreOnly(QObject *object) { object->setProperty("REMOTE_CORE_ONLY", true); }
85     static bool isRemoteCoreOnly(QObject *object) { return object->property("REMOTE_CORE_ONLY").toBool(); }
86
87     void saveStateToSettings(UiSettings &);
88     void restoreStateFromSettings(UiSettings &);
89
90   public slots:
91     void showStatusBarMessage(const QString &message);
92
93     void toggleMinimizedToTray();
94
95     //! Bring window to front and focus it
96     void forceActivated();
97
98     //! Quit application
99     void quit();
100
101   protected:
102     void closeEvent(QCloseEvent *event);
103     void changeEvent(QEvent *event);
104     void moveEvent(QMoveEvent *event);
105     void resizeEvent(QResizeEvent *event);
106
107   protected slots:
108     void connectedToCore();
109     void setConnectedState();
110     void updateLagIndicator(int lag = -1);
111     void disconnectedFromCore();
112     void setDisconnectedState();
113
114   private slots:
115     void addBufferView(int bufferViewConfigId);
116     void awayLogDestroyed();
117     void removeBufferView(int bufferViewConfigId);
118     void currentBufferChanged(BufferId);
119     void messagesInserted(const QModelIndex &parent, int start, int end);
120     void showAboutDlg();
121     void showChannelList(NetworkId netId = NetworkId());
122     void startInternalCore();
123     void userAuthenticationRequired(CoreAccount *, bool *valid, const QString &errorMessage);
124     void showCoreConnectionDlg();
125     void showCoreInfoDlg();
126     void showAwayLog();
127     void showSettingsDlg();
128     void showNotificationsDlg();
129     void showIgnoreList(QString newRule = QString());
130 #ifdef HAVE_KDE
131     void showShortcutsDlg();
132 #endif
133     void on_actionConfigureNetworks_triggered();
134     void on_actionConfigureViews_triggered();
135     void on_actionLockLayout_toggled(bool lock);
136     void on_jumpHotBuffer_triggered();
137     void on_actionDebugNetworkModel_triggered();
138     void on_actionDebugBufferViewOverlay_triggered();
139     void on_actionDebugMessageModel_triggered();
140     void on_actionDebugHotList_triggered();
141     void on_actionDebugLog_triggered();
142
143     void clientNetworkCreated(NetworkId);
144     void clientNetworkRemoved(NetworkId);
145     void clientNetworkUpdated();
146     void connectOrDisconnectFromNet();
147
148     void saveMenuBarStatus(bool enabled);
149     void saveStatusBarStatus(bool enabled);
150
151     void loadLayout();
152     void saveLayout();
153
154     void bufferViewToggled(bool enabled);
155
156   signals:
157     void connectToCore(const QVariantMap &connInfo);
158     void disconnectFromCore();
159
160   private:
161 #ifdef HAVE_KDE
162     KHelpMenu *_kHelpMenu;
163 #endif
164
165     QLabel *coreLagLabel;
166     QLabel *sslLabel;
167     MsgProcessorStatusWidget *_msgProcessorStatusWidget;
168     CoreConnectionStatusWidget *_coreConnectionStatusWidget;
169
170     TitleSetter _titleSetter;
171
172     void setupActions();
173     void setupBufferWidget();
174     void setupMenus();
175     void setupNickWidget();
176     void setupChatMonitor();
177     void setupInputWidget();
178     void setupTopicWidget();
179     void setupStatusBar();
180     void setupSystray();
181     void setupTitleSetter();
182     void setupToolBars();
183     void setupHotList();
184
185     void updateIcon();
186     void enableMenus();
187
188     void hideToTray();
189
190     SystemTray *_systemTray;
191
192     QList<BufferViewDock *> _bufferViews;
193     BufferWidget *_bufferWidget;
194     NickListWidget *_nickListWidget;
195     InputWidget *_inputWidget;
196
197     QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu;
198     QMenu *_toolbarMenu;
199     QToolBar *_mainToolBar, *_chatViewToolBar, *_nickToolBar;
200
201     QWidget *_awayLog;
202
203     bool _layoutLoaded;
204
205     QSize _normalSize; //!< Size of the non-maximized window
206     QPoint _normalPos; //!< Position of the non-maximized window
207
208 #ifdef Q_WS_WIN
209     DWORD dwTickCount;
210 #endif
211
212     BufferHotListFilter *_bufferHotList;
213
214     friend class QtUi;
215 };
216
217 SystemTray *MainWin::systemTray() const {
218   return _systemTray;
219 }
220
221 #endif