author | ulf69 <ulf69> | 2004-09-21 19:47:57 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-09-21 19:47:57 (UTC) |
commit | c2cce86fdb2d0b291c3d3bdfa9fac47452153d1a (patch) (unidiff) | |
tree | 6f8ac380b5db0831f02e4cc35cd0a6fd5ece5ff9 | |
parent | 427906b75a4672531f2b7d86b2a4a27427f5d4a4 (diff) | |
download | kdepimpi-c2cce86fdb2d0b291c3d3bdfa9fac47452153d1a.zip kdepimpi-c2cce86fdb2d0b291c3d3bdfa9fac47452153d1a.tar.gz kdepimpi-c2cce86fdb2d0b291c3d3bdfa9fac47452153d1a.tar.bz2 |
added prefwriting prefreading for size and font object
-rw-r--r-- | microkde/kdecore/kprefs.cpp | 50 | ||||
-rw-r--r-- | microkde/kdecore/kprefs.h | 15 | ||||
-rw-r--r-- | microkde/kutils/kcmultidialog.cpp | 20 | ||||
-rw-r--r-- | microkde/kutils/kcmultidialog.h | 5 |
4 files changed, 87 insertions, 3 deletions
diff --git a/microkde/kdecore/kprefs.cpp b/microkde/kdecore/kprefs.cpp index f5e5e5a..71050e7 100644 --- a/microkde/kdecore/kprefs.cpp +++ b/microkde/kdecore/kprefs.cpp | |||
@@ -68,16 +68,31 @@ class KPrefsItemColor : public KPrefsItem { | |||
68 | void readConfig(KConfig *); | 68 | void readConfig(KConfig *); |
69 | void writeConfig(KConfig *); | 69 | void writeConfig(KConfig *); |
70 | 70 | ||
71 | private: | 71 | private: |
72 | QColor *mReference; | 72 | QColor *mReference; |
73 | QColor mDefault; | 73 | QColor mDefault; |
74 | }; | 74 | }; |
75 | 75 | ||
76 | class KPrefsItemSize : public KPrefsItem { | ||
77 | public: | ||
78 | KPrefsItemSize(const QString &group,const QString &name,QSize *, | ||
79 | const QSize &defaultValue=QSize()); | ||
80 | ~KPrefsItemSize() {} | ||
81 | |||
82 | void setDefault(); | ||
83 | void readConfig(KConfig *); | ||
84 | void writeConfig(KConfig *); | ||
85 | |||
86 | private: | ||
87 | QSize *mReference; | ||
88 | QSize mDefault; | ||
89 | }; | ||
90 | |||
76 | 91 | ||
77 | class KPrefsItemFont : public KPrefsItem { | 92 | class KPrefsItemFont : public KPrefsItem { |
78 | public: | 93 | public: |
79 | KPrefsItemFont(const QString &group,const QString &name,QFont *, | 94 | KPrefsItemFont(const QString &group,const QString &name,QFont *, |
80 | const QFont &defaultValue=QFont("helvetica",12)); | 95 | const QFont &defaultValue=QFont("helvetica",12)); |
81 | virtual ~KPrefsItemFont() {} | 96 | virtual ~KPrefsItemFont() {} |
82 | 97 | ||
83 | void setDefault(); | 98 | void setDefault(); |
@@ -214,16 +229,43 @@ void KPrefsItemColor::writeConfig(KConfig *config) | |||
214 | void KPrefsItemColor::readConfig(KConfig *config) | 229 | void KPrefsItemColor::readConfig(KConfig *config) |
215 | { | 230 | { |
216 | config->setGroup(mGroup); | 231 | config->setGroup(mGroup); |
217 | *mReference = config->readColorEntry(mName,&mDefault); | 232 | *mReference = config->readColorEntry(mName,&mDefault); |
218 | 233 | ||
219 | } | 234 | } |
220 | 235 | ||
221 | 236 | ||
237 | KPrefsItemSize::KPrefsItemSize(const QString &group,const QString &name, | ||
238 | QSize *reference,const QSize &defaultValue) : | ||
239 | KPrefsItem(group,name) | ||
240 | { | ||
241 | mReference = reference; | ||
242 | mDefault = defaultValue; | ||
243 | } | ||
244 | |||
245 | void KPrefsItemSize::setDefault() | ||
246 | { | ||
247 | *mReference = mDefault; | ||
248 | } | ||
249 | |||
250 | void KPrefsItemSize::writeConfig(KConfig *config) | ||
251 | { | ||
252 | config->setGroup(mGroup); | ||
253 | config->writeEntry(mName,*mReference); | ||
254 | } | ||
255 | |||
256 | void KPrefsItemSize::readConfig(KConfig *config) | ||
257 | { | ||
258 | config->setGroup(mGroup); | ||
259 | *mReference = config->readSizeEntry(mName,&mDefault); | ||
260 | |||
261 | } | ||
262 | |||
263 | |||
222 | KPrefsItemFont::KPrefsItemFont(const QString &group,const QString &name, | 264 | KPrefsItemFont::KPrefsItemFont(const QString &group,const QString &name, |
223 | QFont *reference,const QFont &defaultValue) : | 265 | QFont *reference,const QFont &defaultValue) : |
224 | KPrefsItem(group,name) | 266 | KPrefsItem(group,name) |
225 | { | 267 | { |
226 | mReference = reference; | 268 | mReference = reference; |
227 | mDefault = defaultValue; | 269 | mDefault = defaultValue; |
228 | } | 270 | } |
229 | 271 | ||
@@ -395,27 +437,28 @@ void KPrefs::setDefaults() | |||
395 | void KPrefs::readConfig() | 437 | void KPrefs::readConfig() |
396 | { | 438 | { |
397 | KPrefsItem *item; | 439 | KPrefsItem *item; |
398 | for(item = mItems.first();item;item = mItems.next()) { | 440 | for(item = mItems.first();item;item = mItems.next()) { |
399 | item->readConfig(mConfig); | 441 | item->readConfig(mConfig); |
400 | } | 442 | } |
401 | 443 | ||
402 | usrReadConfig(); | 444 | usrReadConfig(); |
445 | //qDebug("KPrefs::readConfig: %s", mConfig->getFileName().latin1()); | ||
403 | } | 446 | } |
404 | 447 | ||
405 | void KPrefs::writeConfig() | 448 | void KPrefs::writeConfig() |
406 | { | 449 | { |
407 | KPrefsItem *item; | 450 | KPrefsItem *item; |
408 | for(item = mItems.first();item;item = mItems.next()) { | 451 | for(item = mItems.first();item;item = mItems.next()) { |
409 | item->writeConfig(mConfig); | 452 | item->writeConfig(mConfig); |
410 | } | 453 | } |
411 | 454 | ||
412 | usrWriteConfig(); | 455 | usrWriteConfig(); |
413 | 456 | //qDebug("KPrefs::WriteConfig: %s", mConfig->getFileName().latin1()); | |
414 | mConfig->sync(); | 457 | mConfig->sync(); |
415 | } | 458 | } |
416 | 459 | ||
417 | 460 | ||
418 | void KPrefs::addItem(KPrefsItem *item) | 461 | void KPrefs::addItem(KPrefsItem *item) |
419 | { | 462 | { |
420 | mItems.append(item); | 463 | mItems.append(item); |
421 | } | 464 | } |
@@ -435,16 +478,21 @@ void KPrefs::addItemColor(const QString &key,QColor *reference,const QColor &def | |||
435 | addItem(new KPrefsItemColor(*mCurrentGroup,key,reference,defaultValue)); | 478 | addItem(new KPrefsItemColor(*mCurrentGroup,key,reference,defaultValue)); |
436 | } | 479 | } |
437 | 480 | ||
438 | void KPrefs::addItemFont(const QString &key,QFont *reference,const QFont &defaultValue) | 481 | void KPrefs::addItemFont(const QString &key,QFont *reference,const QFont &defaultValue) |
439 | { | 482 | { |
440 | addItem(new KPrefsItemFont(*mCurrentGroup,key,reference,defaultValue)); | 483 | addItem(new KPrefsItemFont(*mCurrentGroup,key,reference,defaultValue)); |
441 | } | 484 | } |
442 | 485 | ||
486 | void KPrefs::addItemSize(const QString &key,QSize *reference,const QSize &defaultValue) | ||
487 | { | ||
488 | addItem(new KPrefsItemSize(*mCurrentGroup,key,reference,defaultValue)); | ||
489 | } | ||
490 | |||
443 | void KPrefs::addItemString(const QString &key,QString *reference,const QString &defaultValue) | 491 | void KPrefs::addItemString(const QString &key,QString *reference,const QString &defaultValue) |
444 | { | 492 | { |
445 | addItem(new KPrefsItemString(*mCurrentGroup,key,reference,defaultValue,false)); | 493 | addItem(new KPrefsItemString(*mCurrentGroup,key,reference,defaultValue,false)); |
446 | } | 494 | } |
447 | 495 | ||
448 | void KPrefs::addItemPassword(const QString &key,QString *reference,const QString &defaultValue) | 496 | void KPrefs::addItemPassword(const QString &key,QString *reference,const QString &defaultValue) |
449 | { | 497 | { |
450 | addItem(new KPrefsItemString(*mCurrentGroup,key,reference,defaultValue,true)); | 498 | addItem(new KPrefsItemString(*mCurrentGroup,key,reference,defaultValue,true)); |
diff --git a/microkde/kdecore/kprefs.h b/microkde/kdecore/kprefs.h index 7014bb8..95d2724 100644 --- a/microkde/kdecore/kprefs.h +++ b/microkde/kdecore/kprefs.h | |||
@@ -19,16 +19,17 @@ | |||
19 | */ | 19 | */ |
20 | #ifndef _KPREFS_H | 20 | #ifndef _KPREFS_H |
21 | #define _KPREFS_H | 21 | #define _KPREFS_H |
22 | // $Id$ | 22 | // $Id$ |
23 | 23 | ||
24 | #include <qptrlist.h> | 24 | #include <qptrlist.h> |
25 | #include <qcolor.h> | 25 | #include <qcolor.h> |
26 | #include <qfont.h> | 26 | #include <qfont.h> |
27 | #include <qsize.h> | ||
27 | #include <qstringlist.h> | 28 | #include <qstringlist.h> |
28 | 29 | ||
29 | class KConfig; | 30 | class KConfig; |
30 | 31 | ||
31 | /** | 32 | /** |
32 | @short Class for storing a preferences setting | 33 | @short Class for storing a preferences setting |
33 | @author Cornelius Schumacher | 34 | @author Cornelius Schumacher |
34 | @see KPref | 35 | @see KPref |
@@ -202,16 +203,30 @@ class KPrefs { | |||
202 | @param reference Pointer to the variable, which is set by readConfig() | 203 | @param reference Pointer to the variable, which is set by readConfig() |
203 | and setDefaults() calls and read by writeConfig() calls. | 204 | and setDefaults() calls and read by writeConfig() calls. |
204 | @param defaultValue Default value, which is used by setDefaults() and | 205 | @param defaultValue Default value, which is used by setDefaults() and |
205 | when the config file does not yet contain the key of | 206 | when the config file does not yet contain the key of |
206 | this item. | 207 | this item. |
207 | */ | 208 | */ |
208 | void addItemColor(const QString &key,QColor *reference, | 209 | void addItemColor(const QString &key,QColor *reference, |
209 | const QColor &defaultValue=QColor(128,128,128)); | 210 | const QColor &defaultValue=QColor(128,128,128)); |
211 | |||
212 | /** | ||
213 | Register an item of type QSize. | ||
214 | |||
215 | @param key Key used in config file. | ||
216 | @param reference Pointer to the variable, which is set by readConfig() | ||
217 | and setDefaults() calls and read by writeConfig() calls. | ||
218 | @param defaultValue Default value, which is used by setDefaults() and | ||
219 | when the config file does not yet contain the key of | ||
220 | this item. | ||
221 | */ | ||
222 | void addItemSize(const QString &key,QSize *reference, | ||
223 | const QSize &defaultValue=QSize()); | ||
224 | |||
210 | /** | 225 | /** |
211 | Register an item of type QFont. | 226 | Register an item of type QFont. |
212 | 227 | ||
213 | @param key Key used in config file. | 228 | @param key Key used in config file. |
214 | @param reference Pointer to the variable, which is set by readConfig() | 229 | @param reference Pointer to the variable, which is set by readConfig() |
215 | and setDefaults() calls and read by writeConfig() calls. | 230 | and setDefaults() calls and read by writeConfig() calls. |
216 | @param defaultValue Default value, which is used by setDefaults() and | 231 | @param defaultValue Default value, which is used by setDefaults() and |
217 | when the config file does not yet contain the key of | 232 | when the config file does not yet contain the key of |
diff --git a/microkde/kutils/kcmultidialog.cpp b/microkde/kutils/kcmultidialog.cpp index e7aa9d1..c4ccede 100644 --- a/microkde/kutils/kcmultidialog.cpp +++ b/microkde/kutils/kcmultidialog.cpp | |||
@@ -62,17 +62,17 @@ KCMultiDialog::KCMultiDialog(const QString& baseGroup, QWidget *parent, const ch | |||
62 | KCMultiDialog::~KCMultiDialog() | 62 | KCMultiDialog::~KCMultiDialog() |
63 | { | 63 | { |
64 | //US moduleDict.setAutoDelete(true); | 64 | //US moduleDict.setAutoDelete(true); |
65 | } | 65 | } |
66 | 66 | ||
67 | void KCMultiDialog::slotDefault() | 67 | void KCMultiDialog::slotDefault() |
68 | { | 68 | { |
69 | 69 | ||
70 | int curPageIndex = mMainWidget->activePageIndex(); | 70 | int curPageIndex = activePageIndex(); |
71 | 71 | ||
72 | QPtrListIterator<KCModule> it(modules); | 72 | QPtrListIterator<KCModule> it(modules); |
73 | for (; it.current(); ++it) | 73 | for (; it.current(); ++it) |
74 | { | 74 | { |
75 | if (pageIndex((QWidget *)(*it)->parent()) == curPageIndex) | 75 | if (pageIndex((QWidget *)(*it)->parent()) == curPageIndex) |
76 | { | 76 | { |
77 | (*it)->defaults(); | 77 | (*it)->defaults(); |
78 | clientChanged(true); | 78 | clientChanged(true); |
@@ -202,8 +202,26 @@ void KCMultiDialog::slotAboutToShow(QWidget *page) | |||
202 | 202 | ||
203 | delete loadInfo; | 203 | delete loadInfo; |
204 | 204 | ||
205 | QApplication::restoreOverrideCursor(); | 205 | QApplication::restoreOverrideCursor(); |
206 | */ | 206 | */ |
207 | 207 | ||
208 | qDebug("KCMultiDialog::slotAboutToShow not implemented"); | 208 | qDebug("KCMultiDialog::slotAboutToShow not implemented"); |
209 | } | 209 | } |
210 | |||
211 | |||
212 | bool KCMultiDialog::showPage( int index ) | ||
213 | { | ||
214 | return(mMainWidget->showPage(index) ); | ||
215 | } | ||
216 | |||
217 | |||
218 | int KCMultiDialog::activePageIndex() const | ||
219 | { | ||
220 | return( mMainWidget->activePageIndex() ); | ||
221 | } | ||
222 | |||
223 | |||
224 | int KCMultiDialog::pageIndex( QWidget *widget ) const | ||
225 | { | ||
226 | return( mMainWidget->pageIndex( widget) ); | ||
227 | } | ||
diff --git a/microkde/kutils/kcmultidialog.h b/microkde/kutils/kcmultidialog.h index 768faea..66412ac 100644 --- a/microkde/kutils/kcmultidialog.h +++ b/microkde/kutils/kcmultidialog.h | |||
@@ -68,21 +68,24 @@ public: | |||
68 | * to the list of modules the dialog will show. | 68 | * to the list of modules the dialog will show. |
69 | * | 69 | * |
70 | * @param withfallback Try harder to load the module. Might result | 70 | * @param withfallback Try harder to load the module. Might result |
71 | * in the module appearing outside the dialog. | 71 | * in the module appearing outside the dialog. |
72 | **/ | 72 | **/ |
73 | //US void addModule(const QString& module, bool withfallback=true); | 73 | //US void addModule(const QString& module, bool withfallback=true); |
74 | 74 | ||
75 | 75 | ||
76 | //US special method for microkde. We dop noty want to load everything dynamically. | 76 | //US special method for microkde. We do not want to load everything dynamically. |
77 | void addModule(KCModule* module );//, const QString& modulename, const QString& iconname); | 77 | void addModule(KCModule* module );//, const QString& modulename, const QString& iconname); |
78 | QVBox* getNewVBoxPage(const QString & modulename) ; | 78 | QVBox* getNewVBoxPage(const QString & modulename) ; |
79 | 79 | ||
80 | 80 | ||
81 | bool showPage( int index ); | ||
82 | int activePageIndex() const; | ||
83 | int pageIndex( QWidget *widget ) const; | ||
81 | 84 | ||
82 | protected slots: | 85 | protected slots: |
83 | /** | 86 | /** |
84 | * This slot is called when the user presses the "Default" Button | 87 | * This slot is called when the user presses the "Default" Button |
85 | * You can reimplement it if needed. | 88 | * You can reimplement it if needed. |
86 | * | 89 | * |
87 | * @note Make sure you call the original implementation! | 90 | * @note Make sure you call the original implementation! |
88 | **/ | 91 | **/ |