X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fqtui.h;h=7ef22e0dc6fe36b1605796d6963003e043da6ecf;hp=db06409c3651306bae5c7c3cd4f982f8ecc831f2;hb=9ea27e456f4163c37118f6dc34188809fc37d6d9;hpb=011d2825dd89d2f93a72a49748581b16cc9bdb50 diff --git a/src/qtui/qtui.h b/src/qtui/qtui.h index db06409c..7ef22e0d 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,11 +21,11 @@ #ifndef QTUI_H #define QTUI_H -#include "quasselui.h" +#include "graphicalui.h" #include "abstractnotificationbackend.h" +#include "mainwin.h" -class ActionCollection; class MainWin; class MessageModel; class QtUiMessageProcessor; @@ -35,7 +35,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: @@ -45,43 +45,38 @@ 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 - * actions (and thus, shortcuts). Widgets providing application-wide shortcuts should - * create appropriate Action objects using QtUi::actionCollection()->add\(). - */ - inline static ActionCollection *actionCollection(); - /* Notifications */ static void registerNotificationBackend(AbstractNotificationBackend *); static void unregisterNotificationBackend(AbstractNotificationBackend *); static void unregisterAllNotificationBackends(); - static const QSet ¬ificationBackends(); - static uint invokeNotification(BufferId bufId, const QString &sender, const QString &text); + static const QList ¬ificationBackends(); + static uint invokeNotification(BufferId bufId, AbstractNotificationBackend::NotificationType type, 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: - static MainWin *_mainWin; - static ActionCollection *_actionCollection; + static QPointer _instance; + static QPointer _mainWin; static QtUiStyle *_style; - static QSet _notificationBackends; + 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; }