-rw-r--r-- | microkde/kdeui/kcmodule.cpp | 16 | ||||
-rw-r--r-- | microkde/kdeui/kcmodule.h | 11 | ||||
-rw-r--r-- | microkde/kutils/kcmultidialog.cpp | 13 | ||||
-rw-r--r-- | microkde/kutils/kcmultidialog.h | 5 |
4 files changed, 25 insertions, 20 deletions
diff --git a/microkde/kdeui/kcmodule.cpp b/microkde/kdeui/kcmodule.cpp index 915cd0f..f646db3 100644 --- a/microkde/kdeui/kcmodule.cpp +++ b/microkde/kdeui/kcmodule.cpp | |||
@@ -1,106 +1,114 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the KDE libraries | 2 | This file is part of the KDE libraries |
3 | 3 | ||
4 | Copyright (c) 2001 Michael Goffioul <goffioul@imec.be> | 4 | Copyright (c) 2001 Michael Goffioul <goffioul@imec.be> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | 20 | ||
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "kcmodule.h" | 23 | #include "kcmodule.h" |
24 | //US#include <kinstance.h> | 24 | //US#include <kinstance.h> |
25 | #include <kglobal.h> | 25 | #include <kglobal.h> |
26 | #include <klocale.h> | 26 | #include <klocale.h> |
27 | #include <kdebug.h> | 27 | #include <kdebug.h> |
28 | 28 | ||
29 | class KCModulePrivate | 29 | class KCModulePrivate |
30 | { | 30 | { |
31 | public: | 31 | public: |
32 | //US KInstance *_instance; | 32 | //US KInstance *_instance; |
33 | QString _rootOnlyMsg; | 33 | QString _rootOnlyMsg; |
34 | bool _useRootOnlyMsg; | 34 | bool _useRootOnlyMsg; |
35 | bool _hasOwnInstance; | 35 | bool _hasOwnInstance; |
36 | KPrefs* _prefs; | ||
36 | }; | 37 | }; |
37 | 38 | ||
38 | KCModule::KCModule(QWidget *parent, const char *name, const QStringList &) | 39 | KCModule::KCModule(KPrefs* prefs, QWidget *parent, const char *name, const QStringList &) |
39 | : QWidget(parent, name), _btn(Help|Default|Apply) | 40 | : QWidget(parent, name), _btn(Help|Default|Apply) |
40 | { | 41 | { |
41 | kdDebug() << "KCModule " << name << endl; | 42 | kdDebug() << "KCModule " << name << endl; |
42 | d = new KCModulePrivate; | 43 | d = new KCModulePrivate; |
43 | d->_useRootOnlyMsg = true; | 44 | d->_useRootOnlyMsg = true; |
44 | /*US | 45 | d->_prefs = prefs; |
46 | /*US | ||
45 | d->_instance = new KInstance(name); | 47 | d->_instance = new KInstance(name); |
46 | if (name && strlen(name)) { | 48 | if (name && strlen(name)) { |
47 | d->_instance = new KInstance(name); | 49 | d->_instance = new KInstance(name); |
48 | KGlobal::locale()->insertCatalogue(name); | 50 | KGlobal::locale()->insertCatalogue(name); |
49 | } else | 51 | } else |
50 | d->_instance = new KInstance("kcmunnamed"); | 52 | d->_instance = new KInstance("kcmunnamed"); |
51 | */ | 53 | */ |
52 | d->_hasOwnInstance = true; | 54 | d->_hasOwnInstance = true; |
53 | //US KGlobal::setActiveInstance(this->instance()); | 55 | //US KGlobal::setActiveInstance(this->instance()); |
54 | } | 56 | } |
55 | 57 | ||
56 | /*US | 58 | /*US |
57 | KCModule::KCModule(KInstance *instance, QWidget *parent, const QStringList & ) | 59 | KCModule::KCModule(KInstance *instance, QWidget *parent, const QStringList & ) |
58 | : QWidget(parent, instance ? instance->instanceName().data() : 0), _btn(Help|Default|Apply) | 60 | : QWidget(parent, instance ? instance->instanceName().data() : 0), _btn(Help|Default|Apply) |
59 | { | 61 | { |
60 | kdDebug() << "KCModule instance " << (instance ? instance->instanceName().data() : "none") << endl; | 62 | kdDebug() << "KCModule instance " << (instance ? instance->instanceName().data() : "none") << endl; |
61 | d = new KCModulePrivate; | 63 | d = new KCModulePrivate; |
62 | d->_useRootOnlyMsg = true; | 64 | d->_useRootOnlyMsg = true; |
63 | d->_instance = instance; | 65 | d->_instance = instance; |
64 | KGlobal::locale()->insertCatalogue(instance->instanceName()); | 66 | KGlobal::locale()->insertCatalogue(instance->instanceName()); |
65 | d->_hasOwnInstance = false; | 67 | d->_hasOwnInstance = false; |
66 | KGlobal::setActiveInstance(this->instance()); | 68 | KGlobal::setActiveInstance(this->instance()); |
67 | } | 69 | } |
68 | */ | 70 | */ |
69 | KCModule::~KCModule() | 71 | KCModule::~KCModule() |
70 | { | 72 | { |
71 | /*US | 73 | /*US |
72 | if (d->_hasOwnInstance) | 74 | if (d->_hasOwnInstance) |
73 | delete d->_instance; | 75 | delete d->_instance; |
74 | */ | 76 | */ |
75 | delete d; | 77 | delete d; |
76 | } | 78 | } |
77 | 79 | ||
78 | void KCModule::setRootOnlyMsg(const QString& msg) | 80 | void KCModule::setRootOnlyMsg(const QString& msg) |
79 | { | 81 | { |
80 | d->_rootOnlyMsg = msg; | 82 | d->_rootOnlyMsg = msg; |
81 | } | 83 | } |
82 | 84 | ||
83 | QString KCModule::rootOnlyMsg() const | 85 | QString KCModule::rootOnlyMsg() const |
84 | { | 86 | { |
85 | return d->_rootOnlyMsg; | 87 | return d->_rootOnlyMsg; |
86 | } | 88 | } |
87 | 89 | ||
88 | void KCModule::setUseRootOnlyMsg(bool on) | 90 | void KCModule::setUseRootOnlyMsg(bool on) |
89 | { | 91 | { |
90 | d->_useRootOnlyMsg = on; | 92 | d->_useRootOnlyMsg = on; |
91 | } | 93 | } |
92 | 94 | ||
93 | bool KCModule::useRootOnlyMsg() const | 95 | bool KCModule::useRootOnlyMsg() const |
94 | { | 96 | { |
95 | return d->_useRootOnlyMsg; | 97 | return d->_useRootOnlyMsg; |
96 | } | 98 | } |
99 | |||
100 | KPrefs* KCModule::getPreferences() | ||
101 | { | ||
102 | return d->_prefs; | ||
103 | } | ||
104 | |||
97 | /*US | 105 | /*US |
98 | KInstance *KCModule::instance() const | 106 | KInstance *KCModule::instance() const |
99 | { | 107 | { |
100 | return d->_instance; | 108 | return d->_instance; |
101 | } | 109 | } |
102 | */ | 110 | */ |
103 | void KCModule::virtual_hook( int, void* ) | 111 | void KCModule::virtual_hook( int, void* ) |
104 | { /*BASE::virtual_hook( id, data );*/ } | 112 | { /*BASE::virtual_hook( id, data );*/ } |
105 | 113 | ||
106 | //US #include "kcmodule.moc" | 114 | //US #include "kcmodule.moc" |
diff --git a/microkde/kdeui/kcmodule.h b/microkde/kdeui/kcmodule.h index bc020bc..874958c 100644 --- a/microkde/kdeui/kcmodule.h +++ b/microkde/kdeui/kcmodule.h | |||
@@ -1,267 +1,268 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the KDE libraries | 2 | This file is part of the KDE libraries |
3 | 3 | ||
4 | Copyright (c) 1999 Matthias Hoelzer-Kluepfel <hoelzer@kde.org> | 4 | Copyright (c) 1999 Matthias Hoelzer-Kluepfel <hoelzer@kde.org> |
5 | 5 | ||
6 | This library is free software; you can redistribute it and/or | 6 | This library is free software; you can redistribute it and/or |
7 | modify it under the terms of the GNU Library General Public | 7 | modify it under the terms of the GNU Library General Public |
8 | License as published by the Free Software Foundation; either | 8 | License as published by the Free Software Foundation; either |
9 | version 2 of the License, or (at your option) any later version. | 9 | version 2 of the License, or (at your option) any later version. |
10 | 10 | ||
11 | This library is distributed in the hope that it will be useful, | 11 | This library is distributed in the hope that it will be useful, |
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
14 | Library General Public License for more details. | 14 | Library General Public License for more details. |
15 | 15 | ||
16 | You should have received a copy of the GNU Library General Public License | 16 | You should have received a copy of the GNU Library General Public License |
17 | along with this library; see the file COPYING.LIB. If not, write to | 17 | along with this library; see the file COPYING.LIB. If not, write to |
18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 18 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
19 | Boston, MA 02111-1307, USA. | 19 | Boston, MA 02111-1307, USA. |
20 | 20 | ||
21 | */ | 21 | */ |
22 | #ifndef __KCMODULE_H__ | 22 | #ifndef __KCMODULE_H__ |
23 | #define __KCMODULE_H__ | 23 | #define __KCMODULE_H__ |
24 | 24 | ||
25 | #include <qwidget.h> | 25 | #include <qwidget.h> |
26 | #include <qstringlist.h> | 26 | #include <qstringlist.h> |
27 | //USclass KAboutData; | 27 | //USclass KAboutData; |
28 | class KCModulePrivate; | 28 | class KCModulePrivate; |
29 | class KPrefs; | 29 | class KPrefs; |
30 | //US class KInstance; | 30 | //US class KInstance; |
31 | 31 | ||
32 | /** | 32 | /** |
33 | * The base class for control center modules. | 33 | * The base class for control center modules. |
34 | * | 34 | * |
35 | * Starting from KDE 2.0, control center modules are realized as shared | 35 | * Starting from KDE 2.0, control center modules are realized as shared |
36 | * libraries that are loaded into the control center at runtime. | 36 | * libraries that are loaded into the control center at runtime. |
37 | * | 37 | * |
38 | * The module in principle is a simple widget displaying the | 38 | * The module in principle is a simple widget displaying the |
39 | * item to be changed. The module has a very small interface. | 39 | * item to be changed. The module has a very small interface. |
40 | * | 40 | * |
41 | * All the necessary glue logic and the GUI bells and whistles | 41 | * All the necessary glue logic and the GUI bells and whistles |
42 | * are provided by the control center and must not concern | 42 | * are provided by the control center and must not concern |
43 | * the module author. | 43 | * the module author. |
44 | * | 44 | * |
45 | * To write a config module, you have to create a library | 45 | * To write a config module, you have to create a library |
46 | * that contains at one factory function like this: | 46 | * that contains at one factory function like this: |
47 | * | 47 | * |
48 | * <pre> | 48 | * <pre> |
49 | * #include <kgenericfactory.h> | 49 | * #include <kgenericfactory.h> |
50 | * | 50 | * |
51 | * typedef KGenericFactory<YourKCModule, QWidget> YourKCModuleFactory; | 51 | * typedef KGenericFactory<YourKCModule, QWidget> YourKCModuleFactory; |
52 | * K_EXPORT_COMPONENT_FACTORY( yourLibName, YourKCModuleFactory("name_of_the_po_file") ); | 52 | * K_EXPORT_COMPONENT_FACTORY( yourLibName, YourKCModuleFactory("name_of_the_po_file") ); |
53 | * </pre> | 53 | * </pre> |
54 | * | 54 | * |
55 | * The parameter "name_of_the_po_file" has to correspond with the messages target | 55 | * The parameter "name_of_the_po_file" has to correspond with the messages target |
56 | * that you created in your Makefile.am. | 56 | * that you created in your Makefile.am. |
57 | * | 57 | * |
58 | * See kdebase/kcontrol/HOWTO for more detailed documentation. | 58 | * See kdebase/kcontrol/HOWTO for more detailed documentation. |
59 | * | 59 | * |
60 | * @author Matthias Hoelzer-Kluepfel <hoelzer@kde.org> | 60 | * @author Matthias Hoelzer-Kluepfel <hoelzer@kde.org> |
61 | */ | 61 | */ |
62 | 62 | ||
63 | class KCModule : public QWidget | 63 | class KCModule : public QWidget |
64 | { | 64 | { |
65 | Q_OBJECT | 65 | Q_OBJECT |
66 | 66 | ||
67 | public: | 67 | public: |
68 | 68 | ||
69 | /** | 69 | /** |
70 | * An enumeration type for the buttons used by this module. | 70 | * An enumeration type for the buttons used by this module. |
71 | * You should only use Help, Default and Apply. The rest is obsolete. | 71 | * You should only use Help, Default and Apply. The rest is obsolete. |
72 | * | 72 | * |
73 | * @see KCModule::buttons @see KCModule::setButtons | 73 | * @see KCModule::buttons @see KCModule::setButtons |
74 | */ | 74 | */ |
75 | enum Button {Help=1, Default=2, Apply=16, | 75 | enum Button {Help=1, Default=2, Apply=16, |
76 | Reset=4, /* obsolete, do not use! */ | 76 | Reset=4, /* obsolete, do not use! */ |
77 | Cancel=8, /* obsolete, do not use! */ | 77 | Cancel=8, /* obsolete, do not use! */ |
78 | Ok=32, /* obsolete, do not use! */ | 78 | Ok=32, /* obsolete, do not use! */ |
79 | SysDefault=64 /* obsolete, do not use! */ }; | 79 | SysDefault=64 /* obsolete, do not use! */ }; |
80 | 80 | ||
81 | /* | 81 | /* |
82 | * Base class for all KControlModules. | 82 | * Base class for all KControlModules. |
83 | * Make sure you have a QStringList argument in your | 83 | * Make sure you have a QStringList argument in your |
84 | * implementation. | 84 | * implementation. |
85 | */ | 85 | */ |
86 | KCModule(QWidget *parent=0, const char *name=0, const QStringList &args=QStringList() ); | 86 | KCModule(KPrefs* prefs, QWidget *parent=0, const char *name=0, const QStringList &args=QStringList() ); |
87 | 87 | ||
88 | //US KCModule(KInstance *instance, QWidget *parent=0, const QStringList &args=QStringList() ); | 88 | //US KCModule(KInstance *instance, QWidget *parent=0, const QStringList &args=QStringList() ); |
89 | 89 | ||
90 | /* | 90 | /* |
91 | * Destroys the module. | 91 | * Destroys the module. |
92 | */ | 92 | */ |
93 | ~KCModule(); | 93 | ~KCModule(); |
94 | 94 | ||
95 | /** | 95 | /** |
96 | * Load the configuration data into the module. | 96 | * Load the configuration data into the module. |
97 | * | 97 | * |
98 | * The load method sets the user interface elements of the | 98 | * The load method sets the user interface elements of the |
99 | * module to reflect the current settings stored in the | 99 | * module to reflect the current settings stored in the |
100 | * configuration files. | 100 | * configuration files. |
101 | * | 101 | * |
102 | * This method is invoked whenever the module should read its configuration | 102 | * This method is invoked whenever the module should read its configuration |
103 | * (most of the times from a config file) and update the user interface. | 103 | * (most of the times from a config file) and update the user interface. |
104 | * This happens when the user clicks the "Reset" button in the control | 104 | * This happens when the user clicks the "Reset" button in the control |
105 | * center, to undo all of his changes and restore the currently valid | 105 | * center, to undo all of his changes and restore the currently valid |
106 | * settings. NOTE that this is not called after the modules is loaded, | 106 | * settings. NOTE that this is not called after the modules is loaded, |
107 | * so you probably want to call this method in the constructor. | 107 | * so you probably want to call this method in the constructor. |
108 | */ | 108 | */ |
109 | virtual void load(KPrefs* prefs) {}; | 109 | virtual void load() {}; |
110 | 110 | ||
111 | /** | 111 | /** |
112 | * Save the configuration data. | 112 | * Save the configuration data. |
113 | * | 113 | * |
114 | * The save method stores the config information as shown | 114 | * The save method stores the config information as shown |
115 | * in the user interface in the config files. | 115 | * in the user interface in the config files. |
116 | * | 116 | * |
117 | * If necessary, this method also updates the running system, | 117 | * If necessary, this method also updates the running system, |
118 | * e.g. by restarting applications. | 118 | * e.g. by restarting applications. |
119 | * | 119 | * |
120 | * save is called when the user clicks "Apply" or "Ok". | 120 | * save is called when the user clicks "Apply" or "Ok". |
121 | */ | 121 | */ |
122 | virtual void save(KPrefs* prefs) {}; | 122 | virtual void save() {}; |
123 | 123 | ||
124 | /** | 124 | /** |
125 | * Sets the configuration to sensible default values. | 125 | * Sets the configuration to sensible default values. |
126 | * | 126 | * |
127 | * This method is called when the user clicks the "Default" | 127 | * This method is called when the user clicks the "Default" |
128 | * button. It should set the display to useful values. | 128 | * button. It should set the display to useful values. |
129 | */ | 129 | */ |
130 | virtual void defaults(KPrefs* prefs) {}; | 130 | virtual void defaults() {}; |
131 | 131 | ||
132 | /** | 132 | /** |
133 | * Set the configuration to system default values. | 133 | * Set the configuration to system default values. |
134 | * | 134 | * |
135 | * This method is called when the user clicks the "System-Default" | 135 | * This method is called when the user clicks the "System-Default" |
136 | * button. It should set the display to the system default values. | 136 | * button. It should set the display to the system default values. |
137 | * | 137 | * |
138 | * NOTE: The default behaviour is to call defaults(). | 138 | * NOTE: The default behaviour is to call defaults(). |
139 | */ | 139 | */ |
140 | virtual void sysdefaults(KPrefs* prefs) { defaults(prefs); }; | 140 | virtual void sysdefaults() { defaults(); }; |
141 | 141 | ||
142 | /** | 142 | /** |
143 | * Return a quick-help text. | 143 | * Return a quick-help text. |
144 | * | 144 | * |
145 | * This method is called when the module is docked. | 145 | * This method is called when the module is docked. |
146 | * The quick-help text should contain a short description of the module and | 146 | * The quick-help text should contain a short description of the module and |
147 | * links to the module's help files. You can use QML formating tags in the text. | 147 | * links to the module's help files. You can use QML formating tags in the text. |
148 | * | 148 | * |
149 | * NOTE: Please make sure the quick help text gets translated (use i18n()). | 149 | * NOTE: Please make sure the quick help text gets translated (use i18n()). |
150 | */ | 150 | */ |
151 | virtual QString quickHelp() const { return QString::null; }; | 151 | virtual QString quickHelp() const { return QString::null; }; |
152 | 152 | ||
153 | /** | 153 | /** |
154 | * Returns a the KAboutData for this module | 154 | * Returns a the KAboutData for this module |
155 | * This is generally only called for the KBugReport. | 155 | * This is generally only called for the KBugReport. |
156 | * Override and have it return a pointer to a constant | 156 | * Override and have it return a pointer to a constant |
157 | */ | 157 | */ |
158 | //US virtual const KAboutData *aboutData() const { return 0; } | 158 | //US virtual const KAboutData *aboutData() const { return 0; } |
159 | 159 | ||
160 | /** | 160 | /** |
161 | * Indicate which buttons will be used. | 161 | * Indicate which buttons will be used. |
162 | * | 162 | * |
163 | * The return value is a value or'ed together from | 163 | * The return value is a value or'ed together from |
164 | * the Button enumeration type. | 164 | * the Button enumeration type. |
165 | * | 165 | * |
166 | * @see KCModule::setButtons | 166 | * @see KCModule::setButtons |
167 | */ | 167 | */ |
168 | int buttons() const { return _btn; }; | 168 | int buttons() const { return _btn; }; |
169 | 169 | ||
170 | /** | 170 | /** |
171 | * Get the RootOnly message for this module. | 171 | * Get the RootOnly message for this module. |
172 | * | 172 | * |
173 | * When the module must be run as root, or acts differently | 173 | * When the module must be run as root, or acts differently |
174 | * for root and a normal user, it is sometimes useful to | 174 | * for root and a normal user, it is sometimes useful to |
175 | * customize the message that appears at the top of the module | 175 | * customize the message that appears at the top of the module |
176 | * when used as a normal user. This function returns this | 176 | * when used as a normal user. This function returns this |
177 | * customized message. If none has been set, a default message | 177 | * customized message. If none has been set, a default message |
178 | * will be used. | 178 | * will be used. |
179 | * | 179 | * |
180 | * @see KCModule::setRootOnlyMsg | 180 | * @see KCModule::setRootOnlyMsg |
181 | */ | 181 | */ |
182 | QString rootOnlyMsg() const; | 182 | QString rootOnlyMsg() const; |
183 | 183 | ||
184 | /** | 184 | /** |
185 | * Tell if KControl should show a RootOnly message when run as | 185 | * Tell if KControl should show a RootOnly message when run as |
186 | * a normal user. | 186 | * a normal user. |
187 | * | 187 | * |
188 | * In some cases, the module don't want a RootOnly message to | 188 | * In some cases, the module don't want a RootOnly message to |
189 | * appear (for example if it has already one). This function | 189 | * appear (for example if it has already one). This function |
190 | * tells KControl if a RootOnly message should be shown | 190 | * tells KControl if a RootOnly message should be shown |
191 | * | 191 | * |
192 | * @see KCModule::setUseRootOnlyMsg | 192 | * @see KCModule::setUseRootOnlyMsg |
193 | */ | 193 | */ |
194 | bool useRootOnlyMsg() const; | 194 | bool useRootOnlyMsg() const; |
195 | 195 | ||
196 | KPrefs* getPreferences(); | ||
196 | 197 | ||
197 | //US KInstance *instance() const; | 198 | //US KInstance *instance() const; |
198 | 199 | ||
199 | signals: | 200 | signals: |
200 | 201 | ||
201 | /** | 202 | /** |
202 | * Indicate that the state of the modules contents has changed. | 203 | * Indicate that the state of the modules contents has changed. |
203 | * | 204 | * |
204 | * This signal is emitted whenever the state of the configuration | 205 | * This signal is emitted whenever the state of the configuration |
205 | * shown in the module changes. It allows the control center to | 206 | * shown in the module changes. It allows the control center to |
206 | * keep track of unsaved changes. | 207 | * keep track of unsaved changes. |
207 | * | 208 | * |
208 | */ | 209 | */ |
209 | void changed(bool state); | 210 | void changed(bool state); |
210 | 211 | ||
211 | /** | 212 | /** |
212 | * Indicate that the module's quickhelp has changed. | 213 | * Indicate that the module's quickhelp has changed. |
213 | * | 214 | * |
214 | * Emit this signal whenever the module's quickhelp changes. | 215 | * Emit this signal whenever the module's quickhelp changes. |
215 | * Modules implemented as tabbed dialogs might want to implement | 216 | * Modules implemented as tabbed dialogs might want to implement |
216 | * per-tab quickhelp for example. | 217 | * per-tab quickhelp for example. |
217 | * | 218 | * |
218 | */ | 219 | */ |
219 | void quickHelpChanged(); | 220 | void quickHelpChanged(); |
220 | 221 | ||
221 | protected: | 222 | protected: |
222 | 223 | ||
223 | /** | 224 | /** |
224 | * Sets the buttons to display. | 225 | * Sets the buttons to display. |
225 | * | 226 | * |
226 | * Help: shows a "Help" button. | 227 | * Help: shows a "Help" button. |
227 | * Default: shows a "Use Defaults" button | 228 | * Default: shows a "Use Defaults" button |
228 | * Apply: in kcontrol this will show an "Apply" and "Reset" button | 229 | * Apply: in kcontrol this will show an "Apply" and "Reset" button |
229 | * in kcmshell this will show an "Ok", "Apply" and "Cancel" button | 230 | * in kcmshell this will show an "Ok", "Apply" and "Cancel" button |
230 | * | 231 | * |
231 | * If Apply is not specified, kcmshell will show a "Close" button. | 232 | * If Apply is not specified, kcmshell will show a "Close" button. |
232 | * | 233 | * |
233 | * @see KCModule::buttons | 234 | * @see KCModule::buttons |
234 | */ | 235 | */ |
235 | void setButtons(int btn) { _btn = btn; }; | 236 | void setButtons(int btn) { _btn = btn; }; |
236 | 237 | ||
237 | /** | 238 | /** |
238 | * Sets the RootOnly message. | 239 | * Sets the RootOnly message. |
239 | * | 240 | * |
240 | * This message will be shown at the top of the module of the | 241 | * This message will be shown at the top of the module of the |
241 | * corresponding desktop file contains the line X-KDE-RootOnly=true. | 242 | * corresponding desktop file contains the line X-KDE-RootOnly=true. |
242 | * If no message is set, a default one will be used. | 243 | * If no message is set, a default one will be used. |
243 | * | 244 | * |
244 | * @see KCModule::rootOnlyMessage | 245 | * @see KCModule::rootOnlyMessage |
245 | */ | 246 | */ |
246 | void setRootOnlyMsg(const QString& msg); | 247 | void setRootOnlyMsg(const QString& msg); |
247 | 248 | ||
248 | /** | 249 | /** |
249 | * Change wether or not the RootOnly message should be shown. | 250 | * Change wether or not the RootOnly message should be shown. |
250 | * | 251 | * |
251 | * Following the value of @p on, the RootOnly message will be | 252 | * Following the value of @p on, the RootOnly message will be |
252 | * shown or not. | 253 | * shown or not. |
253 | * | 254 | * |
254 | * @see KCModule::useRootOnlyMsg | 255 | * @see KCModule::useRootOnlyMsg |
255 | */ | 256 | */ |
256 | void setUseRootOnlyMsg(bool on); | 257 | void setUseRootOnlyMsg(bool on); |
257 | 258 | ||
258 | private: | 259 | private: |
259 | 260 | ||
260 | int _btn; | 261 | int _btn; |
261 | protected: | 262 | protected: |
262 | virtual void virtual_hook( int id, void* data ); | 263 | virtual void virtual_hook( int id, void* data ); |
263 | private: | 264 | private: |
264 | KCModulePrivate *d; | 265 | KCModulePrivate *d; |
265 | }; | 266 | }; |
266 | 267 | ||
267 | #endif | 268 | #endif |
diff --git a/microkde/kutils/kcmultidialog.cpp b/microkde/kutils/kcmultidialog.cpp index c2378fb..6c82e4f 100644 --- a/microkde/kutils/kcmultidialog.cpp +++ b/microkde/kutils/kcmultidialog.cpp | |||
@@ -1,207 +1,206 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2000 Matthias Elter <elter@kde.org> | 2 | Copyright (c) 2000 Matthias Elter <elter@kde.org> |
3 | Copyright (c) 2003 Daniel Molkentin <molkentin@kde.org> | 3 | Copyright (c) 2003 Daniel Molkentin <molkentin@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | 19 | ||
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include <qhbox.h> | 22 | #include <qhbox.h> |
23 | #include <qvbox.h> | 23 | #include <qvbox.h> |
24 | #include <qcursor.h> | 24 | #include <qcursor.h> |
25 | #include <qlayout.h> | 25 | #include <qlayout.h> |
26 | 26 | ||
27 | #include <klocale.h> | 27 | #include <klocale.h> |
28 | #include <kglobal.h> | 28 | #include <kglobal.h> |
29 | #include <kdebug.h> | 29 | #include <kdebug.h> |
30 | #include <kiconloader.h> | 30 | #include <kiconloader.h> |
31 | #include <kmessagebox.h> | 31 | #include <kmessagebox.h> |
32 | //US #include <klibloader.h> | 32 | //US #include <klibloader.h> |
33 | #include <krun.h> | 33 | #include <krun.h> |
34 | #include <kprocess.h> | 34 | #include <kprocess.h> |
35 | 35 | ||
36 | #include "kcmultidialog.h" | 36 | #include "kcmultidialog.h" |
37 | #include "kprefs.h" | ||
38 | //US #include "kcmultidialog.moc" | 37 | //US #include "kcmultidialog.moc" |
39 | //US #include "kcmoduleloader.h" | 38 | //US #include "kcmoduleloader.h" |
40 | 39 | ||
41 | KCMultiDialog::KCMultiDialog(KPrefs* prefs, const QString& baseGroup, QWidget *parent, const char *name, bool modal) | 40 | KCMultiDialog::KCMultiDialog(const QString& baseGroup, QWidget *parent, const char *name, bool modal) |
42 | : KDialogBase(IconList, i18n("Configure"), Default |Cancel | Apply | Ok, Ok, | 41 | : KDialogBase(IconList, i18n("Configure"), Default |Cancel | Apply | Ok, Ok, |
43 | parent, name, modal, true), mPrefs(prefs), d(0L) | 42 | parent, name, modal, true), d(0L) |
44 | { | 43 | { |
45 | enableButton(Apply, false); | 44 | enableButton(Apply, false); |
46 | //connect(this, SIGNAL(aboutToShowPage(QWidget *)), this, SLOT(slotAboutToShow(QWidget *))); | 45 | //connect(this, SIGNAL(aboutToShowPage(QWidget *)), this, SLOT(slotAboutToShow(QWidget *))); |
47 | 46 | ||
48 | connect( this, SIGNAL( defaultClicked() ), SLOT( slotDefault() ) ); | 47 | connect( this, SIGNAL( defaultClicked() ), SLOT( slotDefault() ) ); |
49 | 48 | ||
50 | _baseGroup = baseGroup; | 49 | _baseGroup = baseGroup; |
51 | mMainWidget = new KJanusWidget( this, "JanusWidget", KJanusWidget::Tabbed ); | 50 | mMainWidget = new KJanusWidget( this, "JanusWidget", KJanusWidget::Tabbed ); |
52 | setMainWidget(mMainWidget ); | 51 | setMainWidget(mMainWidget ); |
53 | #ifdef DESKTOP_VERSION | 52 | #ifdef DESKTOP_VERSION |
54 | resize(640,480); | 53 | resize(640,480); |
55 | #else | 54 | #else |
56 | resize(640,480); | 55 | resize(640,480); |
57 | setMaximumSize( KMIN(KGlobal::getDesktopWidth()-5, 640), KMIN(KGlobal::getDesktopHeight()-20, 480)); | 56 | setMaximumSize( KMIN(KGlobal::getDesktopWidth()-5, 640), KMIN(KGlobal::getDesktopHeight()-20, 480)); |
58 | //showMaximized(); | 57 | //showMaximized(); |
59 | #endif | 58 | #endif |
60 | 59 | ||
61 | } | 60 | } |
62 | 61 | ||
63 | KCMultiDialog::~KCMultiDialog() | 62 | KCMultiDialog::~KCMultiDialog() |
64 | { | 63 | { |
65 | //US moduleDict.setAutoDelete(true); | 64 | //US moduleDict.setAutoDelete(true); |
66 | } | 65 | } |
67 | 66 | ||
68 | void KCMultiDialog::slotDefault() | 67 | void KCMultiDialog::slotDefault() |
69 | { | 68 | { |
70 | 69 | ||
71 | int curPageIndex = mMainWidget->activePageIndex(); | 70 | int curPageIndex = mMainWidget->activePageIndex(); |
72 | 71 | ||
73 | QPtrListIterator<KCModule> it(modules); | 72 | QPtrListIterator<KCModule> it(modules); |
74 | for (; it.current(); ++it) | 73 | for (; it.current(); ++it) |
75 | { | 74 | { |
76 | if (pageIndex((QWidget *)(*it)->parent()) == curPageIndex) | 75 | if (pageIndex((QWidget *)(*it)->parent()) == curPageIndex) |
77 | { | 76 | { |
78 | (*it)->defaults(mPrefs); | 77 | (*it)->defaults(); |
79 | clientChanged(true); | 78 | clientChanged(true); |
80 | return; | 79 | return; |
81 | } | 80 | } |
82 | } | 81 | } |
83 | 82 | ||
84 | } | 83 | } |
85 | 84 | ||
86 | void KCMultiDialog::slotApply() | 85 | void KCMultiDialog::slotApply() |
87 | { | 86 | { |
88 | qDebug("KCMultiDialog::slotApply clicked"); | 87 | qDebug("KCMultiDialog::slotApply clicked"); |
89 | 88 | ||
90 | QPtrListIterator<KCModule> it(modules); | 89 | QPtrListIterator<KCModule> it(modules); |
91 | for (; it.current(); ++it) | 90 | for (; it.current(); ++it) |
92 | (*it)->save(mPrefs); | 91 | (*it)->save(); |
93 | clientChanged(false); | 92 | clientChanged(false); |
94 | 93 | ||
95 | emit applyClicked(); | 94 | emit applyClicked(); |
96 | 95 | ||
97 | } | 96 | } |
98 | 97 | ||
99 | 98 | ||
100 | void KCMultiDialog::slotOk() | 99 | void KCMultiDialog::slotOk() |
101 | { | 100 | { |
102 | qDebug("KCMultiDialog::slotOk clicked"); | 101 | qDebug("KCMultiDialog::slotOk clicked"); |
103 | 102 | ||
104 | QPtrListIterator<KCModule> it(modules); | 103 | QPtrListIterator<KCModule> it(modules); |
105 | for (; it.current(); ++it) | 104 | for (; it.current(); ++it) |
106 | (*it)->save(mPrefs); | 105 | (*it)->save(); |
107 | accept(); | 106 | accept(); |
108 | 107 | ||
109 | emit okClicked(); | 108 | emit okClicked(); |
110 | } | 109 | } |
111 | 110 | ||
112 | void KCMultiDialog::slotHelp() | 111 | void KCMultiDialog::slotHelp() |
113 | { | 112 | { |
114 | /*US | 113 | /*US |
115 | KURL url( KURL("help:/"), _docPath ); | 114 | KURL url( KURL("help:/"), _docPath ); |
116 | 115 | ||
117 | if (url.protocol() == "help" || url.protocol() == "man" || url.protocol() == "info") { | 116 | if (url.protocol() == "help" || url.protocol() == "man" || url.protocol() == "info") { |
118 | KProcess process; | 117 | KProcess process; |
119 | process << "khelpcenter" | 118 | process << "khelpcenter" |
120 | << url.url(); | 119 | << url.url(); |
121 | process.start(KProcess::DontCare); | 120 | process.start(KProcess::DontCare); |
122 | process.detach(); | 121 | process.detach(); |
123 | } else { | 122 | } else { |
124 | new KRun(url); | 123 | new KRun(url); |
125 | } | 124 | } |
126 | */ | 125 | */ |
127 | } | 126 | } |
128 | 127 | ||
129 | void KCMultiDialog::clientChanged(bool state) | 128 | void KCMultiDialog::clientChanged(bool state) |
130 | { | 129 | { |
131 | enableButton(Apply, state); | 130 | enableButton(Apply, state); |
132 | } | 131 | } |
133 | 132 | ||
134 | /*US | 133 | /*US |
135 | void KCMultiDialog::addModule(const QString& path, bool withfallback) | 134 | void KCMultiDialog::addModule(const QString& path, bool withfallback) |
136 | { | 135 | { |
137 | kdDebug(1208) << "KCMultiDialog::addModule " << path << endl; | 136 | kdDebug(1208) << "KCMultiDialog::addModule " << path << endl; |
138 | 137 | ||
139 | KCModuleInfo info(path, _baseGroup); | 138 | KCModuleInfo info(path, _baseGroup); |
140 | 139 | ||
141 | QHBox* page = addHBoxPage(info.moduleName(), info.comment(), | 140 | QHBox* page = addHBoxPage(info.moduleName(), info.comment(), |
142 | KGlobal::iconLoader()->loadIcon(info.icon(), KIcon::Desktop, KIcon::SizeMedium)); | 141 | KGlobal::iconLoader()->loadIcon(info.icon(), KIcon::Desktop, KIcon::SizeMedium)); |
143 | if(!page) { | 142 | if(!page) { |
144 | KCModuleLoader::unloadModule(info); | 143 | KCModuleLoader::unloadModule(info); |
145 | return; | 144 | return; |
146 | } | 145 | } |
147 | moduleDict.insert(page, new LoadInfo(path, withfallback)); | 146 | moduleDict.insert(page, new LoadInfo(path, withfallback)); |
148 | if (modules.isEmpty()) | 147 | if (modules.isEmpty()) |
149 | slotAboutToShow(page); | 148 | slotAboutToShow(page); |
150 | } | 149 | } |
151 | */ | 150 | */ |
152 | QVBox * KCMultiDialog::getNewVBoxPage( const QString & modulename ) | 151 | QVBox * KCMultiDialog::getNewVBoxPage( const QString & modulename ) |
153 | { | 152 | { |
154 | QVBox *page = mMainWidget->addVBoxPage(modulename , QString::null,QPixmap() ); | 153 | QVBox *page = mMainWidget->addVBoxPage(modulename , QString::null,QPixmap() ); |
155 | return page; | 154 | return page; |
156 | 155 | ||
157 | } | 156 | } |
158 | //US special method for microkde. We dop noty want to load everything dynamically. | 157 | //US special method for microkde. We dop noty want to load everything dynamically. |
159 | void KCMultiDialog::addModule(KCModule* module ) //, const QString& modulename, const QString& iconname) | 158 | void KCMultiDialog::addModule(KCModule* module ) //, const QString& modulename, const QString& iconname) |
160 | { | 159 | { |
161 | 160 | ||
162 | modules.append(module); | 161 | modules.append(module); |
163 | connect(module, SIGNAL(changed(bool)), this, SLOT(clientChanged(bool))); | 162 | connect(module, SIGNAL(changed(bool)), this, SLOT(clientChanged(bool))); |
164 | //US | 163 | //US |
165 | module->load(mPrefs); | 164 | module->load(); |
166 | 165 | ||
167 | 166 | ||
168 | } | 167 | } |
169 | 168 | ||
170 | void KCMultiDialog::slotAboutToShow(QWidget *page) | 169 | void KCMultiDialog::slotAboutToShow(QWidget *page) |
171 | { | 170 | { |
172 | /*US | 171 | /*US |
173 | LoadInfo *loadInfo = moduleDict[page]; | 172 | LoadInfo *loadInfo = moduleDict[page]; |
174 | if (!loadInfo) | 173 | if (!loadInfo) |
175 | return; | 174 | return; |
176 | 175 | ||
177 | QApplication::setOverrideCursor(Qt::WaitCursor); | 176 | QApplication::setOverrideCursor(Qt::WaitCursor); |
178 | 177 | ||
179 | moduleDict.remove(page); | 178 | moduleDict.remove(page); |
180 | 179 | ||
181 | KCModuleInfo info(loadInfo->path, _baseGroup); | 180 | KCModuleInfo info(loadInfo->path, _baseGroup); |
182 | 181 | ||
183 | KCModule *module = KCModuleLoader::loadModule(info, loadInfo->withfallback); | 182 | KCModule *module = KCModuleLoader::loadModule(info, loadInfo->withfallback); |
184 | 183 | ||
185 | if (!module) | 184 | if (!module) |
186 | { | 185 | { |
187 | QApplication::restoreOverrideCursor(); | 186 | QApplication::restoreOverrideCursor(); |
188 | KCModuleLoader::showLastLoaderError(this); | 187 | KCModuleLoader::showLastLoaderError(this); |
189 | delete loadInfo; | 188 | delete loadInfo; |
190 | return; | 189 | return; |
191 | } | 190 | } |
192 | 191 | ||
193 | module->reparent(page,0,QPoint(0,0),true); | 192 | module->reparent(page,0,QPoint(0,0),true); |
194 | connect(module, SIGNAL(changed(bool)), this, SLOT(clientChanged(bool))); | 193 | connect(module, SIGNAL(changed(bool)), this, SLOT(clientChanged(bool))); |
195 | //setHelp( docpath, QString::null ); | 194 | //setHelp( docpath, QString::null ); |
196 | _docPath = info.docPath(); | 195 | _docPath = info.docPath(); |
197 | modules.append(module); | 196 | modules.append(module); |
198 | 197 | ||
199 | //KCGlobal::repairAccels( topLevelWidget() ); | 198 | //KCGlobal::repairAccels( topLevelWidget() ); |
200 | 199 | ||
201 | delete loadInfo; | 200 | delete loadInfo; |
202 | 201 | ||
203 | QApplication::restoreOverrideCursor(); | 202 | QApplication::restoreOverrideCursor(); |
204 | */ | 203 | */ |
205 | 204 | ||
206 | qDebug("KCMultiDialog::slotAboutToShow not implemented"); | 205 | qDebug("KCMultiDialog::slotAboutToShow not implemented"); |
207 | } | 206 | } |
diff --git a/microkde/kutils/kcmultidialog.h b/microkde/kutils/kcmultidialog.h index a42555f..1aa66b2 100644 --- a/microkde/kutils/kcmultidialog.h +++ b/microkde/kutils/kcmultidialog.h | |||
@@ -1,149 +1,146 @@ | |||
1 | /* | 1 | /* |
2 | Copyright (c) 2000 Matthias Elter <elter@kde.org> | 2 | Copyright (c) 2000 Matthias Elter <elter@kde.org> |
3 | Copyright (c) 2003 Daniel Molkentin <molkentin@kde.org> | 3 | Copyright (c) 2003 Daniel Molkentin <molkentin@kde.org> |
4 | 4 | ||
5 | This library is free software; you can redistribute it and/or | 5 | This library is free software; you can redistribute it and/or |
6 | modify it under the terms of the GNU Library General Public | 6 | modify it under the terms of the GNU Library General Public |
7 | License as published by the Free Software Foundation; either | 7 | License as published by the Free Software Foundation; either |
8 | version 2 of the License, or (at your option) any later version. | 8 | version 2 of the License, or (at your option) any later version. |
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | 19 | ||
20 | */ | 20 | */ |
21 | 21 | ||
22 | #ifndef KCMULTIDIALOG_H | 22 | #ifndef KCMULTIDIALOG_H |
23 | #define KCMULTIDIALOG_H | 23 | #define KCMULTIDIALOG_H |
24 | 24 | ||
25 | #include <qptrlist.h> | 25 | #include <qptrlist.h> |
26 | #include <qptrdict.h> | 26 | #include <qptrdict.h> |
27 | 27 | ||
28 | #include <kdialogbase.h> | 28 | #include <kdialogbase.h> |
29 | #include <kjanuswidget.h> | 29 | #include <kjanuswidget.h> |
30 | #include <kcmodule.h> | 30 | #include <kcmodule.h> |
31 | 31 | ||
32 | class KPrefs; | ||
33 | |||
34 | /** | 32 | /** |
35 | * A class that offers a @ref KDialogBase containing arbitrary KControl Modules | 33 | * A class that offers a @ref KDialogBase containing arbitrary KControl Modules |
36 | * | 34 | * |
37 | * @short A method that offers a @ref KDialogBase containing arbitrary | 35 | * @short A method that offers a @ref KDialogBase containing arbitrary |
38 | * KControl Modules. | 36 | * KControl Modules. |
39 | * | 37 | * |
40 | * @author Matthias Elter <elter@kde.org>, Daniel Molkentin <molkentin@kde.org> | 38 | * @author Matthias Elter <elter@kde.org>, Daniel Molkentin <molkentin@kde.org> |
41 | * @since 3.2 | 39 | * @since 3.2 |
42 | */ | 40 | */ |
43 | class KCMultiDialog : public KDialogBase | 41 | class KCMultiDialog : public KDialogBase |
44 | { | 42 | { |
45 | Q_OBJECT | 43 | Q_OBJECT |
46 | 44 | ||
47 | public: | 45 | public: |
48 | /** | 46 | /** |
49 | * Constructs a new KCMultiDialog | 47 | * Constructs a new KCMultiDialog |
50 | * | 48 | * |
51 | * @param parent The parent Widget | 49 | * @param parent The parent Widget |
52 | * @param name The widget name | 50 | * @param name The widget name |
53 | * @param baseGroup The baseGroup, if you want to call a module out of | 51 | * @param baseGroup The baseGroup, if you want to call a module out of |
54 | * kcontrol, just keep "settings" | 52 | * kcontrol, just keep "settings" |
55 | * @param modal If you pass true here, the dialog will be modal | 53 | * @param modal If you pass true here, the dialog will be modal |
56 | **/ | 54 | **/ |
57 | KCMultiDialog(KPrefs* prefs, const QString& baseGroup = QString::fromLatin1("settings"), | 55 | KCMultiDialog(const QString& baseGroup = QString::fromLatin1("settings"), |
58 | QWidget *parent=0, const char *name=0, | 56 | QWidget *parent=0, const char *name=0, |
59 | bool modal=false); | 57 | bool modal=false); |
60 | 58 | ||
61 | /** | 59 | /** |
62 | * Destructor | 60 | * Destructor |
63 | **/ | 61 | **/ |
64 | virtual ~KCMultiDialog(); | 62 | virtual ~KCMultiDialog(); |
65 | 63 | ||
66 | /** | 64 | /** |
67 | * Add a module. | 65 | * Add a module. |
68 | * | 66 | * |
69 | * @param module Specify the name of the module that is to be added | 67 | * @param module Specify the name of the module that is to be added |
70 | * to the list of modules the dialog will show. | 68 | * to the list of modules the dialog will show. |
71 | * | 69 | * |
72 | * @param withfallback Try harder to load the module. Might result | 70 | * @param withfallback Try harder to load the module. Might result |
73 | * in the module appearing outside the dialog. | 71 | * in the module appearing outside the dialog. |
74 | **/ | 72 | **/ |
75 | //US void addModule(const QString& module, bool withfallback=true); | 73 | //US void addModule(const QString& module, bool withfallback=true); |
76 | 74 | ||
77 | 75 | ||
78 | //US special method for microkde. We dop noty want to load everything dynamically. | 76 | //US special method for microkde. We dop noty want to load everything dynamically. |
79 | void addModule(KCModule* module );//, const QString& modulename, const QString& iconname); | 77 | void addModule(KCModule* module );//, const QString& modulename, const QString& iconname); |
80 | QVBox* getNewVBoxPage(const QString & modulename) ; | 78 | QVBox* getNewVBoxPage(const QString & modulename) ; |
81 | 79 | ||
82 | 80 | ||
83 | 81 | ||
84 | protected slots: | 82 | protected slots: |
85 | /** | 83 | /** |
86 | * This slot is called when the user presses the "Default" Button | 84 | * This slot is called when the user presses the "Default" Button |
87 | * You can reimplement it if needed. | 85 | * You can reimplement it if needed. |
88 | * | 86 | * |
89 | * @note Make sure you call the original implementation! | 87 | * @note Make sure you call the original implementation! |
90 | **/ | 88 | **/ |
91 | virtual void slotDefault(); | 89 | virtual void slotDefault(); |
92 | 90 | ||
93 | /** | 91 | /** |
94 | * This slot is called when the user presses the "Apply" Button | 92 | * This slot is called when the user presses the "Apply" Button |
95 | * You can reimplement it if needed | 93 | * You can reimplement it if needed |
96 | * | 94 | * |
97 | * @note Make sure you call the original implementation! | 95 | * @note Make sure you call the original implementation! |
98 | **/ | 96 | **/ |
99 | virtual void slotApply(); | 97 | virtual void slotApply(); |
100 | 98 | ||
101 | /** | 99 | /** |
102 | * This slot is called when the user presses the "OK" Button | 100 | * This slot is called when the user presses the "OK" Button |
103 | * You can reimplement it if needed | 101 | * You can reimplement it if needed |
104 | * | 102 | * |
105 | * @note Make sure you call the original implementation! | 103 | * @note Make sure you call the original implementation! |
106 | **/ | 104 | **/ |
107 | virtual void slotOk(); | 105 | virtual void slotOk(); |
108 | 106 | ||
109 | /** | 107 | /** |
110 | * This slot is called when the user presses the "Help" Button | 108 | * This slot is called when the user presses the "Help" Button |
111 | * You can reimplement it if needed | 109 | * You can reimplement it if needed |
112 | * | 110 | * |
113 | * @note Make sure you call the original implementation! | 111 | * @note Make sure you call the original implementation! |
114 | **/ | 112 | **/ |
115 | virtual void slotHelp(); | 113 | virtual void slotHelp(); |
116 | 114 | ||
117 | private slots: | 115 | private slots: |
118 | 116 | ||
119 | void slotAboutToShow(QWidget *); | 117 | void slotAboutToShow(QWidget *); |
120 | 118 | ||
121 | void clientChanged(bool state); | 119 | void clientChanged(bool state); |
122 | 120 | ||
123 | private: | 121 | private: |
124 | /*US | 122 | /*US |
125 | struct LoadInfo { | 123 | struct LoadInfo { |
126 | LoadInfo(const QString &_path, bool _withfallback) | 124 | LoadInfo(const QString &_path, bool _withfallback) |
127 | : path(_path), withfallback(_withfallback) | 125 | : path(_path), withfallback(_withfallback) |
128 | { } | 126 | { } |
129 | QString path; | 127 | QString path; |
130 | bool withfallback; | 128 | bool withfallback; |
131 | }; | 129 | }; |
132 | */ | 130 | */ |
133 | QPtrList<KCModule> modules; | 131 | QPtrList<KCModule> modules; |
134 | /* | 132 | /* |
135 | QPtrDict<LoadInfo> moduleDict; | 133 | QPtrDict<LoadInfo> moduleDict; |
136 | QString _docPath; | 134 | QString _docPath; |
137 | */ | 135 | */ |
138 | QString _baseGroup; | 136 | QString _baseGroup; |
139 | 137 | ||
140 | //US | 138 | //US |
141 | KJanusWidget* mMainWidget; | 139 | KJanusWidget* mMainWidget; |
142 | KPrefs* mPrefs; | ||
143 | 140 | ||
144 | // For future use | 141 | // For future use |
145 | class KCMultiDialogPrivate; | 142 | class KCMultiDialogPrivate; |
146 | KCMultiDialogPrivate *d; | 143 | KCMultiDialogPrivate *d; |
147 | }; | 144 | }; |
148 | 145 | ||
149 | #endif //KCMULTIDIALOG_H | 146 | #endif //KCMULTIDIALOG_H |