Final polisihing for KDE4:
[kdemultimedia.git] / kmix / kmixtoolbox.h
blob8c4196f3ef69711f39e4bbfcd1df9fc87456b7eb
1 //-*-C++-*-
2 /*
3 * KMix -- KDE's full featured mini mixer
5 * Copyright Christian Esken <esken@kde.org>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
17 * You should have received a copy of the GNU Library General Public
18 * License along with this program; if not, write to the Free
19 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef KMIXTOOLBOX_H
22 #define KMIXTOOLBOX_H
24 #include "qlist.h"
25 #include "qwidget.h"
27 class ViewBase;
29 class KConfig;
31 /**
32 * This toolbox contains various static methods that are shared throughout KMix.
33 * The reason, why it is not put in a common base class is, that the classes are
34 * very different and cannot be changed (e.g. KPanelApplet) without major headache.
37 class KMixToolBox {
38 public:
39 static void setIcons (QList<QWidget *> &mdws, bool on );
40 static void setLabels (QList<QWidget *> &mdws, bool on );
41 static void setTicks (QList<QWidget *> &mdws, bool on );
42 static void loadView(ViewBase *view, KConfig *config);
43 static void saveView(ViewBase *view, KConfig *config);
44 static void loadKeys(ViewBase *view, KConfig *config);
45 static void saveKeys(ViewBase *view, KConfig *config);
47 static void notification(const char *notificationName, const QString &text, const QStringList &actions = QStringList(), QObject *receiver = 0, const char *actionSlot = 0);
50 #endif