qtui: Fix icon loading and improve icon theme support
[quassel.git] / src / qtui / qtui.h
index bbe31f7..0d13e64 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
-#ifndef _QTUI_H_
-#define _QTUI_H_
+#pragma once
 
+#include <memory>
+#include <tuple>
+#include <vector>
+
+#include <QStringList>
+
+#if QT_VERSION >= 0x050000
+#  include <QTemporaryDir>
+#endif
+
+#include "abstractnotificationbackend.h"
+#include "graphicalui.h"
 #include "qtuistyle.h"
-#include "quasselui.h"
 
 class MainWin;
 class MessageModel;
+class QtUiMessageProcessor;
 
 //! This class encapsulates Quassel's Qt-based GUI.
 /** This is basically a wrapper around MainWin, which is necessary because we cannot derive MainWin
  *  from both QMainWindow and AbstractUi (because of multiple inheritance of QObject).
  */
-class QtUi : public AbstractUi {
-  Q_OBJECT
+class QtUi : public GraphicalUi
+{
+    Q_OBJECT
 
-  public:
+public:
     QtUi();
     ~QtUi();
-    //void init();
-    MessageModel *createMessageModel(QObject *parent = 0);
-    AbstractUiMsg *layoutMsg(const Message &);
 
-    static QtUiStyle *style();
+    MessageModel *createMessageModel(QObject *parent) override;
+    AbstractMessageProcessor *createMessageProcessor(QObject *parent) override;
 
-  public slots:
-    void init();
+    inline static QtUi *instance();
+    inline static QtUiStyle *style();
+    inline static MainWin *mainWindow();
 
-  protected slots:
-    void connectedToCore();
-    void disconnectedFromCore();
+    static bool haveSystemTray();
 
-  private:
-    MainWin *mainWin;
-    static QtUiStyle *_style;
-};
+    /* Notifications */
+
+    static void registerNotificationBackend(AbstractNotificationBackend *);
+    static void unregisterNotificationBackend(AbstractNotificationBackend *);
+    static void unregisterAllNotificationBackends();
+    static const QList<AbstractNotificationBackend *> &notificationBackends();
+    static const QList<AbstractNotificationBackend::Notification> &activeNotifications();
+
+    /**
+     * Determine available fallback icon themes.
+     *
+     * @returns The list of supported fallback themes (Breeze (Dark), Oxygen) that are available on the system
+     */
+    std::vector<std::pair<QString, QString>> availableIconThemes() const;
+
+public slots:
+    void init() override;
+
+    uint invokeNotification(BufferId bufId, AbstractNotificationBackend::NotificationType type, const QString &sender, const QString &text);
+    void closeNotification(uint notificationId);
+    void closeNotifications(BufferId bufferId = BufferId());
+
+    /**
+     * Refresh the current icon theme.
+     *
+     * @note This will not detect changes in the system icon theme, so if that changes, a client restart
+     *       is required for icons to work correctly.
+     */
+    void refreshIconTheme();
 
+protected slots:
+    void connectedToCore() override;
+    void disconnectedFromCore() override;
+    void notificationActivated(uint notificationId);
+    void bufferMarkedAsRead(BufferId);
+
+protected:
+    void minimizeRestore(bool show) override;
+    bool isHidingMainWidgetAllowed() const override;
+
+private slots:
+    void useSystemTrayChanged(const QVariant &);
+
+private:
+    /**
+     * Sets up icon theme handling.
+     */
+    void setupIconTheme();
+
+private:
+    static QtUi *_instance;
+    static MainWin *_mainWin;
+    static QList<AbstractNotificationBackend *> _notificationBackends;
+    static QList<AbstractNotificationBackend::Notification> _notifications;
+
+    QString _systemIconTheme;
+
+#if QT_VERSION >= 0x050000
+    std::unique_ptr<QTemporaryDir> _dummyThemeDir;
 #endif
+
+    bool _useSystemTray;
+};
+
+
+QtUi *QtUi::instance() { return _instance ? _instance : new QtUi(); }
+QtUiStyle *QtUi::style() { return qobject_cast<QtUiStyle *>(uiStyle()); }
+MainWin *QtUi::mainWindow() { return _mainWin; }