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