Revert "Work around MOC ignoring -D options by having dummy stubs"
[quassel.git] / src / qtui / mainwin.h
index 16f1181..b2ea75a 100644 (file)
 #include "ui_mainwin.h"
 
 #include "qtui.h"
-#include "bufferviewfilter.h"
+#include "titlesetter.h"
 
 #include <QSystemTrayIcon>
+#include <QTimer>
 
 class ServerListDlg;
+class ChannelListDlg;
 class CoreConnectDlg;
 class Buffer;
+class BufferViewConfig;
 class SettingsDlg;
 class QtUi;
 class Message;
 class NickListWidget;
 class DebugConsole;
 
+#ifdef HAVE_DBUS
+#  include "desktopnotifications.h"
+#endif
+
 //!\brief The main window of Quassel's QtUi.
 class MainWin : public QMainWindow {
   Q_OBJECT
@@ -46,63 +53,121 @@ class MainWin : public QMainWindow {
     virtual ~MainWin();
 
     void init();
-    QDockWidget *addBufferView(const QString &, QAbstractItemModel *, const BufferViewFilter::Modes &, const QList<NetworkId> &);
+    void addBufferView(BufferViewConfig *config = 0);
+
+    void displayTrayIconMessage(const QString &title, const QString &message);
+
+#ifdef HAVE_DBUS
+    void sendDesktopNotification(const QString &title, const QString &message);
+#endif
+
+    virtual bool event(QEvent *event);
 
-    AbstractUiMsg *layoutMsg(const Message &);
+  public slots:
+    void setTrayIconActivity(bool active = false);
 
   protected:
     void closeEvent(QCloseEvent *event);
+    virtual void changeEvent(QEvent *event);
 
   protected slots:
     void connectedToCore();
+    void setConnectedState();
+    void updateLagIndicator(int lag);
+    void securedConnection();
     void disconnectedFromCore();
+    void setDisconnectedState();
     void systrayActivated( QSystemTrayIcon::ActivationReason );
 
   private slots:
-
-    void showServerList();
+    void addBufferView(int bufferViewConfigId);
+    void removeBufferView(int bufferViewConfigId);
+    void receiveMessage(const Message &msg);
+    void showChannelList(NetworkId netId = NetworkId());
+    void showCoreInfoDlg();
     void showSettingsDlg();
+    void on_actionEditNetworks_triggered();
+    void on_actionManageViews_triggered();
+    void on_actionLockDockPositions_toggled(bool lock);
+    void showAboutDlg();
     void showDebugConsole();
+
     void showCoreConnectionDlg(bool autoConnect = false);
     void coreConnectionDlgFinished(int result);
 
-    void disconnectFromNet();
+    void clientNetworkCreated(NetworkId);
+    void clientNetworkRemoved(NetworkId);
+    void clientNetworkUpdated();
+    void connectOrDisconnectFromNet();
+
+    void changeTopic(const QString &topic);
+    void makeTrayIconBlink();
+    void saveStatusBarStatus(bool enabled);
+
+    void loadLayout();
+    void saveLayout();
+
+#ifdef HAVE_DBUS
+    void desktopNotificationClosed(uint id, uint reason);
+    void desktopNotificationInvoked(uint id, const QString & action);
+#endif
 
   signals:
     void connectToCore(const QVariantMap &connInfo);
     void disconnectFromCore();
-    void disconnectFromNetwork(NetworkId);
     void requestBacklog(BufferInfo, QVariant, QVariant);
 
   private:
     Ui::MainWin ui;
     QtUi *gui;
 
+    QMenu *systrayMenu;
+    QLabel *coreLagLabel;
+    QLabel *sslLabel;
+
+    TitleSetter _titleSetter;
+
     void setupMenus();
     void setupViews();
     void setupNickWidget();
     void setupChatMonitor();
     void setupInputWidget();
     void setupTopicWidget();
-  
+    void setupStatusBar();
+    void setupSystray();
+
     void setupSettingsDlg();
 
+    void toggleVisibility();
+
     void enableMenus();
 
     QSystemTrayIcon *systray;
+    QIcon activeTrayIcon;
+    QIcon onlineTrayIcon;
+    QIcon offlineTrayIcon;
+    bool trayIconActive;
+    QTimer *timer;
 
-    ServerListDlg *serverListDlg;
     CoreConnectDlg *coreConnectDlg;
+    ChannelListDlg *channelListDlg;
     SettingsDlg *settingsDlg;
+    DebugConsole *debugConsole;
 
     BufferId currentBuffer;
     QString currentProfile;
 
-    QList<QDockWidget *> netViews;
-    QDockWidget *nickDock;
+    QList<QDockWidget *> _netViews;
     NickListWidget *nickListWidget;
 
-    DebugConsole *debugConsole;
+    QAction *actionEditNetworks;
+    QList<QAction *> networkActions;
+
+#ifdef HAVE_DBUS
+    org::freedesktop::Notifications *desktopNotifications;
+    quint32 notificationId;
+#endif
+
     friend class QtUi;
 };