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