The ExtendedStorageObserver class. More...
#include <extendedstorageobserver.h>
Public Member Functions | |
virtual | ~ExtendedStorageObserver () |
Destructor. | |
virtual void | storageModified (ExtendedStorage *storage, const QString &info)=0 |
Notify the Observer that a Storage has been modified. | |
virtual void | storageProgress (ExtendedStorage *storage, const QString &info)=0 |
Notify the Observer that a Storage is executing an action. | |
virtual void | storageFinished (ExtendedStorage *storage, bool error, const QString &info)=0 |
Notify the Observer that a Storage has finished an action. |
The ExtendedStorageObserver class.
virtual mKCal::ExtendedStorageObserver::~ExtendedStorageObserver | ( | ) | [inline, virtual] |
Destructor.
virtual void mKCal::ExtendedStorageObserver::storageFinished | ( | ExtendedStorage * | storage, | |
bool | error, | |||
const QString & | info | |||
) | [pure virtual] |
Notify the Observer that a Storage has finished an action.
storage | is a pointer to the ExtendedStorage object that is being observed. | |
error | true if action was unsuccessful; false otherwise | |
info | textual information |
virtual void mKCal::ExtendedStorageObserver::storageModified | ( | ExtendedStorage * | storage, | |
const QString & | info | |||
) | [pure virtual] |
Notify the Observer that a Storage has been modified.
storage | is a pointer to the ExtendedStorage object that is being observed. | |
info | uids inserted/updated/deleted, modified file etc. |
virtual void mKCal::ExtendedStorageObserver::storageProgress | ( | ExtendedStorage * | storage, | |
const QString & | info | |||
) | [pure virtual] |
Notify the Observer that a Storage is executing an action.
This callback is called typically for example every time an incidence has been loaded.
storage | is a pointer to the ExtendedStorage object that is being observed. | |
info | textual information |