From 863c4c3678e59ef125c08c00e9532ded5b540f67 Mon Sep 17 00:00:00 2001 From: ulf69 Date: Mon, 02 Aug 2004 18:32:08 +0000 Subject: added support for syncprofiles for resources and export/import capabilities --- (limited to 'kabc/plugins/sharpdtm') diff --git a/kabc/plugins/sharpdtm/resourcesharpdtm.cpp b/kabc/plugins/sharpdtm/resourcesharpdtm.cpp index 31b99ca..7b909de 100644 --- a/kabc/plugins/sharpdtm/resourcesharpdtm.cpp +++ b/kabc/plugins/sharpdtm/resourcesharpdtm.cpp @@ -1,6 +1,6 @@ /* This file is part of libkabc. - Copyright (c) 2001 Cornelius Schumacher + Copyright (c) 2004 Ulf Schenk This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -62,8 +62,8 @@ extern "C" } } -ResourceSharpDTM::ResourceSharpDTM( const KConfig *config ) - : Resource( config ), mConverter (0) +ResourceSharpDTM::ResourceSharpDTM( const KConfig *config, bool syncable ) + : Resource( config, syncable ), mConverter (0) { // we can not choose the filename. Therefore use the default to display @@ -71,8 +71,8 @@ ResourceSharpDTM::ResourceSharpDTM( const KConfig *config ) init( fileName ); } -ResourceSharpDTM::ResourceSharpDTM( const QString &fileName ) - : Resource( 0 ) +ResourceSharpDTM::ResourceSharpDTM( const QString &fileName, bool syncable ) + : Resource( 0, syncable ) { // qDebug("ResourceFile::ResourceSharpDTM : 3 %s, %s", fileName.latin1(), formatName.latin1()); init( fileName ); @@ -355,3 +355,28 @@ void ResourceSharpDTM::cleanUp() unlock( mFileName ); } +/** + * This method returns the number of elements that are currently in the resource. + */ +int ResourceSharpDTM::count() const +{ + if (mAccess != 0) + return mAccess->count(); + else + return 0; +} + + +/** + * This method removes all elements from the resource!! (Not from the addressbook) + */ +bool ResourceSharpDTM::clear() +{ + if (mAccess != 0) + return mAccess->deleteCard(0, SlZDataBase::AllCard ); + else + return false; +} + + + diff --git a/kabc/plugins/sharpdtm/resourcesharpdtm.h b/kabc/plugins/sharpdtm/resourcesharpdtm.h index d2e2a52..f495e9d 100644 --- a/kabc/plugins/sharpdtm/resourcesharpdtm.h +++ b/kabc/plugins/sharpdtm/resourcesharpdtm.h @@ -1,6 +1,6 @@ /* This file is part of libkabc. - Copyright (c) 2001 Cornelius Schumacher + Copyright (c) 2004 Ulf Schenk This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public @@ -56,12 +56,12 @@ public: @param cfg The config object where custom resource settings are stored. */ - ResourceSharpDTM( const KConfig *cfg ); + ResourceSharpDTM( const KConfig *cfg, bool syncable ); /** Construct file resource on file @arg fileName using format @arg formatName. */ - ResourceSharpDTM( const QString &fileName ); + ResourceSharpDTM( const QString &fileName, bool syncable ); /** * Destructor. @@ -104,26 +104,32 @@ public: virtual bool save( Ticket *ticket ); /** + * Remove a addressee from its source. + * This method is mainly called by KABC::AddressBook. + */ + virtual void removeAddressee( const Addressee& addr ); + + /** * Set name of file to be used for saving. */ - void setFileName( const QString & ); + virtual void setFileName( const QString & ); /** - * Return name of file used for loading and saving the address book. + * This method is called by an error handler if the application + * crashed */ - QString fileName() const; + virtual void cleanUp(); /** - * Remove a addressee from its source. - * This method is mainly called by KABC::AddressBook. + * This method returns the number of elements that are currently in the resource. */ - virtual void removeAddressee( const Addressee& addr ); + virtual int count() const; /** - * This method is called by an error handler if the application - * crashed + * This method removes all elements from the resource!! (Not from the addressbook) */ - virtual void cleanUp(); + virtual bool clear(); + protected slots: void fileChanged(); @@ -137,8 +143,6 @@ protected: private: SharpDTMConverter* mConverter; - QString mFileName; - QString mLockUniqueName; KDirWatch mDirWatch; diff --git a/kabc/plugins/sharpdtm/sharpdtmE.pro b/kabc/plugins/sharpdtm/sharpdtmE.pro index 54ef083..52bc10f 100644 --- a/kabc/plugins/sharpdtm/sharpdtmE.pro +++ b/kabc/plugins/sharpdtm/sharpdtmE.pro @@ -2,7 +2,7 @@ TEMPLATE = lib CONFIG += qt warn_on TARGET = microkabc_sharpdtm -INCLUDEPATH += ../.. $(SHARPDTMSDK)/include ../../../microkde ../../../microkde/kdecore ../../../microkde/kio/kfile ../../../microkde/kio/kio ../../../qtcompat $(QPEDIR)/include +INCLUDEPATH += ../.. $(SHARPDTMSDK)/include ../../../microkde ../../../microkde/kdecore ../../../microkde/kio/kfile ../../../microkde/kio/kio ../../../microkde/kresources ../../../qtcompat $(QPEDIR)/include OBJECTS_DIR = obj/$(PLATFORM) -- cgit v0.9.0.2