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