Naming++
[quassel.git] / src / qtui / qtui.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef QTUI_H
22 #define QTUI_H
23
24 #include "quasselui.h"
25
26 #include "abstractnotificationbackend.h"
27
28 class ActionCollection;
29 class MainWin;
30 class MessageModel;
31 class QtUiMessageProcessor;
32 class QtUiStyle;
33
34 //! This class encapsulates Quassel's Qt-based GUI.
35 /** This is basically a wrapper around MainWin, which is necessary because we cannot derive MainWin
36  *  from both QMainWindow and AbstractUi (because of multiple inheritance of QObject).
37  */
38 class QtUi : public AbstractUi {
39   Q_OBJECT
40
41 public:
42   QtUi();
43   ~QtUi();
44
45   MessageModel *createMessageModel(QObject *parent);
46   AbstractMessageProcessor *createMessageProcessor(QObject *parent);
47
48   inline static QtUiStyle *style();
49   inline static MainWin *mainWindow();
50
51   //! Access global ActionCollections.
52   /** These ActionCollections are associated with the main window, i.e. they contain global
53    *  actions (and thus, shortcuts). Widgets providing application-wide shortcuts should
54    *  create appropriate Action objects using QtUi::actionCollection(cat)->add\<Action\>().
55    *  @param category The category (default: "General")
56    */
57   static ActionCollection *actionCollection(const QString &category = "General");
58   inline AbstractActionProvider *actionProvider() const;
59
60   /* Notifications */
61
62   static void registerNotificationBackend(AbstractNotificationBackend *);
63   static void unregisterNotificationBackend(AbstractNotificationBackend *);
64   static void unregisterAllNotificationBackends();
65   static const QList<AbstractNotificationBackend *> &notificationBackends();
66   static uint invokeNotification(BufferId bufId, const QString &sender, const QString &text);
67   static void closeNotification(uint notificationId);
68   static void closeNotifications(BufferId bufferId = BufferId());
69   static const QList<AbstractNotificationBackend::Notification> &activeNotifications();
70
71 public slots:
72   void init();
73
74 protected slots:
75   void connectedToCore();
76   void disconnectedFromCore();
77
78 private:
79   AbstractActionProvider *_actionProvider;
80
81   static MainWin *_mainWin;
82   static QHash<QString, ActionCollection *> _actionCollections;
83   static QtUiStyle *_style;
84   static QList<AbstractNotificationBackend *> _notificationBackends;
85   static QList<AbstractNotificationBackend::Notification> _notifications;
86 };
87
88 QtUiStyle *QtUi::style() { return _style; }
89 MainWin *QtUi::mainWindow() { return _mainWin; }
90 AbstractActionProvider *QtUi::actionProvider() const { return _actionProvider; }
91
92 #endif