X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fqtui.h;h=cdee4e7d5a61dd99d9782eaf876f6184ff037d68;hp=9ac3b97b4519d8f7b427e68383f60e48149b729f;hb=6e85a37d1b7d3501f0fd7cc94fd0fcd4ba0c6cc4;hpb=ba934ceb1bfe30d01d5fb5c072c3197f8080be04 diff --git a/src/qtui/qtui.h b/src/qtui/qtui.h index 9ac3b97b..cdee4e7d 100644 --- a/src/qtui/qtui.h +++ b/src/qtui/qtui.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-09 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -21,7 +21,10 @@ #ifndef QTUI_H #define QTUI_H -#include "quasselui.h" +#include "graphicalui.h" + +#include "abstractnotificationbackend.h" +#include "mainwin.h" class ActionCollection; class MainWin; @@ -33,7 +36,7 @@ class QtUiStyle; /** 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 { +class QtUi : public GraphicalUi { Q_OBJECT public: @@ -43,29 +46,48 @@ public: MessageModel *createMessageModel(QObject *parent); AbstractMessageProcessor *createMessageProcessor(QObject *parent); + inline static QtUi *instance(); 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 + //! Access global ActionCollections. + /** These ActionCollections are associated with the main window, i.e. they contain global * actions (and thus, shortcuts). Widgets providing application-wide shortcuts should - * create appropriate Action objects using QtUi::actionCollection()->add\(). + * create appropriate Action objects using QtUi::actionCollection(cat)->add\(). + * @param category The category (default: "General") */ - inline static ActionCollection *actionCollection(); + static ActionCollection *actionCollection(const QString &category = "General"); + + /* Notifications */ + + static void registerNotificationBackend(AbstractNotificationBackend *); + static void unregisterNotificationBackend(AbstractNotificationBackend *); + static void unregisterAllNotificationBackends(); + static const QList ¬ificationBackends(); + 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 &activeNotifications(); public slots: - void init(); + virtual void init(); protected slots: void connectedToCore(); void disconnectedFromCore(); + void notificationActivated(uint notificationId); private: - MainWin *mainWin; - static ActionCollection *_actionCollection; + static QPointer _instance; + static QPointer _mainWin; + static QHash _actionCollections; static QtUiStyle *_style; + static QList _notificationBackends; + static QList _notifications; }; -ActionCollection *QtUi::actionCollection() { return _actionCollection; } +QtUi *QtUi::instance() { return _instance ? _instance.data() : new QtUi(); } QtUiStyle *QtUi::style() { return _style; } +MainWin *QtUi::mainWindow() { return _mainWin; } #endif