The Handler for the RTS-Like Keybindings is now a eventFilter aswell.
[quassel.git] / src / qtui / mainwin.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 #include "ui_mainwin.h"
25
26 #include "qtui.h"
27 #include "bufferviewfilter.h"
28
29 #include <QSystemTrayIcon>
30
31 class ServerListDlg;
32 class CoreConnectDlg;
33 class Buffer;
34 class SettingsDlg;
35 class QtUi;
36 class Message;
37 class NickListWidget;
38 class DebugConsole;
39
40 //!\brief The main window of Quassel's QtUi.
41 class MainWin : public QMainWindow {
42   Q_OBJECT
43
44   public:
45     MainWin(QtUi *gui, QWidget *parent = 0);
46     virtual ~MainWin();
47
48     void init();
49     QDockWidget *addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList<NetworkId> &);
50
51     AbstractUiMsg *layoutMsg(const Message &);
52
53   protected:
54     void closeEvent(QCloseEvent *event);
55     virtual void changeEvent(QEvent *event);
56
57   protected slots:
58     void connectedToCore();
59     void disconnectedFromCore();
60     void systrayActivated( QSystemTrayIcon::ActivationReason );
61
62   private slots:
63     void showSettingsDlg();
64     void showNetworkDlg();
65     void showAboutDlg();
66     void showDebugConsole();
67
68     void showCoreConnectionDlg(bool autoConnect = false);
69     void coreConnectionDlgFinished(int result);
70
71     void clientNetworkCreated(NetworkId);
72     void clientNetworkRemoved(NetworkId);
73     void clientNetworkUpdated();
74     void connectOrDisconnectFromNet();
75
76   signals:
77     void connectToCore(const QVariantMap &connInfo);
78     void disconnectFromCore();
79     void requestBacklog(BufferInfo, QVariant, QVariant);
80
81   private:
82     Ui::MainWin ui;
83     QtUi *gui;
84
85     QMenu *systrayMenu;
86
87     void setupMenus();
88     void setupViews();
89     void setupNickWidget();
90     void setupChatMonitor();
91     void setupInputWidget();
92     void setupTopicWidget();
93     void setupSystray();
94
95     void setupSettingsDlg();
96
97     void toggleVisibility();
98
99     void enableMenus();
100
101     QSystemTrayIcon *systray;
102
103     CoreConnectDlg *coreConnectDlg;
104     SettingsDlg *settingsDlg;
105     DebugConsole *debugConsole;
106
107     BufferId currentBuffer;
108     QString currentProfile;
109
110     QList<QDockWidget *> netViews;
111     QDockWidget *nickDock;
112     NickListWidget *nickListWidget;
113
114     QAction *actionEditNetworks;
115     QList<QAction *> networkActions;
116
117     friend class QtUi;
118 };
119
120 #endif