dirservconfigpage.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
#ifndef DIRSERVCONFIGPAGE_H
00033
#define DIRSERVCONFIGPAGE_H
00034
00035
#include <kcmodule.h>
00036
#include <kleo/cryptoconfig.h>
00037
00038
class QCheckBox;
00039
class QTimeEdit;
00040
class KIntNumInput;
00041
namespace Kleo {
00042
class CryptoConfig;
00043
class CryptoConfigEntry;
00044
class DirectoryServicesWidget;
00045 }
00046
00052 class DirectoryServicesConfigurationPage :
public KCModule {
00053 Q_OBJECT
00054
public:
00055
DirectoryServicesConfigurationPage(
QWidget * parent=0,
const char * name=0 );
00056
00057
virtual void load();
00058
virtual void save();
00059
virtual void defaults();
00060
00061
private slots:
00062
void slotChanged();
00063
00064
private:
00065
Kleo::CryptoConfigEntry* configEntry(
const char* componentName,
00066
const char* groupName,
00067
const char* entryName,
00068 Kleo::CryptoConfigEntry::ArgType argType,
00069
bool isList );
00070
00071 Kleo::DirectoryServicesWidget* mWidget;
00072
QTimeEdit* mTimeout;
00073 KIntNumInput* mMaxItems;
00074
QCheckBox* mAddNewServersCB;
00075
00076
Kleo::CryptoConfigEntry* mTimeoutConfigEntry;
00077
Kleo::CryptoConfigEntry* mMaxItemsConfigEntry;
00078
Kleo::CryptoConfigEntry* mAddNewServersConfigEntry;
00079
00080
Kleo::CryptoConfig* mConfig;
00081 };
00082
00083
#endif
This file is part of the documentation for certmanager Library Version 3.3.0.