63c0ca06134982f47d5275ec186deffe81691137
[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 BufferViewDock;
46 class BufferWidget;
47 class InputWidget;
48 class MsgProcessorStatusWidget;
49 class NickListWidget;
50 class SystemTray;
51
52 class QMenu;
53 class QLabel;
54 class QToolBar;
55
56 class KHelpMenu;
57
58 //!\brief The main window of Quassel's QtUi.
59 class MainWin
60 #ifdef HAVE_KDE
61 : public KMainWindow {
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
76     inline SystemTray *systemTray() const;
77
78     bool event(QEvent *event);
79
80     static void flagRemoteCoreOnly(QObject *object) { object->setProperty("REMOTE_CORE_ONLY", true); }
81     static bool isRemoteCoreOnly(QObject *object) { return object->property("REMOTE_CORE_ONLY").toBool(); }
82
83     void saveStateToSettings(UiSettings &);
84     void restoreStateFromSettings(UiSettings &);
85
86   public slots:
87     void showStatusBarMessage(const QString &message);
88
89     void toggleMinimizedToTray();
90
91     //! Bring window to front and focus it
92     void forceActivated();
93
94     //! Quit application
95     void quit();
96
97   protected:
98     void closeEvent(QCloseEvent *event);
99     void changeEvent(QEvent *event);
100     void moveEvent(QMoveEvent *event);
101     void resizeEvent(QResizeEvent *event);
102
103   protected slots:
104     void connectedToCore();
105     void setConnectedState();
106     void updateLagIndicator(int lag = -1);
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 messagesInserted(const QModelIndex &parent, int start, int end);
115     void showAboutDlg();
116     void showChannelList(NetworkId netId = NetworkId());
117     void startInternalCore();
118     void showCoreConnectionDlg(bool autoConnect = false);
119     void showCoreInfoDlg();
120     void showAwayLog();
121     void showSettingsDlg();
122     void showNotificationsDlg();
123 #ifdef HAVE_KDE
124     void showShortcutsDlg();
125 #endif
126     void on_actionConfigureNetworks_triggered();
127     void on_actionConfigureViews_triggered();
128     void on_actionLockLayout_toggled(bool lock);
129     void on_jumpHotBuffer_triggered();
130     void on_actionDebugNetworkModel_triggered();
131     void on_actionDebugBufferViewOverlay_triggered();
132     void on_actionDebugMessageModel_triggered();
133     void on_actionDebugHotList_triggered();
134     void on_actionDebugLog_triggered();
135
136     void clientNetworkCreated(NetworkId);
137     void clientNetworkRemoved(NetworkId);
138     void clientNetworkUpdated();
139     void connectOrDisconnectFromNet();
140
141     void saveMenuBarStatus(bool enabled);
142     void saveStatusBarStatus(bool enabled);
143
144     void loadLayout();
145     void saveLayout();
146
147     void bufferViewToggled(bool enabled);
148
149   signals:
150     void connectToCore(const QVariantMap &connInfo);
151     void disconnectFromCore();
152
153   private:
154 #ifdef HAVE_KDE
155     KHelpMenu *_kHelpMenu;
156 #endif
157
158     QLabel *coreLagLabel;
159     QLabel *sslLabel;
160     MsgProcessorStatusWidget *msgProcessorStatusWidget;
161
162     TitleSetter _titleSetter;
163
164     void setupActions();
165     void setupBufferWidget();
166     void setupMenus();
167     void setupNickWidget();
168     void setupChatMonitor();
169     void setupInputWidget();
170     void setupTopicWidget();
171     void setupStatusBar();
172     void setupSystray();
173     void setupTitleSetter();
174     void setupToolBars();
175     void setupHotList();
176
177     void updateIcon();
178     void enableMenus();
179
180     void hideToTray();
181
182     SystemTray *_systemTray;
183
184     QList<BufferViewDock *> _bufferViews;
185     BufferWidget *_bufferWidget;
186     NickListWidget *_nickListWidget;
187     InputWidget *_inputWidget;
188
189     QMenu *_fileMenu, *_networksMenu, *_viewMenu, *_bufferViewsMenu, *_settingsMenu, *_helpMenu, *_helpDebugMenu;
190     QMenu *_toolbarMenu;
191     QToolBar *_mainToolBar, *_chatViewToolBar, *_nickToolBar;
192
193     QWidget *_awayLog;
194
195     QSize _normalSize; //!< Size of the non-maximized window
196     QPoint _normalPos; //!< Position of the non-maximized window
197
198 #ifdef Q_WS_WIN
199     DWORD dwTickCount;
200 #endif
201
202     BufferHotListFilter *_bufferHotList;
203
204     friend class QtUi;
205 };
206
207 SystemTray *MainWin::systemTray() const {
208   return _systemTray;
209 }
210
211 #endif