1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
|
/*
This file is part of KitchenSync.
Copyright (c) 2005 Cornelius Schumacher <schumacher@kde.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
USA.
*/
#include "configguisyncmlhttp.h"
#include <kcombobox.h>
#include <kdialog.h>
#include <klineedit.h>
#include <klocale.h>
#include <kurlrequester.h>
#include <tqcheckbox.h>
#include <tqdom.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqspinbox.h>
#include <tqtabwidget.h>
#include <tqvbox.h>
ConfigGuiSyncmlHttp::ConfigGuiSyncmlHttp( const QSync::Member &member, TQWidget *tqparent )
: ConfigGui( member, tqparent ), mUrl( 0 ), mPort( 0 )
{
TQTabWidget *tabWidget = new TQTabWidget( this );
topLayout()->addWidget( tabWidget );
// Connection
TQWidget *connectionWidget = new TQWidget( tabWidget );
TQVBoxLayout *connectionLayout = new TQVBoxLayout( connectionWidget,
KDialog::marginHint(), KDialog::spacingHint() );
tabWidget->addTab( connectionWidget, i18n( "Connection" ) );
mGridLayout = new TQGridLayout( connectionLayout );
TQLabel *label = new TQLabel( i18n("Port:"), connectionWidget );
mGridLayout->addWidget( label, 0, 0 );
mPort = new TQSpinBox( connectionWidget );
mPort->setMinValue( 1 );
mPort->setMaxValue( 65536 );
mGridLayout->addWidget( mPort, 0, 1 );
// Database
TQWidget *databaseWidget = new TQWidget( tabWidget );
TQVBoxLayout *databaseLayout = new TQVBoxLayout( databaseWidget,
KDialog::marginHint(), KDialog::spacingHint() );
tabWidget->addTab( databaseWidget, i18n( "Databases" ) );
mGridLayout = new TQGridLayout( databaseLayout );
addLineEdit( databaseWidget, i18n("Contact Database:"), &mContactDb, 0 );
addLineEdit( databaseWidget, i18n("Calendar Database:"), &mCalendarDb, 1 );
addLineEdit( databaseWidget, i18n("Note Database:"), &mNoteDb, 2 );
mContactDb->insertItem( "addressbook" );
mContactDb->insertItem( "contacts" );
mCalendarDb->insertItem( "agenda" );
mCalendarDb->insertItem( "calendar" );
mNoteDb->insertItem( "notes" );
// Options
TQWidget *optionWidget = new TQWidget( tabWidget );
TQVBoxLayout *optionLayout = new TQVBoxLayout( optionWidget,
KDialog::marginHint(), KDialog::spacingHint() );
tabWidget->addTab( optionWidget, i18n( "Options" ) );
mGridLayout = new TQGridLayout( optionLayout );
label = new TQLabel( i18n("User name:"), optionWidget );
mGridLayout->addWidget( label, 0, 0 );
mUsername = new KLineEdit( optionWidget );
mGridLayout->addWidget( mUsername, 0, 1 );
label = new TQLabel( i18n("Password:"), optionWidget );
mGridLayout->addWidget( label, 1, 0 );
mPassword = new KLineEdit( optionWidget );
mPassword->setEchoMode( TQLineEdit::Password );
mGridLayout->addWidget( mPassword, 1, 1 );
mUseStringTable = new TQCheckBox( i18n("Use String Table"), optionWidget );
mGridLayout->addMultiCellWidget( mUseStringTable, 2, 2, 0, 1 );
mOnlyReplace = new TQCheckBox( i18n("Only Replace Entries"), optionWidget );
mGridLayout->addMultiCellWidget( mOnlyReplace, 3, 3, 0, 1 );
// Url
label = new TQLabel( i18n("URL:"), optionWidget );
mGridLayout->addWidget( label, 4, 0 );
mUrl = new KLineEdit( optionWidget );
mGridLayout->addWidget( mUrl, 4, 1 );
// recvLimit
label = new TQLabel( i18n("Receive Limit:"), optionWidget );
mGridLayout->addWidget( label, 5, 0 );
mRecvLimit = new TQSpinBox( optionWidget );
mRecvLimit->setMinValue( 1 );
mRecvLimit->setMaxValue( 65536 );
mGridLayout->addWidget( mRecvLimit, 5, 1 );
// maxObjSize
label = new TQLabel( i18n("Maximum Object Size"), optionWidget );
mGridLayout->addWidget( label, 6, 0 );
mMaxObjSize = new TQSpinBox( optionWidget );
mMaxObjSize->setMinValue( 1 );
mMaxObjSize->setMaxValue( 65536 );
mGridLayout->addWidget( mMaxObjSize, 6, 1 );
topLayout()->addStretch( 1 );
}
void ConfigGuiSyncmlHttp::addLineEdit( TQWidget *tqparent, const TQString &text, KComboBox **edit, int row )
{
TQLabel *label = new TQLabel( text, tqparent);
mGridLayout->addWidget( label, row, 0 );
*edit = new KComboBox( true, tqparent );
mGridLayout->addWidget( *edit, row, 1 );
}
void ConfigGuiSyncmlHttp::load( const TQString &xml )
{
TQDomDocument document;
document.setContent( xml );
TQDomElement docElement = document.documentElement();
TQDomNode node;
for ( node = docElement.firstChild(); !node.isNull(); node = node.nextSibling() ) {
TQDomElement element = node.toElement();
if ( element.tagName() == "username" ) {
mUsername->setText( element.text() );
} else if ( element.tagName() == "password" ) {
mPassword->setText( element.text() );
} else if ( element.tagName() == "url" ) {
if ( mUrl )
mUrl->setText( element.text() );
} else if ( element.tagName() == "port" ) {
if ( mPort )
mPort->setValue( element.text().toInt() );
} else if ( element.tagName() == "recvLimit" ) {
if ( mRecvLimit )
mRecvLimit->setValue( element.text().toInt() );
} else if ( element.tagName() == "maxObjSize" ) {
if ( mMaxObjSize )
mMaxObjSize->setValue( element.text().toInt() );
} else if ( element.tagName() == "usestringtable" ) {
mUseStringTable->setChecked( element.text() == "1" );
} else if ( element.tagName() == "onlytqreplace" ) {
mOnlyReplace->setChecked( element.text() == "1" );
} else if ( element.tagName() == "contact_db" ) {
mContactDb->setCurrentText( element.text() );
} else if ( element.tagName() == "calendar_db" ) {
mCalendarDb->setCurrentText( element.text() );
} else if ( element.tagName() == "note_db" ) {
mNoteDb->setCurrentText( element.text() );
}
}
}
TQString ConfigGuiSyncmlHttp::save() const
{
TQString xml;
xml = "<config>\n";
xml += "<username>" + mUsername->text() + "</username>\n";
xml += "<password>" + mPassword->text() + "</password>\n";
xml += "<url>" + mUrl->text() + "</url>\n";
xml += "<port>" + TQString::number( mPort->value() ) + "</port>\n";
// Receive Limit
xml += "<recvLimit>" + TQString::number( mRecvLimit->value() ) + "</recvLimit>\n";
// Maximal Object Size
xml += "<maxObjSize>" + TQString::number( mMaxObjSize->value() ) + "</maxObjSize>\n";
xml += "<usestringtable>";
if ( mUseStringTable->isChecked() )
xml += "1";
else
xml += "0";
xml += "</usestringtable>\n";
xml += "<onlytqreplace>";
if ( mOnlyReplace->isChecked() )
xml += "1";
else
xml += "0";
xml += "</onlytqreplace>\n";
xml += "<contact_db>" + mContactDb->currentText() + "</contact_db>\n";
xml += "<calendar_db>" + mCalendarDb->currentText() + "</calendar_db>\n";
xml += "<note_db>" + mNoteDb->currentText() + "</note_db>\n";
xml += "</config>";
return xml;
}
#include "configguisyncmlhttp.moc"
|