progress.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KSYNC_PROGRESS_H
00022 #define KSYNC_PROGRESS_H
00023
00024 #include <qstring.h>
00025
00026 #include "notify.h"
00027
00028 namespace KSync {
00029
00030 class Progress : public Notify{
00031 public:
00032 enum ProgressCodes {
00033 Connection, Connected, Authenticated,
00034 Syncing, Downloading, Uploading, Converting,
00035 Reconverting, Done, Undefined
00036 };
00037 Progress(int code, const QString& text);
00038 Progress( const QString& text = QString::null );
00039
00040 bool operator==( const Progress& );
00041
00042 private:
00043 class Private;
00044 Private *d;
00045 };
00046 }
00047
00048
00049 #endif
This file is part of the documentation for kitchensync Library Version 3.3.2.