author | ulf69 <ulf69> | 2004-08-02 18:15:04 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-08-02 18:15:04 (UTC) |
commit | e084a79b8aa0174e7587893f9b87d88670ed9f2c (patch) (unidiff) | |
tree | d3250447b9352effc8fb953866c772418c5e166c | |
parent | b4203356adb6008a4b4e6782afdae7dd34178697 (diff) | |
download | kdepimpi-e084a79b8aa0174e7587893f9b87d88670ed9f2c.zip kdepimpi-e084a79b8aa0174e7587893f9b87d88670ed9f2c.tar.gz kdepimpi-e084a79b8aa0174e7587893f9b87d88670ed9f2c.tar.bz2 |
added support for the syncing of resources
-rw-r--r-- | microkde/kresources/configdialog.cpp | 55 | ||||
-rw-r--r-- | microkde/kresources/configdialog.h | 2 | ||||
-rw-r--r-- | microkde/kresources/configpage.cpp | 43 | ||||
-rw-r--r-- | microkde/kresources/configpage.h | 1 | ||||
-rw-r--r-- | microkde/kresources/factory.cpp | 38 | ||||
-rw-r--r-- | microkde/kresources/factory.h | 14 | ||||
-rw-r--r-- | microkde/microkdeE.pro | 2 |
7 files changed, 136 insertions, 19 deletions
diff --git a/microkde/kresources/configdialog.cpp b/microkde/kresources/configdialog.cpp index 0fc199c..90febca 100644 --- a/microkde/kresources/configdialog.cpp +++ b/microkde/kresources/configdialog.cpp | |||
@@ -39,14 +39,16 @@ | |||
39 | #include "factory.h" | 39 | #include "factory.h" |
40 | #include "configwidget.h" | 40 | #include "configwidget.h" |
41 | #include "configdialog.h" | 41 | #include "configdialog.h" |
42 | #include "syncwidget.h" | ||
42 | 43 | ||
43 | using namespace KRES; | 44 | using namespace KRES; |
44 | 45 | ||
45 | ConfigDialog::ConfigDialog( QWidget *parent, const QString& resourceFamily, | 46 | ConfigDialog::ConfigDialog( QWidget *parent, const QString& resourceFamily, |
46 | /*const QString& type,*/ Resource* resource, /*KConfig *config, */const char *name ) | 47 | Resource* resource, const char *name ) |
47 | : KDialogBase( parent, name, true, i18n( "Resource Configuration" ), | 48 | : KDialogBase( parent, name, true, resource->isSyncable()?i18n( "Sync Profile Configuration" ):i18n( "Resource Configuration" ), |
48 | Ok|Cancel, Ok, true )/*, mConfig( config )*/, mResource( resource ), mPersistentReadOnly(false) | 49 | Ok|Cancel, Ok, true )/*, mConfig( config )*/, mSyncWidget(0), mResource( resource ), mPersistentReadOnly(false) |
49 | { | 50 | { |
51 | |||
50 | Factory *factory = Factory::self( resourceFamily ); | 52 | Factory *factory = Factory::self( resourceFamily ); |
51 | 53 | ||
52 | //US resize( 250, 240 ); | 54 | //US resize( 250, 240 ); |
@@ -61,14 +63,16 @@ ConfigDialog::ConfigDialog( QWidget *parent, const QString& resourceFamily, | |||
61 | generalGroupBox->layout()->setSpacing( spacingHint() ); | 63 | generalGroupBox->layout()->setSpacing( spacingHint() ); |
62 | generalGroupBox->setTitle( i18n( "General Settings" ) ); | 64 | generalGroupBox->setTitle( i18n( "General Settings" ) ); |
63 | 65 | ||
64 | new QLabel( i18n( "Name:" ), generalGroupBox ); | 66 | new QLabel( mResource->isSyncable()?i18n( "Profile Name:" ):i18n( "Name:" ), generalGroupBox ); |
65 | 67 | ||
66 | mName = new KLineEdit( generalGroupBox ); | 68 | mName = new KLineEdit( generalGroupBox ); |
67 | 69 | ||
70 | if (!mResource->isSyncable()) { | ||
68 | mReadOnly = new QCheckBox( i18n( "Read-only" ), generalGroupBox ); | 71 | mReadOnly = new QCheckBox( i18n( "Read-only" ), generalGroupBox ); |
72 | mReadOnly->setChecked( mResource->readOnly() ); | ||
73 | } | ||
69 | 74 | ||
70 | mName->setText( mResource->resourceName() ); | 75 | mName->setText( mResource->resourceName() ); |
71 | mReadOnly->setChecked( mResource->readOnly() ); | ||
72 | 76 | ||
73 | mainLayout->addWidget( generalGroupBox ); | 77 | mainLayout->addWidget( generalGroupBox ); |
74 | 78 | ||
@@ -92,6 +96,26 @@ ConfigDialog::ConfigDialog( QWidget *parent, const QString& resourceFamily, | |||
92 | 96 | ||
93 | } | 97 | } |
94 | 98 | ||
99 | if (mResource->isSyncable()) | ||
100 | { | ||
101 | QGroupBox *syncGroupBox = new QGroupBox( 2, Qt::Horizontal, main ); | ||
102 | syncGroupBox->layout()->setSpacing( spacingHint()); | ||
103 | syncGroupBox->setTitle( i18n( "Syncronize Preferences" ) ); | ||
104 | mainLayout->addWidget( syncGroupBox ); | ||
105 | |||
106 | mainLayout->addStretch(); | ||
107 | |||
108 | mSyncWidget = factory->syncWidget( resource->type(), syncGroupBox ); | ||
109 | if ( mSyncWidget ) { | ||
110 | mSyncWidget->setInEditMode( false ); | ||
111 | mSyncWidget->loadSettings( mResource ); | ||
112 | mSyncWidget->show(); | ||
113 | } | ||
114 | } | ||
115 | |||
116 | |||
117 | |||
118 | |||
95 | connect( mName, SIGNAL( textChanged(const QString &)), | 119 | connect( mName, SIGNAL( textChanged(const QString &)), |
96 | SLOT( slotNameChanged(const QString &))); | 120 | SLOT( slotNameChanged(const QString &))); |
97 | 121 | ||
@@ -106,6 +130,10 @@ void ConfigDialog::setInEditMode( bool value ) | |||
106 | { | 130 | { |
107 | if ( mConfigWidget ) | 131 | if ( mConfigWidget ) |
108 | mConfigWidget->setInEditMode( value ); | 132 | mConfigWidget->setInEditMode( value ); |
133 | |||
134 | if ( mSyncWidget ) | ||
135 | mSyncWidget->setInEditMode( value ); | ||
136 | |||
109 | } | 137 | } |
110 | 138 | ||
111 | void ConfigDialog::slotNameChanged( const QString &text) | 139 | void ConfigDialog::slotNameChanged( const QString &text) |
@@ -115,31 +143,37 @@ void ConfigDialog::slotNameChanged( const QString &text) | |||
115 | 143 | ||
116 | void ConfigDialog::setReadOnly( bool value ) | 144 | void ConfigDialog::setReadOnly( bool value ) |
117 | { | 145 | { |
146 | if (!mResource->isSyncable()) { | ||
147 | |||
118 | if (mPersistentReadOnly == false) | 148 | if (mPersistentReadOnly == false) |
119 | mReadOnly->setChecked( value ); | 149 | mReadOnly->setChecked( value ); |
120 | else | 150 | else |
121 | mReadOnly->setChecked( true ); | 151 | mReadOnly->setChecked( true ); |
122 | } | 152 | } |
153 | } | ||
123 | 154 | ||
124 | void ConfigDialog::setPersistentReadOnly( bool value ) | 155 | void ConfigDialog::setPersistentReadOnly( bool value ) |
125 | { | 156 | { |
157 | if (!mResource->isSyncable()) { | ||
158 | |||
126 | mPersistentReadOnly = value; | 159 | mPersistentReadOnly = value; |
127 | 160 | ||
128 | if (value == true) | 161 | if (value == true) |
129 | setReadOnly( true ); | 162 | setReadOnly( true ); |
130 | 163 | ||
131 | mReadOnly->setEnabled( !value ); | 164 | mReadOnly->setEnabled( !value ); |
132 | 165 | } | |
133 | } | 166 | } |
134 | 167 | ||
135 | void ConfigDialog::accept() | 168 | void ConfigDialog::accept() |
136 | { | 169 | { |
137 | if ( mName->text().isEmpty() ) { | 170 | if ( mName->text().isEmpty() ) { |
138 | KMessageBox::sorry( this, i18n( "Please enter a resource name" ) ); | 171 | KMessageBox::sorry( this, mResource->isSyncable()?i18n( "Please enter a profile name" ):i18n( "Please enter a resource name" ) ); |
139 | return; | 172 | return; |
140 | } | 173 | } |
141 | 174 | ||
142 | mResource->setResourceName( mName->text() ); | 175 | mResource->setResourceName( mName->text() ); |
176 | if (!mResource->isSyncable()) | ||
143 | mResource->setReadOnly( mReadOnly->isChecked() ); | 177 | mResource->setReadOnly( mReadOnly->isChecked() ); |
144 | 178 | ||
145 | if ( mConfigWidget ) { | 179 | if ( mConfigWidget ) { |
@@ -148,6 +182,13 @@ void ConfigDialog::accept() | |||
148 | mConfigWidget->saveSettings( mResource ); | 182 | mConfigWidget->saveSettings( mResource ); |
149 | } | 183 | } |
150 | 184 | ||
185 | if ( mSyncWidget ) { | ||
186 | // First save generic information | ||
187 | // Also save setting of specific resource type | ||
188 | mSyncWidget->saveSettings( mResource ); | ||
189 | } | ||
190 | |||
191 | |||
151 | KDialog::accept(); | 192 | KDialog::accept(); |
152 | } | 193 | } |
153 | 194 | ||
diff --git a/microkde/kresources/configdialog.h b/microkde/kresources/configdialog.h index ba66f8e..b629347 100644 --- a/microkde/kresources/configdialog.h +++ b/microkde/kresources/configdialog.h | |||
@@ -31,6 +31,7 @@ class KButtonBox; | |||
31 | namespace KRES { | 31 | namespace KRES { |
32 | class Resource; | 32 | class Resource; |
33 | class ConfigWidget; | 33 | class ConfigWidget; |
34 | class SyncWidget; | ||
34 | 35 | ||
35 | class ConfigDialog : public KDialogBase | 36 | class ConfigDialog : public KDialogBase |
36 | { | 37 | { |
@@ -50,6 +51,7 @@ class ConfigDialog : public KDialogBase | |||
50 | 51 | ||
51 | private: | 52 | private: |
52 | ConfigWidget *mConfigWidget; | 53 | ConfigWidget *mConfigWidget; |
54 | SyncWidget *mSyncWidget; | ||
53 | Resource* mResource; | 55 | Resource* mResource; |
54 | 56 | ||
55 | KLineEdit *mName; | 57 | KLineEdit *mName; |
diff --git a/microkde/kresources/configpage.cpp b/microkde/kresources/configpage.cpp index 8782ffd..912c62e 100644 --- a/microkde/kresources/configpage.cpp +++ b/microkde/kresources/configpage.cpp | |||
@@ -21,6 +21,13 @@ | |||
21 | Boston, MA 02111-1307, USA. | 21 | Boston, MA 02111-1307, USA. |
22 | */ | 22 | */ |
23 | 23 | ||
24 | /* | ||
25 | Enhanced Version of the file for platform independent KDE tools. | ||
26 | Copyright (c) 2004 Ulf Schenk | ||
27 | |||
28 | $Id$ | ||
29 | */ | ||
30 | |||
24 | #include <qgroupbox.h> | 31 | #include <qgroupbox.h> |
25 | #include <qinputdialog.h> | 32 | #include <qinputdialog.h> |
26 | #include <qlabel.h> | 33 | #include <qlabel.h> |
@@ -50,6 +57,9 @@ | |||
50 | 57 | ||
51 | using namespace KRES; | 58 | using namespace KRES; |
52 | 59 | ||
60 | const QString ConfigPage::syncfamily = "syncprofiles"; | ||
61 | |||
62 | |||
53 | class ConfigViewItem : public QCheckListItem | 63 | class ConfigViewItem : public QCheckListItem |
54 | { | 64 | { |
55 | public: | 65 | public: |
@@ -164,13 +174,15 @@ void ConfigPage::load() | |||
164 | //US QVariant tmp = (*it)->property( "X-KDE-ResourceFamily" ); | 174 | //US QVariant tmp = (*it)->property( "X-KDE-ResourceFamily" ); |
165 | //US QString family = tmp.toString(); | 175 | //US QString family = tmp.toString(); |
166 | QStringList families; | 176 | QStringList families; |
167 | families << "contact" << "sync-contacts"; | 177 | families << "contact" << syncfamily; |
178 | |||
179 | |||
168 | for ( QStringList::Iterator it = families.begin(); it != families.end(); ++it ) | 180 | for ( QStringList::Iterator it = families.begin(); it != families.end(); ++it ) |
169 | { | 181 | { |
170 | QString family = (*it); | 182 | QString family = (*it); |
171 | if ( !family.isEmpty() ) { | 183 | if ( !family.isEmpty() ) { |
172 | if ( !mFamilyMap.contains( family ) ) { | 184 | if ( !mFamilyMap.contains( family ) ) { |
173 | mCurrentManager = new Manager<Resource>( family ); | 185 | mCurrentManager = new Manager<Resource>( family, (family == syncfamily) ); |
174 | if ( mCurrentManager ) { | 186 | if ( mCurrentManager ) { |
175 | mFamilyMap.append( family ); | 187 | mFamilyMap.append( family ); |
176 | mCurrentManager->addListener( this ); | 188 | mCurrentManager->addListener( this ); |
@@ -265,7 +277,7 @@ void ConfigPage::slotFamilyChanged( int pos ) | |||
265 | //US qDebug("ConfigPage::slotFamilyChanged 4.6 "); | 277 | //US qDebug("ConfigPage::slotFamilyChanged 4.6 "); |
266 | 278 | ||
267 | if ( !standardResource ) { | 279 | if ( !standardResource ) { |
268 | KMessageBox::sorry( this, i18n( "There is no standard resource! Please select one." ) ); | 280 | KMessageBox::sorry( this, i18n( "There is no standard resource!<br> Please select one." ) ); |
269 | 281 | ||
270 | //US qDebug("ConfigPage::slotFamilyChanged 4.7" ); | 282 | //US qDebug("ConfigPage::slotFamilyChanged 4.7" ); |
271 | 283 | ||
@@ -283,9 +295,22 @@ void ConfigPage::slotAdd() | |||
283 | QStringList types = mCurrentManager->resourceTypeNames(); | 295 | QStringList types = mCurrentManager->resourceTypeNames(); |
284 | QStringList descs = mCurrentManager->resourceTypeDescriptions(); | 296 | QStringList descs = mCurrentManager->resourceTypeDescriptions(); |
285 | bool ok = false; | 297 | bool ok = false; |
286 | QString desc = QInputDialog::getItem( i18n( "Resource Configuration" ), | 298 | |
299 | QString desc; | ||
300 | |||
301 | if (mFamily == syncfamily) | ||
302 | { | ||
303 | desc = QInputDialog::getItem( i18n( "Sync Configuration" ), | ||
304 | i18n( "Please select resource type for new sync profile:" ), descs, 0, | ||
305 | false, &ok, this ); | ||
306 | } | ||
307 | else | ||
308 | { | ||
309 | desc = QInputDialog::getItem( i18n( "Resource Configuration" ), | ||
287 | i18n( "Please select type of the new resource:" ), descs, 0, | 310 | i18n( "Please select type of the new resource:" ), descs, 0, |
288 | false, &ok, this ); | 311 | false, &ok, this ); |
312 | } | ||
313 | |||
289 | if ( !ok ) | 314 | if ( !ok ) |
290 | return; | 315 | return; |
291 | 316 | ||
@@ -380,7 +405,7 @@ void ConfigPage::slotEdit() | |||
380 | configItem->setText( 1, resource->type() ); | 405 | configItem->setText( 1, resource->type() ); |
381 | 406 | ||
382 | if ( configItem->standard() && configItem->readOnly() ) { | 407 | if ( configItem->standard() && configItem->readOnly() ) { |
383 | KMessageBox::sorry( this, i18n( "You cannot use a read-only resource as standard!" ) ); | 408 | KMessageBox::sorry( this, i18n( "You cannot use a read-only<br> resource as standard!" ) ); |
384 | configItem->setStandard( false ); | 409 | configItem->setStandard( false ); |
385 | } | 410 | } |
386 | 411 | ||
@@ -399,12 +424,12 @@ void ConfigPage::slotStandard() | |||
399 | return; | 424 | return; |
400 | 425 | ||
401 | if ( item->readOnly() ) { | 426 | if ( item->readOnly() ) { |
402 | KMessageBox::sorry( this, i18n( "You cannot use a read-only resource as standard!" ) ); | 427 | KMessageBox::sorry( this, i18n( "You cannot use a read-only<br>resource as standard!" ) ); |
403 | return; | 428 | return; |
404 | } | 429 | } |
405 | 430 | ||
406 | if ( !item->isOn() ) { | 431 | if ( !item->isOn() ) { |
407 | KMessageBox::sorry( this, i18n( "You cannot use an inactive resource as standard!" ) ); | 432 | KMessageBox::sorry( this, i18n( "You cannot use an inactive<br>resource as standard!" ) ); |
408 | return; | 433 | return; |
409 | } | 434 | } |
410 | 435 | ||
@@ -464,7 +489,7 @@ void ConfigPage::slotItemClicked( QListViewItem *item ) | |||
464 | if ( !configItem ) return; | 489 | if ( !configItem ) return; |
465 | 490 | ||
466 | if ( configItem->standard() && !configItem->isOn() ) { | 491 | if ( configItem->standard() && !configItem->isOn() ) { |
467 | KMessageBox::sorry( this, i18n( "You cannot deactivate the standard resource. Choose another standard resource first." ) ); | 492 | KMessageBox::sorry( this, i18n( "You cannot deactivate the<br>standard resource. Choose<br>another standard resource first." ) ); |
468 | configItem->setOn( true ); | 493 | configItem->setOn( true ); |
469 | return; | 494 | return; |
470 | } | 495 | } |
@@ -499,7 +524,7 @@ void ConfigPage::saveResourceSettings() | |||
499 | mCurrentManager->writeConfig( mCurrentConfig ); | 524 | mCurrentManager->writeConfig( mCurrentConfig ); |
500 | 525 | ||
501 | if ( !mCurrentManager->standardResource() ) | 526 | if ( !mCurrentManager->standardResource() ) |
502 | KMessageBox::sorry( this, i18n( "There is no valid standard resource! Please select one which is neither read-only nor inactive." ) ); | 527 | KMessageBox::sorry( this, i18n( "There is no valid standard resource!<br>Please select one which is neither read-only nor inactive." ) ); |
503 | } | 528 | } |
504 | 529 | ||
505 | qDebug("ConfigPage::saveResourceSettings() end"); | 530 | qDebug("ConfigPage::saveResourceSettings() end"); |
diff --git a/microkde/kresources/configpage.h b/microkde/kresources/configpage.h index 492ea54..be9239e 100644 --- a/microkde/kresources/configpage.h +++ b/microkde/kresources/configpage.h | |||
@@ -96,6 +96,7 @@ class ConfigPage : public QWidget, public ManagerListener<Resource> | |||
96 | QPushButton* mStandardButton; | 96 | QPushButton* mStandardButton; |
97 | 97 | ||
98 | QListViewItem* mLastItem; | 98 | QListViewItem* mLastItem; |
99 | static const QString syncfamily; | ||
99 | }; | 100 | }; |
100 | 101 | ||
101 | } | 102 | } |
diff --git a/microkde/kresources/factory.cpp b/microkde/kresources/factory.cpp index f82e94c..7a5c2f6 100644 --- a/microkde/kresources/factory.cpp +++ b/microkde/kresources/factory.cpp | |||
@@ -187,6 +187,40 @@ ConfigWidget *Factory::configWidget( const QString& type, QWidget *parent ) | |||
187 | 187 | ||
188 | } | 188 | } |
189 | 189 | ||
190 | SyncWidget *Factory::syncWidget( const QString& type, QWidget *parent ) | ||
191 | { | ||
192 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) | ||
193 | return 0; | ||
194 | |||
195 | //US KService::Ptr ptr = mTypeMap[ type ]; | ||
196 | //US KLibFactory *factory = KLibLoader::self()->factory( ptr->library().latin1() ); | ||
197 | PluginInfo* pi = mTypeMap[ type ]; | ||
198 | KLibFactory *factory = (KLibFactory *)KLibLoader::self()->factory( pi->library.latin1() ); | ||
199 | if ( !factory ) { | ||
200 | qDebug("KRES::Factory::syncWidget(): Factory creation failed for library %s", pi->library.latin1()); | ||
201 | kdDebug() << "KRES::Factory::syncWidget(): Factory creation failed" << endl; | ||
202 | return 0; | ||
203 | } | ||
204 | |||
205 | PluginFactoryBase *pluginFactory = static_cast<PluginFactoryBase *>( factory ); | ||
206 | |||
207 | if ( !pluginFactory ) { | ||
208 | qDebug("KRES::Factory::syncWidget(): no plugin factory for library %s", pi->library.latin1()); | ||
209 | kdDebug() << "KRES::Factory::syncWidget(): no plugin factory." << endl; | ||
210 | return 0; | ||
211 | } | ||
212 | |||
213 | SyncWidget *wdg = pluginFactory->syncWidget( parent ); | ||
214 | if ( !wdg ) { | ||
215 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; | ||
216 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); | ||
217 | return 0; | ||
218 | } | ||
219 | return wdg; | ||
220 | |||
221 | } | ||
222 | |||
223 | |||
190 | QString Factory::typeName( const QString &type ) const | 224 | QString Factory::typeName( const QString &type ) const |
191 | { | 225 | { |
192 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) | 226 | if ( type.isEmpty() || !mTypeMap.contains( type ) ) |
@@ -211,7 +245,7 @@ QString Factory::typeDescription( const QString &type ) const | |||
211 | return pi->descriptionLabel; | 245 | return pi->descriptionLabel; |
212 | } | 246 | } |
213 | 247 | ||
214 | Resource *Factory::resource( const QString& type, const KConfig *config ) | 248 | Resource *Factory::resource( const QString& type, const KConfig *config, bool syncable ) |
215 | { | 249 | { |
216 | 250 | ||
217 | 251 | ||
@@ -242,7 +276,7 @@ Resource *Factory::resource( const QString& type, const KConfig *config ) | |||
242 | return 0; | 276 | return 0; |
243 | } | 277 | } |
244 | 278 | ||
245 | Resource *resource = pluginFactory->resource( config ); | 279 | Resource *resource = pluginFactory->resource( config, syncable ); |
246 | if ( !resource ) { | 280 | if ( !resource ) { |
247 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; | 281 | //US kdDebug() << "'" << ptr->library() << "' is not a " + mResourceFamily + " plugin." << endl; |
248 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); | 282 | qDebug("%s is not a %s plugin.", pi->library.latin1(), mResourceFamily.latin1()); |
diff --git a/microkde/kresources/factory.h b/microkde/kresources/factory.h index ad67ab3..a265bc8 100644 --- a/microkde/kresources/factory.h +++ b/microkde/kresources/factory.h | |||
@@ -84,14 +84,26 @@ class Factory | |||
84 | ConfigWidget *configWidget( const QString& type, QWidget *parent = 0 ); | 84 | ConfigWidget *configWidget( const QString& type, QWidget *parent = 0 ); |
85 | 85 | ||
86 | /** | 86 | /** |
87 | * Returns the sync widget for the given resource type, | ||
88 | * or a null pointer if resource type doesn't exist, | ||
89 | * or a null pointer if resource does not support syncing. | ||
90 | * | ||
91 | * @param type The type of the resource, returned by @ref resources() | ||
92 | * @param resource The resource to be editted. | ||
93 | * @param parent The parent widget | ||
94 | */ | ||
95 | SyncWidget *syncWidget( const QString& type, QWidget *parent = 0 ); | ||
96 | |||
97 | /** | ||
87 | * Returns a pointer to a resource object or a null pointer | 98 | * Returns a pointer to a resource object or a null pointer |
88 | * if resource type doesn't exist. | 99 | * if resource type doesn't exist. |
89 | * | 100 | * |
90 | * @param type The type of the resource, returned by @ref resources() | 101 | * @param type The type of the resource, returned by @ref resources() |
91 | * @param ab The address book, the resource should belong to | 102 | * @param ab The address book, the resource should belong to |
92 | * @param config The config object where the resource get it settings from, or 0 if a new resource should be created. | 103 | * @param config The config object where the resource get it settings from, or 0 if a new resource should be created. |
104 | * @param syncable If the resource should support syncing capabilities. | ||
93 | */ | 105 | */ |
94 | Resource *resource( const QString& type, const KConfig *config ); | 106 | Resource *resource( const QString& type, const KConfig *config, bool syncable ); |
95 | 107 | ||
96 | /** | 108 | /** |
97 | * Returns a list of all available resource types. | 109 | * Returns a list of all available resource types. |
diff --git a/microkde/microkdeE.pro b/microkde/microkdeE.pro index ec2b1f7..b664c9a 100644 --- a/microkde/microkdeE.pro +++ b/microkde/microkdeE.pro | |||
@@ -89,6 +89,7 @@ osmartpointer.h \ | |||
89 | kresources/configwidget.h \ | 89 | kresources/configwidget.h \ |
90 | kresources/configdialog.h \ | 90 | kresources/configdialog.h \ |
91 | kresources/kcmkresources.h \ | 91 | kresources/kcmkresources.h \ |
92 | kresources/syncwidget.h \ | ||
92 | kdecore/kmdcodec.h \ | 93 | kdecore/kmdcodec.h \ |
93 | kdecore/kconfigbase.h \ | 94 | kdecore/kconfigbase.h \ |
94 | kdecore/klocale.h \ | 95 | kdecore/klocale.h \ |
@@ -169,5 +170,6 @@ oprocess.cpp \ | |||
169 | kresources/managerimpl.cpp \ | 170 | kresources/managerimpl.cpp \ |
170 | kresources/resource.cpp \ | 171 | kresources/resource.cpp \ |
171 | kresources/selectdialog.cpp \ | 172 | kresources/selectdialog.cpp \ |
173 | kresources/syncwidget.cpp \ | ||
172 | kutils/kcmultidialog.cpp | 174 | kutils/kcmultidialog.cpp |
173 | 175 | ||