diff options
Diffstat (limited to 'wizards/egroupwarewizard.h')
-rw-r--r-- | wizards/egroupwarewizard.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/wizards/egroupwarewizard.h b/wizards/egroupwarewizard.h new file mode 100644 index 000000000..f2eee1196 --- /dev/null +++ b/wizards/egroupwarewizard.h @@ -0,0 +1,50 @@ +/* + This file is part of kdepim. + + Copyright (c) 2004 Tobias Koenig <[email protected]> + + 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. +*/ + +#ifndef EGROUPWAREWIZARD_H +#define EGROUPWAREWIZARD_H + +#include <kconfigwizard.h> +#include <kdepimmacros.h> + +class KLineEdit; +class QCheckBox; + +class KDE_EXPORT EGroupwareWizard : public KConfigWizard +{ + public: + EGroupwareWizard(); + ~EGroupwareWizard(); + + QString validate(); + + void usrReadConfig(); + void usrWriteConfig(); + + private: + KLineEdit *mServerEdit; + KLineEdit *mDomainEdit; + KLineEdit *mUserEdit; + KLineEdit *mPasswordEdit; + KLineEdit *mXMLRPC; + QCheckBox *mUseSSLConnectionCheck; +}; + +#endif |