Fixes #682 - Core crashes on client connection
[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
30 class GraphicalUi : public AbstractUi {
31   Q_OBJECT
32
33 public:
34   GraphicalUi(QObject *parent = 0);
35
36   //! Access global ActionCollections.
37   /** These ActionCollections are associated with the main window, i.e. they contain global
38   *  actions (and thus, shortcuts). Widgets providing application-wide shortcuts should
39   *  create appropriate Action objects using GraphicalUi::actionCollection(cat)->add\<Action\>().
40   *  @param category The category (default: "General")
41   */
42   static ActionCollection *actionCollection(const QString &category = "General");
43
44   inline static ContextMenuActionProvider *contextMenuActionProvider();
45   inline static ToolBarActionProvider *toolBarActionProvider();
46
47 protected:
48   //! This is the widget we associate global actions with, typically the main window
49   void setMainWidget(QWidget *);
50
51   void setContextMenuActionProvider(ContextMenuActionProvider *);
52   void setToolBarActionProvider(ToolBarActionProvider *);
53
54 private:
55   static QWidget *_mainWidget;
56   static QHash<QString, ActionCollection *> _actionCollections;
57   static ContextMenuActionProvider *_contextMenuActionProvider;
58   static ToolBarActionProvider *_toolBarActionProvider;
59
60 };
61
62 ContextMenuActionProvider *GraphicalUi::contextMenuActionProvider() {
63   return _contextMenuActionProvider;
64 }
65
66 ToolBarActionProvider *GraphicalUi::toolBarActionProvider() {
67   return _toolBarActionProvider;
68 }
69
70 #endif