-rw-r--r-- | libkdepim/ksyncprofile.h | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/libkdepim/ksyncprofile.h b/libkdepim/ksyncprofile.h index df1b49e..80094b1 100644 --- a/libkdepim/ksyncprofile.h +++ b/libkdepim/ksyncprofile.h | |||
@@ -60,9 +60,18 @@ class KSyncProfile : public QObject { | |||
60 | void setPostSyncCommand( const QString& n ) {mPostSyncCommand = n;} | 60 | void setPostSyncCommand( const QString& n ) {mPostSyncCommand = n;} |
61 | QString getPostSyncCommand( ) { return mPostSyncCommand;} | 61 | QString getPostSyncCommand( ) { return mPostSyncCommand;} |
62 | |||
63 | void setLocalTempFile( const QString& n ) { mLocalTempFile= n;} | 62 | void setLocalTempFile( const QString& n ) { mLocalTempFile= n;} |
64 | QString getLocalTempFile( ) { return mLocalTempFile;} | 63 | QString getLocalTempFile( ) { return mLocalTempFile;} |
65 | void setRemoteFileName( const QString& n ) { mRemoteFileName = n;} | 64 | void setRemoteFileName( const QString& n ) { mRemoteFileName = n;} |
66 | QString getRemoteFileName( ) { return mRemoteFileName;} | 65 | QString getRemoteFileName( ) { return mRemoteFileName;} |
66 | |||
67 | void setPreSyncCommandAB( const QString& n ) {mPreSyncCommandAB = n;} | ||
68 | QString getPreSyncCommandAB( ) { return mPreSyncCommandAB; } | ||
69 | void setPostSyncCommandAB( const QString& n ) {mPostSyncCommandAB = n;} | ||
70 | QString getPostSyncCommandAB( ) { return mPostSyncCommandAB;} | ||
71 | void setLocalTempFileAB( const QString& n ) { mLocalTempFileAB= n;} | ||
72 | QString getLocalTempFileAB( ) { return mLocalTempFileAB;} | ||
73 | void setRemoteFileNameAB( const QString& n ) { mRemoteFileNameAB = n;} | ||
74 | QString getRemoteFileNameAB( ) { return mRemoteFileNameAB;} | ||
75 | |||
67 | /* | 76 | /* |
68 | void set( const QString& n ) { = n;} | 77 | void set( const QString& n ) { = n;} |
@@ -76,4 +85,6 @@ class KSyncProfile : public QObject { | |||
76 | void setWriteBackExisting( bool b ) { mWriteBackExisting = b;} | 85 | void setWriteBackExisting( bool b ) { mWriteBackExisting = b;} |
77 | bool getWriteBackExisting( ) { return mWriteBackExisting;} | 86 | bool getWriteBackExisting( ) { return mWriteBackExisting;} |
87 | void setWriteBackFuture( bool b ) { mWriteBackFuture = b;} | ||
88 | bool getWriteBackFuture( ) { return mWriteBackFuture;} | ||
78 | void setWriteBackFile( bool b ) { mWriteBackFile= b;} | 89 | void setWriteBackFile( bool b ) { mWriteBackFile= b;} |
79 | bool getWriteBackFile( ) { return mWriteBackFile;} | 90 | bool getWriteBackFile( ) { return mWriteBackFile;} |
@@ -84,4 +95,6 @@ class KSyncProfile : public QObject { | |||
84 | void setSyncPrefs( int n ) { mSyncPrefs= n;} | 95 | void setSyncPrefs( int n ) { mSyncPrefs= n;} |
85 | int getSyncPrefs( ) { return mSyncPrefs;} | 96 | int getSyncPrefs( ) { return mSyncPrefs;} |
97 | void setWriteBackFutureWeeks( int n ) { mWriteBackFutureWeeks= n;} | ||
98 | int getWriteBackFutureWeeks( ) { return mWriteBackFutureWeeks;} | ||
86 | void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;} | 99 | void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;} |
87 | bool getIsLocalFileSync( ) { return mIsLocalFileSync;} | 100 | bool getIsLocalFileSync( ) { return mIsLocalFileSync;} |
@@ -93,4 +106,8 @@ class KSyncProfile : public QObject { | |||
93 | QString mLocalTempFile; | 106 | QString mLocalTempFile; |
94 | QString mRemoteFileName; | 107 | QString mRemoteFileName; |
108 | QString mPreSyncCommandAB; | ||
109 | QString mPostSyncCommandAB; | ||
110 | QString mLocalTempFileAB; | ||
111 | QString mRemoteFileNameAB; | ||
95 | bool mIncludeInRingSync; | 112 | bool mIncludeInRingSync; |
96 | bool mIncludeInRingSyncAB; | 113 | bool mIncludeInRingSyncAB; |
@@ -98,4 +115,6 @@ class KSyncProfile : public QObject { | |||
98 | bool mWriteBackFile; | 115 | bool mWriteBackFile; |
99 | bool mWriteBackExisting; | 116 | bool mWriteBackExisting; |
117 | bool mWriteBackFuture; | ||
118 | int mWriteBackFutureWeeks; | ||
100 | bool mAskForPreferences; | 119 | bool mAskForPreferences; |
101 | bool mShowSummaryAfterSync; | 120 | bool mShowSummaryAfterSync; |