Adding .desktop file to make packagers moar happy...
[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     void changeTopic(const QString &topic);
77
78   signals:
79     void connectToCore(const QVariantMap &connInfo);
80     void disconnectFromCore();
81     void requestBacklog(BufferInfo, QVariant, QVariant);
82
83   private:
84     Ui::MainWin ui;
85     QtUi *gui;
86
87     QMenu *systrayMenu;
88
89     void setupMenus();
90     void setupViews();
91     void setupNickWidget();
92     void setupChatMonitor();
93     void setupInputWidget();
94     void setupTopicWidget();
95     void setupSystray();
96
97     void setupSettingsDlg();
98
99     void toggleVisibility();
100
101     void enableMenus();
102
103     QSystemTrayIcon *systray;
104
105     CoreConnectDlg *coreConnectDlg;
106     SettingsDlg *settingsDlg;
107     DebugConsole *debugConsole;
108
109     BufferId currentBuffer;
110     QString currentProfile;
111
112     QList<QDockWidget *> netViews;
113     QDockWidget *nickDock;
114     NickListWidget *nickListWidget;
115
116     QAction *actionEditNetworks;
117     QList<QAction *> networkActions;
118
119     friend class QtUi;
120 };
121
122 #endif