author | zautrix <zautrix> | 2004-08-01 18:51:50 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-01 18:51:50 (UTC) |
commit | 3e1e7285cd2b94c0f6a041a639a0ea0a0cb72603 (patch) (unidiff) | |
tree | fc198cac2c1ffa425f98f259f272e7131265b7d7 /libkdepim/ksyncprofile.h | |
parent | f968c6f5541463caadee98e200c2ba035fa20959 (diff) | |
download | kdepimpi-3e1e7285cd2b94c0f6a041a639a0ea0a0cb72603.zip kdepimpi-3e1e7285cd2b94c0f6a041a639a0ea0a0cb72603.tar.gz kdepimpi-3e1e7285cd2b94c0f6a041a639a0ea0a0cb72603.tar.bz2 |
Added phone comfig settings
-rw-r--r-- | libkdepim/ksyncprofile.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libkdepim/ksyncprofile.h b/libkdepim/ksyncprofile.h index 80094b1..300f70f 100644 --- a/libkdepim/ksyncprofile.h +++ b/libkdepim/ksyncprofile.h | |||
@@ -72,8 +72,14 @@ class KSyncProfile : public QObject { | |||
72 | QString getLocalTempFileAB( ) { return mLocalTempFileAB;} | 72 | QString getLocalTempFileAB( ) { return mLocalTempFileAB;} |
73 | void setRemoteFileNameAB( const QString& n ) { mRemoteFileNameAB = n;} | 73 | void setRemoteFileNameAB( const QString& n ) { mRemoteFileNameAB = n;} |
74 | QString getRemoteFileNameAB( ) { return mRemoteFileNameAB;} | 74 | QString getRemoteFileNameAB( ) { return mRemoteFileNameAB;} |
75 | 75 | ||
76 | void setPhoneDevice( const QString& n ) { mPhoneDevice = n;} | ||
77 | QString getPhoneDevice( ) { return mPhoneDevice;} | ||
78 | void setPhoneConnection( const QString& n ) { mPhoneConnection = n;} | ||
79 | QString getPhoneConnection( ) { return mPhoneConnection;} | ||
80 | void setPhoneModel( const QString& n ) { mPhoneModel = n;} | ||
81 | QString getPhoneModel( ) { return mPhoneModel;} | ||
76 | /* | 82 | /* |
77 | void set( const QString& n ) { = n;} | 83 | void set( const QString& n ) { = n;} |
78 | QString get( ) { return ;} | 84 | QString get( ) { return ;} |
79 | */ | 85 | */ |
@@ -97,8 +103,10 @@ class KSyncProfile : public QObject { | |||
97 | void setWriteBackFutureWeeks( int n ) { mWriteBackFutureWeeks= n;} | 103 | void setWriteBackFutureWeeks( int n ) { mWriteBackFutureWeeks= n;} |
98 | int getWriteBackFutureWeeks( ) { return mWriteBackFutureWeeks;} | 104 | int getWriteBackFutureWeeks( ) { return mWriteBackFutureWeeks;} |
99 | void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;} | 105 | void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;} |
100 | bool getIsLocalFileSync( ) { return mIsLocalFileSync;} | 106 | bool getIsLocalFileSync( ) { return mIsLocalFileSync;} |
107 | void setIsPhoneSync( bool b ) { mIsPhoneSync= b;} | ||
108 | bool getIsPhoneSync( ) { return mIsPhoneSync;} | ||
101 | 109 | ||
102 | private: | 110 | private: |
103 | QString mName; | 111 | QString mName; |
104 | QString mPreSyncCommand; | 112 | QString mPreSyncCommand; |
@@ -108,8 +116,13 @@ class KSyncProfile : public QObject { | |||
108 | QString mPreSyncCommandAB; | 116 | QString mPreSyncCommandAB; |
109 | QString mPostSyncCommandAB; | 117 | QString mPostSyncCommandAB; |
110 | QString mLocalTempFileAB; | 118 | QString mLocalTempFileAB; |
111 | QString mRemoteFileNameAB; | 119 | QString mRemoteFileNameAB; |
120 | |||
121 | QString mPhoneDevice; | ||
122 | QString mPhoneConnection; | ||
123 | QString mPhoneModel; | ||
124 | |||
112 | bool mIncludeInRingSync; | 125 | bool mIncludeInRingSync; |
113 | bool mIncludeInRingSyncAB; | 126 | bool mIncludeInRingSyncAB; |
114 | int mSyncPrefs; | 127 | int mSyncPrefs; |
115 | bool mWriteBackFile; | 128 | bool mWriteBackFile; |
@@ -118,7 +131,8 @@ class KSyncProfile : public QObject { | |||
118 | int mWriteBackFutureWeeks; | 131 | int mWriteBackFutureWeeks; |
119 | bool mAskForPreferences; | 132 | bool mAskForPreferences; |
120 | bool mShowSummaryAfterSync; | 133 | bool mShowSummaryAfterSync; |
121 | bool mIsLocalFileSync; | 134 | bool mIsLocalFileSync; |
135 | bool mIsPhoneSync; | ||
122 | }; | 136 | }; |
123 | 137 | ||
124 | #endif | 138 | #endif |