Diffstat (limited to 'libkdepim/ksyncprefsdialog.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libkdepim/ksyncprefsdialog.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libkdepim/ksyncprefsdialog.h b/libkdepim/ksyncprefsdialog.h index d4e1559..8094bdd 100644 --- a/libkdepim/ksyncprefsdialog.h +++ b/libkdepim/ksyncprefsdialog.h | |||
@@ -25,105 +25,112 @@ | |||
25 | 25 | ||
26 | 26 | ||
27 | #include <kdialogbase.h> | 27 | #include <kdialogbase.h> |
28 | #include <qptrlist.h> | 28 | #include <qptrlist.h> |
29 | 29 | ||
30 | //#include <libkdepim/kprefsdialog.h> | 30 | //#include <libkdepim/kprefsdialog.h> |
31 | 31 | ||
32 | class KColorButton; | 32 | class KColorButton; |
33 | class QSpinBox;; | 33 | class QSpinBox;; |
34 | class QRadioButton; | 34 | class QRadioButton; |
35 | class QCheckBox; | 35 | class QCheckBox; |
36 | class QSlider; | 36 | class QSlider; |
37 | class KURLRequester; | 37 | class KURLRequester; |
38 | class QComboBox; | 38 | class QComboBox; |
39 | class QButtonGroup; | 39 | class QButtonGroup; |
40 | class QLineEdit; | 40 | class QLineEdit; |
41 | class QVBox; | 41 | class QVBox; |
42 | class QStringList; | 42 | class QStringList; |
43 | class KSyncProfile; | 43 | class KSyncProfile; |
44 | 44 | ||
45 | /** Dialog to change the korganizer configuration. | 45 | /** Dialog to change the korganizer configuration. |
46 | */ | 46 | */ |
47 | class KSyncPrefsDialog : public KDialog | 47 | class KSyncPrefsDialog : public KDialog |
48 | { | 48 | { |
49 | Q_OBJECT | 49 | Q_OBJECT |
50 | public: | 50 | public: |
51 | /** Initialize dialog and pages */ | 51 | /** Initialize dialog and pages */ |
52 | KSyncPrefsDialog(QWidget *parent=0,char *name=0,bool modal=false); | 52 | KSyncPrefsDialog(QWidget *parent=0,char *name=0,bool modal=false); |
53 | ~KSyncPrefsDialog(); | 53 | ~KSyncPrefsDialog(); |
54 | void usrReadConfig(); | 54 | void usrReadConfig(); |
55 | void setLocalMachineName ( const QString& name ); | 55 | void setLocalMachineName ( const QString& name ); |
56 | QString getLocalMachineName ( ); | 56 | QString getLocalMachineName ( ); |
57 | 57 | ||
58 | QStringList getSyncProfileNames(); | 58 | QStringList getSyncProfileNames(); |
59 | 59 | ||
60 | public slots: | 60 | public slots: |
61 | protected slots: | 61 | protected slots: |
62 | void accept(); | 62 | void accept(); |
63 | void deleteProfile(); | 63 | void deleteProfile(); |
64 | void newProfile(); | 64 | void newProfile(); |
65 | void cloneProfile(); | 65 | void cloneProfile(); |
66 | void kindChanged(bool); | 66 | void kindChanged(bool); |
67 | void fillSSH(); | 67 | void fillSSH(); |
68 | void fillFTP(); | 68 | void fillFTP(); |
69 | void textChanged( const QString & ); | 69 | void textChanged( const QString & ); |
70 | void profileChanged( int ); | 70 | void profileChanged( int ); |
71 | void chooseFile(); | 71 | void chooseFile(); |
72 | void chooseFileAB(); | 72 | void chooseFileAB(); |
73 | void chooseFilePWM(); | ||
73 | void slotOK(); | 74 | void slotOK(); |
74 | void helpDevice(); | 75 | void helpDevice(); |
75 | void helpModel(); | 76 | void helpModel(); |
76 | void helpConnection(); | 77 | void helpConnection(); |
77 | 78 | ||
78 | protected: | 79 | protected: |
79 | void usrWriteConfig(); | 80 | void usrWriteConfig(); |
80 | 81 | ||
81 | void setupSyncAlgTab(); | 82 | void setupSyncAlgTab(); |
82 | 83 | ||
83 | private: | 84 | private: |
84 | int currentSelection; | 85 | int currentSelection; |
85 | QPtrList<KSyncProfile> mSyncProfiles; | 86 | QPtrList<KSyncProfile> mSyncProfiles; |
86 | QStringList mSyncProfileNames; | 87 | QStringList mSyncProfileNames; |
87 | QLineEdit * mMyMachineName; | 88 | QLineEdit * mMyMachineName; |
88 | QComboBox * mProfileBox; | 89 | QComboBox * mProfileBox; |
89 | QRadioButton* mIsLocal; | 90 | QRadioButton* mIsLocal; |
90 | QRadioButton* mIsNotLocal; | 91 | QRadioButton* mIsNotLocal; |
91 | QRadioButton* mIsPhone; | 92 | QRadioButton* mIsPhone; |
92 | QCheckBox* mIncludeInRing; | 93 | QCheckBox* mIncludeInRing; |
93 | QCheckBox* mIncludeInRingAB; | 94 | QCheckBox* mIncludeInRingAB; |
95 | QCheckBox* mIncludeInRingPWM; | ||
94 | void addProfile ( KSyncProfile* ); | 96 | void addProfile ( KSyncProfile* ); |
95 | void insertProfiles(); | 97 | void insertProfiles(); |
96 | void saveProfile(); | 98 | void saveProfile(); |
97 | QButtonGroup* proGr; | 99 | QButtonGroup* proGr; |
98 | 100 | ||
99 | QRadioButton* loc, *rem, *newest, *ask, *f_loc,* f_rem, *both; | 101 | QRadioButton* loc, *rem, *newest, *ask, *f_loc,* f_rem, *both; |
100 | 102 | ||
101 | 103 | ||
102 | QLineEdit * mRemotePostcommand; | 104 | QLineEdit * mRemotePostcommand; |
103 | QLineEdit * mRemotePrecommand; | 105 | QLineEdit * mRemotePrecommand; |
104 | QLineEdit * mRemoteFile; | 106 | QLineEdit * mRemoteFile; |
105 | QLineEdit * mLocalTempFile; | 107 | QLineEdit * mLocalTempFile; |
106 | 108 | ||
107 | QLineEdit * mRemotePostcommandAB; | 109 | QLineEdit * mRemotePostcommandAB; |
108 | QLineEdit * mRemotePrecommandAB; | 110 | QLineEdit * mRemotePrecommandAB; |
109 | QLineEdit * mRemoteFileAB; | 111 | QLineEdit * mRemoteFileAB; |
110 | QLineEdit * mLocalTempFileAB; | 112 | QLineEdit * mLocalTempFileAB; |
111 | 113 | ||
114 | QLineEdit * mRemotePostcommandPWM; | ||
115 | QLineEdit * mRemotePrecommandPWM; | ||
116 | QLineEdit * mRemoteFilePWM; | ||
117 | QLineEdit * mLocalTempFilePWM; | ||
118 | |||
112 | QLineEdit * mPhoneDevice; | 119 | QLineEdit * mPhoneDevice; |
113 | QLineEdit * mPhoneConnection; | 120 | QLineEdit * mPhoneConnection; |
114 | QLineEdit * mPhoneModel; | 121 | QLineEdit * mPhoneModel; |
115 | 122 | ||
116 | QWidget* mSetupSyncAlgTab; | 123 | QWidget* mSetupSyncAlgTab; |
117 | QVBox* localFileWidget; | 124 | QVBox* localFileWidget; |
118 | QVBox* remoteFileWidget; | 125 | QVBox* remoteFileWidget; |
119 | QVBox* phoneWidget; | 126 | QVBox* phoneWidget; |
120 | QCheckBox* mWriteBackFile; | 127 | QCheckBox* mWriteBackFile; |
121 | QCheckBox* mWriteBackFuture; | 128 | QCheckBox* mWriteBackFuture; |
122 | QSpinBox* mWriteBackFutureWeeks; | 129 | QSpinBox* mWriteBackFutureWeeks; |
123 | QCheckBox* mWriteBackExisting; | 130 | QCheckBox* mWriteBackExisting; |
124 | QCheckBox* mAskForPreferences; | 131 | QCheckBox* mAskForPreferences; |
125 | QCheckBox* mShowSummaryAfterSync; | 132 | QCheckBox* mShowSummaryAfterSync; |
126 | QCheckBox* mWriteContactToSIM; | 133 | QCheckBox* mWriteContactToSIM; |
127 | }; | 134 | }; |
128 | 135 | ||
129 | #endif | 136 | #endif |