1 /***************************************************************************
2 * Copyright (C) 2005-2015 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
24 # include <KMainWindow>
25 #elif defined HAVE_KF5
26 # include <KXmlGui/KMainWindow>
28 # include <QMainWindow>
32 #include "titlesetter.h"
33 #include "uisettings.h"
35 class ActionCollection;
36 class BufferHotListFilter;
38 class BufferViewConfig;
39 class ClientBufferViewConfig;
42 class CoreConnectionStatusWidget;
46 class MsgProcessorStatusWidget;
49 class ChatMonitorView;
58 //!\brief The main window of Quassel's QtUi.
61 : public KMainWindow {
63 : public QMainWindow {
68 MainWin(QWidget *parent = 0);
73 void addBufferView(ClientBufferViewConfig *config);
74 BufferView *allBuffersView() const;
75 BufferView *activeBufferView() const;
77 inline BufferWidget *bufferWidget() const { return _bufferWidget; }
78 inline SystemTray *systemTray() const { return _systemTray; }
80 bool event(QEvent *event);
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(); }
85 void saveStateToSettings(UiSettings &);
86 void restoreStateFromSettings(UiSettings &);
89 void showStatusBarMessage(const QString &message);
90 void hideCurrentBuffer();
91 void nextBufferView(); //!< Activate the next bufferview
92 void previousBufferView(); //!< Activate the previous bufferview
94 void previousBuffer();
100 void closeEvent(QCloseEvent *event);
101 void moveEvent(QMoveEvent *event);
102 void resizeEvent(QResizeEvent *event);
105 void connectedToCore();
106 void setConnectedState();
107 void disconnectedFromCore();
108 void setDisconnectedState();
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);
117 void showChannelList(NetworkId netId = NetworkId());
118 void showCoreConnectionDlg();
119 void showCoreConfigWizard(const QVariantList &);
120 void showCoreInfoDlg();
122 void showSettingsDlg();
123 void showNotificationsDlg();
124 void showIgnoreList(QString newRule = QString());
125 void showShortcutsDlg();
126 void showPasswordChangeDlg();
127 void showNewTransferDlg(const ClientTransfer *transfer);
128 void onFullScreenToggled();
130 void handleCoreConnectionError(const QString &errorMsg);
131 void userAuthenticationRequired(CoreAccount *, bool *valid, const QString &errorMessage);
132 void handleNoSslInClient(bool *accepted);
133 void handleNoSslInCore(bool *accepted);
135 void handleSslErrors(const QSslSocket *socket, bool *accepted, bool *permanently);
138 void on_actionConfigureNetworks_triggered();
139 void on_actionConfigureViews_triggered();
140 void on_actionLockLayout_toggled(bool lock);
141 void on_jumpHotBuffer_triggered();
142 void on_actionDebugNetworkModel_triggered();
143 void on_actionDebugBufferViewOverlay_triggered();
144 void on_actionDebugMessageModel_triggered();
145 void on_actionDebugHotList_triggered();
146 void on_actionDebugLog_triggered();
151 void clientNetworkCreated(NetworkId);
152 void clientNetworkRemoved(NetworkId);
153 void clientNetworkUpdated();
154 void connectOrDisconnectFromNet();
156 void saveMenuBarStatus(bool enabled);
157 void saveStatusBarStatus(bool enabled);
158 void saveMainToolBarStatus(bool enabled);
163 void bufferViewToggled(bool enabled);
164 void bufferViewVisibilityChanged(bool visible);
165 void changeActiveBufferView(bool backwards);
166 void changeActiveBufferView(int bufferViewId);
169 void connectToCore(const QVariantMap &connInfo);
170 void disconnectFromCore();
174 KHelpMenu *_kHelpMenu;
177 MsgProcessorStatusWidget *_msgProcessorStatusWidget;
178 CoreConnectionStatusWidget *_coreConnectionStatusWidget;
179 SystemTray *_systemTray;
181 TitleSetter _titleSetter;
184 void setupBufferWidget();
186 void setupNickWidget();
187 void setupChatMonitor();
188 void setupInputWidget();
189 void setupTopicWidget();
190 void setupViewMenuTail();
191 void setupStatusBar();
193 void setupTitleSetter();
194 void setupToolBars();
200 QList<BufferViewDock *> _bufferViews;
201 BufferWidget *_bufferWidget;
202 NickListWidget *_nickListWidget;
203 InputWidget *_inputWidget;
204 ChatMonitorView *_chatMonitorView;
205 TopicWidget *_topicWidget;
207 QAction *_fullScreenAction;
208 QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu;
210 QToolBar *_mainToolBar, *_chatViewToolBar, *_nickToolBar;
216 QSize _normalSize; //!< Size of the non-maximized window
217 QPoint _normalPos; //!< Position of the non-maximized window
219 BufferHotListFilter *_bufferHotList;
220 QHash<int, BufferId> _jumpKeyMap;
221 int _activeBufferViewIndex;