backport the last commits by tmcguire at his request:
[kdepim.git] / wizards / sloxwizard.h
blobb5a3b162b672afcb740180e9efdf6a055e29f65e
1 /*
2 This file is part of kdepim.
4 Copyright (c) 2004 Cornelius Schumacher <schumacher@kde.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 #ifndef SLOXWIZARD_H
21 #define SLOXWIZARD_H
23 #include <kconfigwizard.h>
25 class KLineEdit;
26 class QCheckBox;
28 using namespace KPIM;
30 class SloxWizard : public KConfigWizard
32 public:
33 SloxWizard();
34 ~SloxWizard();
36 QString validate();
37 void usrReadConfig();
38 void usrWriteConfig();
40 private:
41 KLineEdit *mServerEdit;
42 KLineEdit *mUserEdit;
43 KLineEdit *mPasswordEdit;
44 QCheckBox *mSavePasswordCheck;
45 QCheckBox *mSecureCheck;
48 #endif