first version of richtext support for input widget - needs a lot of refactoring
[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   inline static QWidget *mainWidget();
49
50   //! Force the main widget to the front and focus it (may not work in all window systems)
51   static void activateMainWidget();
52
53   //! Hide main widget (storing the current desktop if possible)
54   static void hideMainWidget();
55
56 protected:
57   //! This is the widget we associate global actions with, typically the main window
58   void setMainWidget(QWidget *);
59
60   void setContextMenuActionProvider(ContextMenuActionProvider *);
61   void setToolBarActionProvider(ToolBarActionProvider *);
62   void setUiStyle(UiStyle *);
63
64 private:
65   static QWidget *_mainWidget;
66   static QHash<QString, ActionCollection *> _actionCollections;
67   static ContextMenuActionProvider *_contextMenuActionProvider;
68   static ToolBarActionProvider *_toolBarActionProvider;
69   static UiStyle *_uiStyle;
70   static bool _onAllDesktops;
71 };
72
73 ContextMenuActionProvider *GraphicalUi::contextMenuActionProvider() {
74   return _contextMenuActionProvider;
75 }
76
77 ToolBarActionProvider *GraphicalUi::toolBarActionProvider() {
78   return _toolBarActionProvider;
79 }
80
81 UiStyle *GraphicalUi::uiStyle() {
82   return _uiStyle;
83 }
84
85 QWidget *GraphicalUi::mainWidget() {
86   return _mainWidget;
87 }
88
89 #endif