Make sure NickView::customEvent() has a valid model
[quassel.git] / src / uisupport / graphicalui.h
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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 GRAPHICALUI_H_
22 #define GRAPHICALUI_H_
23
24 #include "abstractui.h"
25
26 class ActionCollection;
27 class ContextMenuActionProvider;
28 class ToolBarActionProvider;
29 class UiStyle;
30
31 class GraphicalUi : public AbstractUi {
32   Q_OBJECT
33
34 public:
35   GraphicalUi(QObject *parent = 0);
36
37   //! Access global ActionCollections.
38   /** These ActionCollections are associated with the main window, i.e. they contain global
39   *  actions (and thus, shortcuts). Widgets providing application-wide shortcuts should
40   *  create appropriate Action objects using GraphicalUi::actionCollection(cat)->add\<Action\>().
41   *  @param category The category (default: "General")
42   */
43   static ActionCollection *actionCollection(const QString &category = "General");
44
45   inline static ContextMenuActionProvider *contextMenuActionProvider();
46   inline static ToolBarActionProvider *toolBarActionProvider();
47   inline static UiStyle *uiStyle();
48
49 protected:
50   //! This is the widget we associate global actions with, typically the main window
51   void setMainWidget(QWidget *);
52
53   void setContextMenuActionProvider(ContextMenuActionProvider *);
54   void setToolBarActionProvider(ToolBarActionProvider *);
55   void setUiStyle(UiStyle *);
56
57 private:
58   static QWidget *_mainWidget;
59   static QHash<QString, ActionCollection *> _actionCollections;
60   static ContextMenuActionProvider *_contextMenuActionProvider;
61   static ToolBarActionProvider *_toolBarActionProvider;
62   static UiStyle *_uiStyle;
63 };
64
65 ContextMenuActionProvider *GraphicalUi::contextMenuActionProvider() {
66   return _contextMenuActionProvider;
67 }
68
69 ToolBarActionProvider *GraphicalUi::toolBarActionProvider() {
70   return _toolBarActionProvider;
71 }
72
73 UiStyle *GraphicalUi::uiStyle() {
74   return _uiStyle;
75 }
76
77 #endif