50dc496f1f07db5068c091c099c5616a6b205d6a
[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
28 #include <QSystemTrayIcon>
29 #include <QTimer>
30
31 class ServerListDlg;
32 class CoreConnectDlg;
33 class Buffer;
34 class BufferViewConfig;
35 class SettingsDlg;
36 class QtUi;
37 class Message;
38 class NickListWidget;
39 class DebugConsole;
40
41
42 //!\brief The main window of Quassel's QtUi.
43 class MainWin : public QMainWindow {
44   Q_OBJECT
45
46   public:
47     MainWin(QtUi *gui, QWidget *parent = 0);
48     virtual ~MainWin();
49
50     void init();
51     void addBufferView(BufferViewConfig *config = 0);
52
53     AbstractUiMsg *layoutMsg(const Message &);
54     void displayTrayIconMessage(const QString &title, const QString &message);
55
56     virtual bool event(QEvent *event);
57
58   public slots:
59     void setTrayIconActivity(bool active = false);
60
61   protected:
62     void closeEvent(QCloseEvent *event);
63     virtual void changeEvent(QEvent *event);
64
65   protected slots:
66     void connectedToCore();
67     void setConnectedState();
68     void securedConnection();
69     void disconnectedFromCore();
70     void setDisconnectedState();
71     void systrayActivated( QSystemTrayIcon::ActivationReason );
72
73   private slots:
74     void addBufferView(int bufferViewConfigId);
75     void removeBufferView(int bufferViewConfigId);
76     void receiveMessage(const Message &msg);
77     void showSettingsDlg();
78     void showNetworkDlg();
79     void showManageViewsDlg();
80     void showAboutDlg();
81     void showDebugConsole();
82
83     void showCoreConnectionDlg(bool autoConnect = false);
84     void coreConnectionDlgFinished(int result);
85
86     void clientNetworkCreated(NetworkId);
87     void clientNetworkRemoved(NetworkId);
88     void clientNetworkUpdated();
89     void connectOrDisconnectFromNet();
90
91     void changeTopic(const QString &topic);
92     void makeTrayIconBlink();
93     void saveStatusBarStatus(bool enabled);
94
95     void loadLayout();
96   
97   signals:
98     void connectToCore(const QVariantMap &connInfo);
99     void disconnectFromCore();
100     void requestBacklog(BufferInfo, QVariant, QVariant);
101
102   private:
103     Ui::MainWin ui;
104     QtUi *gui;
105
106     QMenu *systrayMenu;
107     QLabel *sslLabel;
108
109     void setupMenus();
110     void setupViews();
111     void setupNickWidget();
112     void setupChatMonitor();
113     void setupInputWidget();
114     void setupTopicWidget();
115     void setupStatusBar();
116     void setupSystray();
117
118     void setupSettingsDlg();
119
120     void toggleVisibility();
121
122     void enableMenus();
123
124     QSystemTrayIcon *systray;
125     QIcon activeTrayIcon;
126     QIcon onlineTrayIcon;
127     QIcon offlineTrayIcon;
128     bool trayIconActive;
129     QTimer *timer;
130
131     CoreConnectDlg *coreConnectDlg;
132     SettingsDlg *settingsDlg;
133     DebugConsole *debugConsole;
134
135     BufferId currentBuffer;
136     QString currentProfile;
137
138     QList<QDockWidget *> _netViews;
139     NickListWidget *nickListWidget;
140
141     QAction *actionEditNetworks;
142     QList<QAction *> networkActions;
143
144     friend class QtUi;
145 };
146
147 #endif