You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
735 B
24 lines
735 B
#ifndef DIRECTORYSERVICESCONFIGURATIONDIALOGIMPL_H |
|
#define DIRECTORYSERVICESCONFIGURATIONDIALOGIMPL_H |
|
#include "directoryservicesconfigurationdialog.h" |
|
|
|
class CryptPlugWrapper; |
|
|
|
class DirectoryServicesConfigurationDialogImpl : public DirectoryServicesConfigurationDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
DirectoryServicesConfigurationDialogImpl( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
|
~DirectoryServicesConfigurationDialogImpl(); |
|
|
|
void enableDisable( CryptPlugWrapper* wrapper ); |
|
|
|
protected slots: |
|
void slotServiceChanged( QListViewItem* ); |
|
void slotServiceSelected( QListViewItem* ); |
|
void slotAddService(); |
|
void slotDeleteService(); |
|
}; |
|
|
|
#endif // DIRECTORYSERVICESCONFIGURATIONDIALOGIMPL_H
|
|
|