summaryrefslogtreecommitdiffabout
path: root/libkdepim/ksyncprofile.h
Side-by-side diff
Diffstat (limited to 'libkdepim/ksyncprofile.h') (more/less context) (show whitespace changes)
-rw-r--r--libkdepim/ksyncprofile.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/libkdepim/ksyncprofile.h b/libkdepim/ksyncprofile.h
index a81a9ad..6a68bd7 100644
--- a/libkdepim/ksyncprofile.h
+++ b/libkdepim/ksyncprofile.h
@@ -47,2 +47,23 @@ class KSyncProfile : public QObject {
+ void setRemotePw( const QString& n ) {mRemotePw = n;}
+ QString getRemotePw( ) { return mRemotePw; }
+ void setRemotePwAB( const QString& n ) {mRemotePwAB = n;}
+ QString getRemotePwAB( ) { return mRemotePwAB; }
+ void setRemotePwPWM( const QString& n ) {mRemotePwPWM = n;}
+ QString getRemotePwPWM( ) { return mRemotePwPWM; }
+
+ void setRemoteIP( const QString& n ) {mRemoteIP = n;}
+ QString getRemoteIP( ) { return mRemoteIP; }
+ void setRemoteIPAB( const QString& n ) {mRemoteIPAB = n;}
+ QString getRemoteIPAB( ) { return mRemoteIPAB; }
+ void setRemoteIPPWM( const QString& n ) {mRemoteIPPWM = n;}
+ QString getRemoteIPPWM( ) { return mRemoteIPPWM; }
+
+ void setRemotePort( const QString& n ) {mRemotePort = n;}
+ QString getRemotePort( ) { return mRemotePort; }
+ void setRemotePortAB( const QString& n ) {mRemotePortAB = n;}
+ QString getRemotePortAB( ) { return mRemotePortAB; }
+ void setRemotePortPWM( const QString& n ) {mRemotePortPWM = n;}
+ QString getRemotePortPWM( ) { return mRemotePortPWM; }
+
void setPreSyncCommand( const QString& n ) {mPreSyncCommand = n;}
@@ -113,2 +134,4 @@ class KSyncProfile : public QObject {
bool getIsPhoneSync( ) { return mIsPhoneSync;}
+ void setIsPiSync( bool b ) { mIsPiSync= b;}
+ bool getIsPiSync( ) { return mIsPiSync;}
private:
@@ -128,2 +151,14 @@ class KSyncProfile : public QObject {
+ QString mRemotePw;
+ QString mRemoteIP;
+ QString mRemotePort;
+
+ QString mRemotePwAB;
+ QString mRemoteIPAB;
+ QString mRemotePortAB;
+
+ QString mRemotePwPWM;
+ QString mRemoteIPPWM;
+ QString mRemotePortPWM;
+
QString mPhoneDevice;
@@ -145,2 +180,4 @@ class KSyncProfile : public QObject {
bool mWriteContactToSIM;
+
+ bool mIsPiSync;
};