Removing deprecated notification cruft from MainWin
[quassel.git] / src / qtui / qtui.h
index 2c1156f..db06409 100644 (file)
 #ifndef QTUI_H
 #define QTUI_H
 
-#include "qtuistyle.h"
 #include "quasselui.h"
 
+#include "abstractnotificationbackend.h"
+
+class ActionCollection;
 class MainWin;
 class MessageModel;
 class QtUiMessageProcessor;
+class QtUiStyle;
 
 //! This class encapsulates Quassel's Qt-based GUI.
 /** This is basically a wrapper around MainWin, which is necessary because we cannot derive MainWin
@@ -42,7 +45,26 @@ public:
   MessageModel *createMessageModel(QObject *parent);
   AbstractMessageProcessor *createMessageProcessor(QObject *parent);
 
-  inline static QtUiStyle *style() { return _style; }
+  inline static QtUiStyle *style();
+  inline static MainWin *mainWindow();
+
+  //! Access the global ActionCollection.
+  /** This ActionCollection is associated with the main window, i.e. it contains global
+   *  actions (and thus, shortcuts). Widgets providing application-wide shortcuts should
+   *  create appropriate Action objects using QtUi::actionCollection()->add\<Action\>().
+   */
+  inline static ActionCollection *actionCollection();
+
+  /* Notifications */
+
+  static void registerNotificationBackend(AbstractNotificationBackend *);
+  static void unregisterNotificationBackend(AbstractNotificationBackend *);
+  static void unregisterAllNotificationBackends();
+  static const QSet<AbstractNotificationBackend *> &notificationBackends();
+  static uint invokeNotification(BufferId bufId, const QString &sender, const QString &text);
+  static void closeNotification(uint notificationId);
+  static void closeNotifications(BufferId bufferId = BufferId());
+  static const QList<AbstractNotificationBackend::Notification> &activeNotifications();
 
 public slots:
   void init();
@@ -52,8 +74,15 @@ protected slots:
   void disconnectedFromCore();
 
 private:
-  MainWin *mainWin;
+  static MainWin *_mainWin;
+  static ActionCollection *_actionCollection;
   static QtUiStyle *_style;
+  static QSet<AbstractNotificationBackend *> _notificationBackends;
+  static QList<AbstractNotificationBackend::Notification> _notifications;
 };
 
+ActionCollection *QtUi::actionCollection() { return _actionCollection; }
+QtUiStyle *QtUi::style() { return _style; }
+MainWin *QtUi::mainWindow() { return _mainWin; }
+
 #endif