Rename HAVE_KDE define to HAVE_KDE4
[quassel.git] / src / qtui / mainwin.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2015 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #ifndef MAINWIN_H_
22 #define MAINWIN_H_
23
24 #ifdef HAVE_KDE4
25 #  include <KMainWindow>
26 #else
27 #  include <QMainWindow>
28 #endif
29
30 #include "qtui.h"
31 #include "titlesetter.h"
32 #include "uisettings.h"
33
34 class ActionCollection;
35 class BufferHotListFilter;
36 class BufferView;
37 class BufferViewConfig;
38 class ClientBufferViewConfig;
39 class ClientTransfer;
40 class CoreAccount;
41 class CoreConnectionStatusWidget;
42 class BufferViewDock;
43 class BufferWidget;
44 class InputWidget;
45 class MsgProcessorStatusWidget;
46 class NickListWidget;
47 class SystemTray;
48 class ChatMonitorView;
49 class TopicWidget;
50
51 class QMenu;
52 class QLabel;
53 class QToolBar;
54
55 class KHelpMenu;
56
57 //!\brief The main window of Quassel's QtUi.
58 class MainWin
59 #ifdef HAVE_KDE4
60     : public KMainWindow
61 {
62 #else
63 : public QMainWindow {
64 #endif
65     Q_OBJECT
66
67 public:
68     MainWin(QWidget *parent = 0);
69     virtual ~MainWin();
70
71     void init();
72
73     void addBufferView(ClientBufferViewConfig *config);
74     BufferView *allBuffersView() const;
75     BufferView *activeBufferView() const;
76
77     inline BufferWidget *bufferWidget() const { return _bufferWidget; }
78     inline SystemTray *systemTray() const { return _systemTray; }
79
80     bool event(QEvent *event);
81
82     static void flagRemoteCoreOnly(QObject *object) { object->setProperty("REMOTE_CORE_ONLY", true); }
83     static bool isRemoteCoreOnly(QObject *object) { return object->property("REMOTE_CORE_ONLY").toBool(); }
84
85     void saveStateToSettings(UiSettings &);
86     void restoreStateFromSettings(UiSettings &);
87
88 public slots:
89     void showStatusBarMessage(const QString &message);
90     void hideCurrentBuffer();
91     void nextBufferView();     //!< Activate the next bufferview
92     void previousBufferView(); //!< Activate the previous bufferview
93     void nextBuffer();
94     void previousBuffer();
95
96     //! Quit application
97     void quit();
98
99 protected:
100     void closeEvent(QCloseEvent *event);
101     void moveEvent(QMoveEvent *event);
102     void resizeEvent(QResizeEvent *event);
103
104 protected slots:
105     void connectedToCore();
106     void setConnectedState();
107     void disconnectedFromCore();
108     void setDisconnectedState();
109
110 private slots:
111     void addBufferView(int bufferViewConfigId);
112     void awayLogDestroyed();
113     void removeBufferView(int bufferViewConfigId);
114     void currentBufferChanged(BufferId);
115     void messagesInserted(const QModelIndex &parent, int start, int end);
116     void showAboutDlg();
117     void showChannelList(NetworkId netId = NetworkId());
118     void showCoreConnectionDlg();
119     void showCoreConfigWizard(const QVariantList &);
120     void showCoreInfoDlg();
121     void showAwayLog();
122     void showSettingsDlg();
123     void showNotificationsDlg();
124     void showIgnoreList(QString newRule = QString());
125     void showShortcutsDlg();
126     void showNewTransferDlg(const ClientTransfer *transfer);
127     void onFullScreenToggled();
128
129     void handleCoreConnectionError(const QString &errorMsg);
130     void userAuthenticationRequired(CoreAccount *, bool *valid, const QString &errorMessage);
131     void handleNoSslInClient(bool *accepted);
132     void handleNoSslInCore(bool *accepted);
133 #ifdef HAVE_SSL
134     void handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently);
135 #endif
136
137     void on_actionConfigureNetworks_triggered();
138     void on_actionConfigureViews_triggered();
139     void on_actionLockLayout_toggled(bool lock);
140     void on_jumpHotBuffer_triggered();
141     void on_actionDebugNetworkModel_triggered();
142     void on_actionDebugBufferViewOverlay_triggered();
143     void on_actionDebugMessageModel_triggered();
144     void on_actionDebugHotList_triggered();
145     void on_actionDebugLog_triggered();
146
147     void bindJumpKey();
148     void onJumpKey();
149
150     void clientNetworkCreated(NetworkId);
151     void clientNetworkRemoved(NetworkId);
152     void clientNetworkUpdated();
153     void connectOrDisconnectFromNet();
154
155     void saveMenuBarStatus(bool enabled);
156     void saveStatusBarStatus(bool enabled);
157     void saveMainToolBarStatus(bool enabled);
158
159     void loadLayout();
160     void saveLayout();
161
162     void bufferViewToggled(bool enabled);
163     void bufferViewVisibilityChanged(bool visible);
164     void changeActiveBufferView(bool backwards);
165     void changeActiveBufferView(int bufferViewId);
166
167 signals:
168     void connectToCore(const QVariantMap &connInfo);
169     void disconnectFromCore();
170
171 private:
172 #ifdef HAVE_KDE4
173     KHelpMenu *_kHelpMenu;
174 #endif
175
176     MsgProcessorStatusWidget *_msgProcessorStatusWidget;
177     CoreConnectionStatusWidget *_coreConnectionStatusWidget;
178     SystemTray *_systemTray;
179
180     TitleSetter _titleSetter;
181
182     void setupActions();
183     void setupBufferWidget();
184     void setupMenus();
185     void setupNickWidget();
186     void setupChatMonitor();
187     void setupInputWidget();
188     void setupTopicWidget();
189     void setupViewMenuTail();
190     void setupStatusBar();
191     void setupSystray();
192     void setupTitleSetter();
193     void setupToolBars();
194     void setupHotList();
195
196     void updateIcon();
197     void enableMenus();
198
199     QList<BufferViewDock *> _bufferViews;
200     BufferWidget *_bufferWidget;
201     NickListWidget *_nickListWidget;
202     InputWidget *_inputWidget;
203     ChatMonitorView *_chatMonitorView;
204     TopicWidget *_topicWidget;
205
206     QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu;
207     QMenu *_toolbarMenu;
208     QToolBar *_mainToolBar, *_chatViewToolBar, *_nickToolBar;
209
210     QWidget *_awayLog;
211
212     bool _layoutLoaded;
213
214     QSize _normalSize; //!< Size of the non-maximized window
215     QPoint _normalPos; //!< Position of the non-maximized window
216
217     BufferHotListFilter *_bufferHotList;
218     QHash<int, BufferId> _jumpKeyMap;
219     int _activeBufferViewIndex;
220
221     friend class QtUi;
222 };
223
224
225 #endif