Reload stylesheet after changing it in the AppearanceSettingsPage
[quassel.git] / src / uisupport / graphicalui.cpp
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 #include "graphicalui.h"
22
23 #include "actioncollection.h"
24 #include "contextmenuactionprovider.h"
25
26 QWidget *GraphicalUi::_mainWidget = 0;
27 QHash<QString, ActionCollection *> GraphicalUi::_actionCollections;
28 ContextMenuActionProvider *GraphicalUi::_contextMenuActionProvider = 0;
29 ToolBarActionProvider *GraphicalUi::_toolBarActionProvider = 0;
30
31 GraphicalUi::GraphicalUi(QObject *parent) : AbstractUi(parent)
32 {
33
34 }
35
36 ActionCollection *GraphicalUi::actionCollection(const QString &category) {
37   if(_actionCollections.contains(category))
38     return _actionCollections.value(category);
39   ActionCollection *coll = new ActionCollection(_mainWidget);
40   if(_mainWidget)
41     coll->addAssociatedWidget(_mainWidget);
42   _actionCollections.insert(category, coll);
43   return coll;
44 }
45
46 void GraphicalUi::setMainWidget(QWidget *widget) {
47   _mainWidget = widget;
48 }
49
50 void GraphicalUi::setContextMenuActionProvider(ContextMenuActionProvider *provider) {
51   _contextMenuActionProvider = provider;
52 }
53
54 void GraphicalUi::setToolBarActionProvider(ToolBarActionProvider *provider) {
55   _toolBarActionProvider = provider;
56 }