-rw-r--r-- | libkdepim/ksyncprofile.cpp | 15 | ||||
-rw-r--r-- | libkdepim/ksyncprofile.h | 5 |
2 files changed, 6 insertions, 14 deletions
diff --git a/libkdepim/ksyncprofile.cpp b/libkdepim/ksyncprofile.cpp index 15dc152..e7c35fb 100644 --- a/libkdepim/ksyncprofile.cpp +++ b/libkdepim/ksyncprofile.cpp | |||
@@ -9,164 +9,159 @@ | |||
9 | 9 | ||
10 | This library is distributed in the hope that it will be useful, | 10 | This library is distributed in the hope that it will be useful, |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
13 | Library General Public License for more details. | 13 | Library General Public License for more details. |
14 | 14 | ||
15 | You should have received a copy of the GNU Library General Public License | 15 | You should have received a copy of the GNU Library General Public License |
16 | along with this library; see the file COPYING.LIB. If not, write to | 16 | along with this library; see the file COPYING.LIB. If not, write to |
17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | 17 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
18 | Boston, MA 02111-1307, USA. | 18 | Boston, MA 02111-1307, USA. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | // $Id$ | 21 | // $Id$ |
22 | 22 | ||
23 | #include <qcolor.h> | 23 | #include <qcolor.h> |
24 | 24 | ||
25 | #include <kconfig.h> | 25 | #include <kconfig.h> |
26 | #include <kstandarddirs.h> | 26 | #include <kstandarddirs.h> |
27 | #include <kglobal.h> | 27 | #include <kglobal.h> |
28 | #include <kdebug.h> | 28 | #include <kdebug.h> |
29 | 29 | ||
30 | #include "ksyncprofile.h" | 30 | #include "ksyncprofile.h" |
31 | 31 | ||
32 | 32 | ||
33 | KSyncProfile::KSyncProfile( const char * identifier): QObject (0, identifier ) | 33 | KSyncProfile::KSyncProfile(): QObject () |
34 | { | 34 | { |
35 | setIdentifier( identifier ); | ||
36 | |||
37 | if (getIdentifier().isEmpty()) | ||
38 | setIdentifier( "noID" ); | ||
39 | |||
40 | setDefault(); | 35 | setDefault(); |
41 | } | 36 | } |
42 | KSyncProfile::~KSyncProfile() | 37 | KSyncProfile::~KSyncProfile() |
43 | { | 38 | { |
44 | 39 | ||
45 | } | 40 | } |
46 | 41 | ||
47 | 42 | ||
48 | KSyncProfile* KSyncProfile::clone() | 43 | KSyncProfile* KSyncProfile::clone() |
49 | { | 44 | { |
50 | KSyncProfile* myClone = new KSyncProfile(); | 45 | KSyncProfile* myClone = new KSyncProfile(); |
51 | myClone->setPreSyncCommand( mPreSyncCommand ); | 46 | myClone->setPreSyncCommand( mPreSyncCommand ); |
52 | myClone->setPostSyncCommand( mPostSyncCommand ); | 47 | myClone->setPostSyncCommand( mPostSyncCommand ); |
53 | myClone->setLocalTempFile( mLocalTempFile); | 48 | myClone->setLocalTempFile( mLocalTempFile); |
54 | myClone->setRemoteFileName( mRemoteFileName ); | 49 | myClone->setRemoteFileName( mRemoteFileName ); |
55 | myClone->setPreSyncCommandAB( mPreSyncCommandAB ); | 50 | myClone->setPreSyncCommandAB( mPreSyncCommandAB ); |
56 | myClone->setPostSyncCommandAB( mPostSyncCommandAB ); | 51 | myClone->setPostSyncCommandAB( mPostSyncCommandAB ); |
57 | myClone->setLocalTempFileAB( mLocalTempFileAB); | 52 | myClone->setLocalTempFileAB( mLocalTempFileAB); |
58 | myClone->setRemoteFileNameAB( mRemoteFileNameAB ); | 53 | myClone->setRemoteFileNameAB( mRemoteFileNameAB ); |
59 | myClone->setShowSummaryAfterSync( mShowSummaryAfterSync ); | 54 | myClone->setShowSummaryAfterSync( mShowSummaryAfterSync ); |
60 | myClone->setAskForPreferences( mAskForPreferences); | 55 | myClone->setAskForPreferences( mAskForPreferences); |
61 | myClone->setWriteBackExisting(mWriteBackExisting ); | 56 | myClone->setWriteBackExisting(mWriteBackExisting ); |
62 | myClone->setWriteBackFile( mWriteBackFile); | 57 | myClone->setWriteBackFile( mWriteBackFile); |
63 | myClone->setWriteBackFuture( mWriteBackFuture ); | 58 | myClone->setWriteBackFuture( mWriteBackFuture ); |
64 | myClone->setWriteBackFutureWeeks( mWriteBackFutureWeeks ); | 59 | myClone->setWriteBackFutureWeeks( mWriteBackFutureWeeks ); |
65 | myClone->setIncludeInRingSync( mIncludeInRingSync ); | 60 | myClone->setIncludeInRingSync( mIncludeInRingSync ); |
66 | myClone->setIncludeInRingSyncAB( mIncludeInRingSyncAB ); | 61 | myClone->setIncludeInRingSyncAB( mIncludeInRingSyncAB ); |
67 | myClone->setSyncPrefs( mSyncPrefs); | 62 | myClone->setSyncPrefs( mSyncPrefs); |
68 | myClone->setIsLocalFileSync( mIsLocalFileSync ); | 63 | myClone->setIsLocalFileSync( mIsLocalFileSync ); |
69 | myClone->setIsPhoneSync( mIsPhoneSync ); | 64 | myClone->setIsPhoneSync( mIsPhoneSync ); |
70 | myClone->setName( "noName" ); | 65 | myClone->setName( "noName" ); |
71 | myClone->setIdentifier( "noID" ); | 66 | //myClone->setIdentifier( "noID" ); |
72 | return myClone; | 67 | return myClone; |
73 | } | 68 | } |
74 | 69 | ||
75 | 70 | ||
76 | void KSyncProfile::setDefault() | 71 | void KSyncProfile::setDefault() |
77 | { | 72 | { |
78 | mPreSyncCommand = i18n("command for downloading remote file to local device"); | 73 | mPreSyncCommand = i18n("command for downloading remote file to local device"); |
79 | mPostSyncCommand = i18n("command for uploading local temp file to remote device"); | 74 | mPostSyncCommand = i18n("command for uploading local temp file to remote device"); |
80 | mLocalTempFile = "/tmp/mycalendar.ics"; | 75 | mLocalTempFile = "/tmp/mycalendar.ics"; |
81 | mRemoteFileName = "/home/polo/kdepim/apps/korganizer/localfile.ics"; | 76 | mRemoteFileName = "/home/polo/kdepim/apps/korganizer/localfile.ics"; |
82 | mPreSyncCommandAB = i18n("command for downloading remote file to local device"); | 77 | mPreSyncCommandAB = i18n("command for downloading remote file to local device"); |
83 | mPostSyncCommandAB = i18n("command for uploading local temp file to remote device"); | 78 | mPostSyncCommandAB = i18n("command for uploading local temp file to remote device"); |
84 | mLocalTempFileAB = "/tmp/std.vcf"; | 79 | mLocalTempFileAB = "/tmp/std.vcf"; |
85 | mRemoteFileNameAB = "/home/polo/kdepim/apps/kabc/localfile.vcf"; | 80 | mRemoteFileNameAB = "/home/polo/kdepim/apps/kabc/localfile.vcf"; |
86 | mShowSummaryAfterSync = true; | 81 | mShowSummaryAfterSync = true; |
87 | mAskForPreferences = true; | 82 | mAskForPreferences = true; |
88 | mWriteBackExisting = false; | 83 | mWriteBackExisting = false; |
89 | mWriteBackFuture = false; | 84 | mWriteBackFuture = false; |
90 | mWriteBackFutureWeeks = 12; | 85 | mWriteBackFutureWeeks = 12; |
91 | mWriteBackFile = true; | 86 | mWriteBackFile = true; |
92 | mIncludeInRingSync = false; | 87 | mIncludeInRingSync = false; |
93 | mIncludeInRingSyncAB = false; | 88 | mIncludeInRingSyncAB = false; |
94 | mSyncPrefs = SYNC_PREF_ASK; | 89 | mSyncPrefs = SYNC_PREF_ASK; |
95 | mIsLocalFileSync = true; | 90 | mIsLocalFileSync = true; |
96 | mName = "noName"; | 91 | mName = "noName"; |
97 | mIsPhoneSync = false; | 92 | mIsPhoneSync = false; |
98 | mPhoneDevice = "/dev/ircomm"; | 93 | mPhoneDevice = "/dev/ircomm"; |
99 | mPhoneConnection = "irda"; | 94 | mPhoneConnection = "irda"; |
100 | mPhoneModel = "6310i"; | 95 | mPhoneModel = "6310i"; |
101 | } | 96 | } |
102 | void KSyncProfile::readConfig(KConfig *config ) | 97 | void KSyncProfile::readConfig(KConfig *config ) |
103 | { | 98 | { |
104 | if (config) | 99 | if (config) |
105 | { | 100 | { |
106 | 101 | ||
107 | config->setGroup("SyncProfile_" + mIdentifier); | 102 | config->setGroup( mName ); |
108 | 103 | ||
109 | mName = config->readEntry( "Name", mName ); | 104 | mName = config->readEntry( "Name", mName ); |
110 | mPreSyncCommand = config->readEntry( "PreSyncCommand",mPreSyncCommand ); | 105 | mPreSyncCommand = config->readEntry( "PreSyncCommand",mPreSyncCommand ); |
111 | mPostSyncCommand = config->readEntry( "PostSyncCommand", mPostSyncCommand ); | 106 | mPostSyncCommand = config->readEntry( "PostSyncCommand", mPostSyncCommand ); |
112 | mLocalTempFile = config->readEntry( "LocalTempFile", mLocalTempFile ); | 107 | mLocalTempFile = config->readEntry( "LocalTempFile", mLocalTempFile ); |
113 | mRemoteFileName = config->readEntry( "RemoteFileName", mRemoteFileName ); | 108 | mRemoteFileName = config->readEntry( "RemoteFileName", mRemoteFileName ); |
114 | 109 | ||
115 | mPreSyncCommandAB = config->readEntry( "PreSyncCommandAB",mPreSyncCommandAB ); | 110 | mPreSyncCommandAB = config->readEntry( "PreSyncCommandAB",mPreSyncCommandAB ); |
116 | mPostSyncCommandAB = config->readEntry( "PostSyncCommandAB", mPostSyncCommandAB ); | 111 | mPostSyncCommandAB = config->readEntry( "PostSyncCommandAB", mPostSyncCommandAB ); |
117 | mLocalTempFileAB = config->readEntry( "LocalTempFileAB", mLocalTempFileAB ); | 112 | mLocalTempFileAB = config->readEntry( "LocalTempFileAB", mLocalTempFileAB ); |
118 | mRemoteFileNameAB = config->readEntry( "RemoteFileNameAB", mRemoteFileNameAB ); | 113 | mRemoteFileNameAB = config->readEntry( "RemoteFileNameAB", mRemoteFileNameAB ); |
119 | 114 | ||
120 | mPhoneDevice = config->readEntry( "PhoneDevice", mPhoneDevice ); | 115 | mPhoneDevice = config->readEntry( "PhoneDevice", mPhoneDevice ); |
121 | mPhoneConnection = config->readEntry( "PhoneConnection", mPhoneConnection ); | 116 | mPhoneConnection = config->readEntry( "PhoneConnection", mPhoneConnection ); |
122 | mPhoneModel = config->readEntry( "PhoneModel", mPhoneModel ); | 117 | mPhoneModel = config->readEntry( "PhoneModel", mPhoneModel ); |
123 | 118 | ||
124 | mIncludeInRingSync = config->readBoolEntry( "IncludeInRingSync",mIncludeInRingSync ); | 119 | mIncludeInRingSync = config->readBoolEntry( "IncludeInRingSync",mIncludeInRingSync ); |
125 | mIncludeInRingSyncAB = config->readBoolEntry( "IncludeInRingSyncAB",mIncludeInRingSyncAB ); | 120 | mIncludeInRingSyncAB = config->readBoolEntry( "IncludeInRingSyncAB",mIncludeInRingSyncAB ); |
126 | mShowSummaryAfterSync = config->readBoolEntry( "ShowSummaryAfterSync", mShowSummaryAfterSync ); | 121 | mShowSummaryAfterSync = config->readBoolEntry( "ShowSummaryAfterSync", mShowSummaryAfterSync ); |
127 | mAskForPreferences = config->readBoolEntry( "AskForPreferences",mAskForPreferences ); | 122 | mAskForPreferences = config->readBoolEntry( "AskForPreferences",mAskForPreferences ); |
128 | mWriteBackExisting = config->readBoolEntry( "WriteBackExisting",mWriteBackExisting ); | 123 | mWriteBackExisting = config->readBoolEntry( "WriteBackExisting",mWriteBackExisting ); |
129 | mWriteBackFuture = config->readBoolEntry( "WriteBackFuture",mWriteBackFuture ); | 124 | mWriteBackFuture = config->readBoolEntry( "WriteBackFuture",mWriteBackFuture ); |
130 | mSyncPrefs = config->readNumEntry( "SyncPrefs", mSyncPrefs ); | 125 | mSyncPrefs = config->readNumEntry( "SyncPrefs", mSyncPrefs ); |
131 | mWriteBackFutureWeeks = config->readNumEntry( "WriteBackFutureWeeks", mWriteBackFutureWeeks ); | 126 | mWriteBackFutureWeeks = config->readNumEntry( "WriteBackFutureWeeks", mWriteBackFutureWeeks ); |
132 | mIsLocalFileSync= config->readBoolEntry( "IsLocalFileSync", mIsLocalFileSync ); | 127 | mIsLocalFileSync= config->readBoolEntry( "IsLocalFileSync", mIsLocalFileSync ); |
133 | mIsPhoneSync= config->readBoolEntry( "IsPhoneSync", mIsPhoneSync ); | 128 | mIsPhoneSync= config->readBoolEntry( "IsPhoneSync", mIsPhoneSync ); |
134 | } | 129 | } |
135 | else | 130 | else |
136 | { | 131 | { |
137 | setDefault(); | 132 | setDefault(); |
138 | } | 133 | } |
139 | } | 134 | } |
140 | 135 | ||
141 | void KSyncProfile::deleteConfig(KConfig *config ) | 136 | void KSyncProfile::deleteConfig(KConfig *config ) |
142 | { | 137 | { |
143 | config->deleteGroup( "SyncProfile_" + mIdentifier ); | 138 | config->deleteGroup( mName ); |
144 | } | 139 | } |
145 | 140 | ||
146 | void KSyncProfile::writeConfig( KConfig * config ) | 141 | void KSyncProfile::writeConfig( KConfig * config ) |
147 | { | 142 | { |
148 | config->setGroup("SyncProfile_" + mIdentifier); | 143 | config->setGroup(mName); |
149 | 144 | ||
150 | config->writeEntry( "Name", mName ); | 145 | config->writeEntry( "Name", mName ); |
151 | config->writeEntry( "PreSyncCommand",mPreSyncCommand ); | 146 | config->writeEntry( "PreSyncCommand",mPreSyncCommand ); |
152 | config->writeEntry( "PostSyncCommand", mPostSyncCommand ); | 147 | config->writeEntry( "PostSyncCommand", mPostSyncCommand ); |
153 | config->writeEntry( "LocalTempFile", mLocalTempFile ); | 148 | config->writeEntry( "LocalTempFile", mLocalTempFile ); |
154 | config->writeEntry( "RemoteFileName", mRemoteFileName ); | 149 | config->writeEntry( "RemoteFileName", mRemoteFileName ); |
155 | 150 | ||
156 | config->writeEntry( "PreSyncCommandAB",mPreSyncCommandAB ); | 151 | config->writeEntry( "PreSyncCommandAB",mPreSyncCommandAB ); |
157 | config->writeEntry( "PostSyncCommandAB", mPostSyncCommandAB ); | 152 | config->writeEntry( "PostSyncCommandAB", mPostSyncCommandAB ); |
158 | config->writeEntry( "LocalTempFileAB", mLocalTempFileAB ); | 153 | config->writeEntry( "LocalTempFileAB", mLocalTempFileAB ); |
159 | config->writeEntry( "RemoteFileNameAB", mRemoteFileNameAB ); | 154 | config->writeEntry( "RemoteFileNameAB", mRemoteFileNameAB ); |
160 | 155 | ||
161 | config->writeEntry( "PhoneDevice", mPhoneDevice ); | 156 | config->writeEntry( "PhoneDevice", mPhoneDevice ); |
162 | config->writeEntry( "PhoneConnection", mPhoneConnection ); | 157 | config->writeEntry( "PhoneConnection", mPhoneConnection ); |
163 | config->writeEntry( "PhoneModel", mPhoneModel ); | 158 | config->writeEntry( "PhoneModel", mPhoneModel ); |
164 | 159 | ||
165 | config->writeEntry( "IncludeInRingSync",mIncludeInRingSync ); | 160 | config->writeEntry( "IncludeInRingSync",mIncludeInRingSync ); |
166 | config->writeEntry( "IncludeInRingSyncAB",mIncludeInRingSyncAB ); | 161 | config->writeEntry( "IncludeInRingSyncAB",mIncludeInRingSyncAB ); |
167 | config->writeEntry( "ShowSummaryAfterSync", mShowSummaryAfterSync ); | 162 | config->writeEntry( "ShowSummaryAfterSync", mShowSummaryAfterSync ); |
168 | config->writeEntry( "AskForPreferences",mAskForPreferences ); | 163 | config->writeEntry( "AskForPreferences",mAskForPreferences ); |
169 | config->writeEntry( "WriteBackExisting",mWriteBackExisting ); | 164 | config->writeEntry( "WriteBackExisting",mWriteBackExisting ); |
170 | config->writeEntry( "WriteBackFuture",mWriteBackFuture ); | 165 | config->writeEntry( "WriteBackFuture",mWriteBackFuture ); |
171 | config->writeEntry( "SyncPrefs", mSyncPrefs ); | 166 | config->writeEntry( "SyncPrefs", mSyncPrefs ); |
172 | config->writeEntry( "WriteBackFutureWeeks", mWriteBackFutureWeeks); | 167 | config->writeEntry( "WriteBackFutureWeeks", mWriteBackFutureWeeks); |
diff --git a/libkdepim/ksyncprofile.h b/libkdepim/ksyncprofile.h index 8995def..a0cfb71 100644 --- a/libkdepim/ksyncprofile.h +++ b/libkdepim/ksyncprofile.h | |||
@@ -25,59 +25,57 @@ | |||
25 | #include <qfont.h> | 25 | #include <qfont.h> |
26 | #include <qstringlist.h> | 26 | #include <qstringlist.h> |
27 | #include <qobject.h> | 27 | #include <qobject.h> |
28 | #include <qstring.h> | 28 | #include <qstring.h> |
29 | 29 | ||
30 | #include <libkcal/syncdefines.h> | 30 | #include <libkcal/syncdefines.h> |
31 | 31 | ||
32 | 32 | ||
33 | 33 | ||
34 | class KConfig; | 34 | class KConfig; |
35 | 35 | ||
36 | /** | 36 | /** |
37 | @short Class for storing a preferences setting | 37 | @short Class for storing a preferences setting |
38 | @author Cornelius Schumacher | 38 | @author Cornelius Schumacher |
39 | @see KPref | 39 | @see KPref |
40 | 40 | ||
41 | This class represents one preferences setting as used by @ref KPrefs. | 41 | This class represents one preferences setting as used by @ref KPrefs. |
42 | Subclasses of KPrefsItem implement storage functions for a certain type of | 42 | Subclasses of KPrefsItem implement storage functions for a certain type of |
43 | setting. Normally you don't have to use this class directly. Use the special | 43 | setting. Normally you don't have to use this class directly. Use the special |
44 | addItem() functions of KPrefs instead. If you subclass this class you will | 44 | addItem() functions of KPrefs instead. If you subclass this class you will |
45 | have to register instances with the function KPrefs::addItem(). | 45 | have to register instances with the function KPrefs::addItem(). |
46 | */ | 46 | */ |
47 | class KSyncProfile : public QObject { | 47 | class KSyncProfile : public QObject { |
48 | public: | 48 | public: |
49 | KSyncProfile( const char * identifier = 0); | 49 | KSyncProfile(); |
50 | ~KSyncProfile() ; | 50 | ~KSyncProfile() ; |
51 | 51 | ||
52 | KSyncProfile* clone(); | 52 | KSyncProfile* clone(); |
53 | void setDefault(); | 53 | void setDefault(); |
54 | void readConfig(KConfig *); | 54 | void readConfig(KConfig *); |
55 | void writeConfig(KConfig *); | 55 | void writeConfig(KConfig *); |
56 | void deleteConfig(KConfig *); | 56 | void deleteConfig(KConfig *); |
57 | 57 | ||
58 | void setIdentifier( const QString& i ) {mIdentifier = i;} | ||
59 | QString getIdentifier( ) { return mIdentifier;} | ||
60 | void setPreSyncCommand( const QString& n ) {mPreSyncCommand = n;} | 58 | void setPreSyncCommand( const QString& n ) {mPreSyncCommand = n;} |
61 | QString getPreSyncCommand( ) { return mPreSyncCommand; } | 59 | QString getPreSyncCommand( ) { return mPreSyncCommand; } |
62 | void setPostSyncCommand( const QString& n ) {mPostSyncCommand = n;} | 60 | void setPostSyncCommand( const QString& n ) {mPostSyncCommand = n;} |
63 | QString getPostSyncCommand( ) { return mPostSyncCommand;} | 61 | QString getPostSyncCommand( ) { return mPostSyncCommand;} |
64 | void setLocalTempFile( const QString& n ) { mLocalTempFile= n;} | 62 | void setLocalTempFile( const QString& n ) { mLocalTempFile= n;} |
65 | QString getLocalTempFile( ) { return mLocalTempFile;} | 63 | QString getLocalTempFile( ) { return mLocalTempFile;} |
66 | void setRemoteFileName( const QString& n ) { mRemoteFileName = n;} | 64 | void setRemoteFileName( const QString& n ) { mRemoteFileName = n;} |
67 | QString getRemoteFileName( ) { return mRemoteFileName;} | 65 | QString getRemoteFileName( ) { return mRemoteFileName;} |
68 | 66 | ||
69 | void setPreSyncCommandAB( const QString& n ) {mPreSyncCommandAB = n;} | 67 | void setPreSyncCommandAB( const QString& n ) {mPreSyncCommandAB = n;} |
70 | QString getPreSyncCommandAB( ) { return mPreSyncCommandAB; } | 68 | QString getPreSyncCommandAB( ) { return mPreSyncCommandAB; } |
71 | void setPostSyncCommandAB( const QString& n ) {mPostSyncCommandAB = n;} | 69 | void setPostSyncCommandAB( const QString& n ) {mPostSyncCommandAB = n;} |
72 | QString getPostSyncCommandAB( ) { return mPostSyncCommandAB;} | 70 | QString getPostSyncCommandAB( ) { return mPostSyncCommandAB;} |
73 | void setLocalTempFileAB( const QString& n ) { mLocalTempFileAB= n;} | 71 | void setLocalTempFileAB( const QString& n ) { mLocalTempFileAB= n;} |
74 | QString getLocalTempFileAB( ) { return mLocalTempFileAB;} | 72 | QString getLocalTempFileAB( ) { return mLocalTempFileAB;} |
75 | void setRemoteFileNameAB( const QString& n ) { mRemoteFileNameAB = n;} | 73 | void setRemoteFileNameAB( const QString& n ) { mRemoteFileNameAB = n;} |
76 | QString getRemoteFileNameAB( ) { return mRemoteFileNameAB;} | 74 | QString getRemoteFileNameAB( ) { return mRemoteFileNameAB;} |
77 | 75 | ||
78 | void setPhoneDevice( const QString& n ) { mPhoneDevice = n;} | 76 | void setPhoneDevice( const QString& n ) { mPhoneDevice = n;} |
79 | QString getPhoneDevice( ) { return mPhoneDevice;} | 77 | QString getPhoneDevice( ) { return mPhoneDevice;} |
80 | void setPhoneConnection( const QString& n ) { mPhoneConnection = n;} | 78 | void setPhoneConnection( const QString& n ) { mPhoneConnection = n;} |
81 | QString getPhoneConnection( ) { return mPhoneConnection;} | 79 | QString getPhoneConnection( ) { return mPhoneConnection;} |
82 | void setPhoneModel( const QString& n ) { mPhoneModel = n;} | 80 | void setPhoneModel( const QString& n ) { mPhoneModel = n;} |
83 | QString getPhoneModel( ) { return mPhoneModel;} | 81 | QString getPhoneModel( ) { return mPhoneModel;} |
@@ -91,49 +89,48 @@ class KSyncProfile : public QObject { | |||
91 | void setShowSummaryAfterSync( bool b ) { mShowSummaryAfterSync = b;} | 89 | void setShowSummaryAfterSync( bool b ) { mShowSummaryAfterSync = b;} |
92 | bool getShowSummaryAfterSync( ) { return mShowSummaryAfterSync ;} | 90 | bool getShowSummaryAfterSync( ) { return mShowSummaryAfterSync ;} |
93 | void setAskForPreferences( bool b ) { mAskForPreferences= b;} | 91 | void setAskForPreferences( bool b ) { mAskForPreferences= b;} |
94 | bool getAskForPreferences( ) { return mAskForPreferences;} | 92 | bool getAskForPreferences( ) { return mAskForPreferences;} |
95 | void setWriteBackExisting( bool b ) { mWriteBackExisting = b;} | 93 | void setWriteBackExisting( bool b ) { mWriteBackExisting = b;} |
96 | bool getWriteBackExisting( ) { return mWriteBackExisting;} | 94 | bool getWriteBackExisting( ) { return mWriteBackExisting;} |
97 | void setWriteBackFuture( bool b ) { mWriteBackFuture = b;} | 95 | void setWriteBackFuture( bool b ) { mWriteBackFuture = b;} |
98 | bool getWriteBackFuture( ) { return mWriteBackFuture;} | 96 | bool getWriteBackFuture( ) { return mWriteBackFuture;} |
99 | void setWriteBackFile( bool b ) { mWriteBackFile= b;} | 97 | void setWriteBackFile( bool b ) { mWriteBackFile= b;} |
100 | bool getWriteBackFile( ) { return mWriteBackFile;} | 98 | bool getWriteBackFile( ) { return mWriteBackFile;} |
101 | void setIncludeInRingSync( bool b ) {mIncludeInRingSync = b;} | 99 | void setIncludeInRingSync( bool b ) {mIncludeInRingSync = b;} |
102 | bool getIncludeInRingSync( ) { return mIncludeInRingSync;} | 100 | bool getIncludeInRingSync( ) { return mIncludeInRingSync;} |
103 | void setIncludeInRingSyncAB( bool b ) {mIncludeInRingSyncAB = b;} | 101 | void setIncludeInRingSyncAB( bool b ) {mIncludeInRingSyncAB = b;} |
104 | bool getIncludeInRingSyncAB( ) { return mIncludeInRingSyncAB;} | 102 | bool getIncludeInRingSyncAB( ) { return mIncludeInRingSyncAB;} |
105 | void setSyncPrefs( int n ) { mSyncPrefs= n;} | 103 | void setSyncPrefs( int n ) { mSyncPrefs= n;} |
106 | int getSyncPrefs( ) { return mSyncPrefs;} | 104 | int getSyncPrefs( ) { return mSyncPrefs;} |
107 | void setWriteBackFutureWeeks( int n ) { mWriteBackFutureWeeks= n;} | 105 | void setWriteBackFutureWeeks( int n ) { mWriteBackFutureWeeks= n;} |
108 | int getWriteBackFutureWeeks( ) { return mWriteBackFutureWeeks;} | 106 | int getWriteBackFutureWeeks( ) { return mWriteBackFutureWeeks;} |
109 | void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;} | 107 | void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;} |
110 | bool getIsLocalFileSync( ) { return mIsLocalFileSync;} | 108 | bool getIsLocalFileSync( ) { return mIsLocalFileSync;} |
111 | void setIsPhoneSync( bool b ) { mIsPhoneSync= b;} | 109 | void setIsPhoneSync( bool b ) { mIsPhoneSync= b;} |
112 | bool getIsPhoneSync( ) { return mIsPhoneSync;} | 110 | bool getIsPhoneSync( ) { return mIsPhoneSync;} |
113 | private: | 111 | private: |
114 | QString mName; | 112 | QString mName; |
115 | QString mIdentifier; | ||
116 | QString mPreSyncCommand; | 113 | QString mPreSyncCommand; |
117 | QString mPostSyncCommand; | 114 | QString mPostSyncCommand; |
118 | QString mLocalTempFile; | 115 | QString mLocalTempFile; |
119 | QString mRemoteFileName; | 116 | QString mRemoteFileName; |
120 | QString mPreSyncCommandAB; | 117 | QString mPreSyncCommandAB; |
121 | QString mPostSyncCommandAB; | 118 | QString mPostSyncCommandAB; |
122 | QString mLocalTempFileAB; | 119 | QString mLocalTempFileAB; |
123 | QString mRemoteFileNameAB; | 120 | QString mRemoteFileNameAB; |
124 | 121 | ||
125 | QString mPhoneDevice; | 122 | QString mPhoneDevice; |
126 | QString mPhoneConnection; | 123 | QString mPhoneConnection; |
127 | QString mPhoneModel; | 124 | QString mPhoneModel; |
128 | 125 | ||
129 | bool mIncludeInRingSync; | 126 | bool mIncludeInRingSync; |
130 | bool mIncludeInRingSyncAB; | 127 | bool mIncludeInRingSyncAB; |
131 | int mSyncPrefs; | 128 | int mSyncPrefs; |
132 | bool mWriteBackFile; | 129 | bool mWriteBackFile; |
133 | bool mWriteBackExisting; | 130 | bool mWriteBackExisting; |
134 | bool mWriteBackFuture; | 131 | bool mWriteBackFuture; |
135 | int mWriteBackFutureWeeks; | 132 | int mWriteBackFutureWeeks; |
136 | bool mAskForPreferences; | 133 | bool mAskForPreferences; |
137 | bool mShowSummaryAfterSync; | 134 | bool mShowSummaryAfterSync; |
138 | bool mIsLocalFileSync; | 135 | bool mIsLocalFileSync; |
139 | bool mIsPhoneSync; | 136 | bool mIsPhoneSync; |