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.
26 lines
678 B
26 lines
678 B
#ifndef ENCRYPTIONCONFIGURATIONDIALOGIMPL_H |
|
#define ENCRYPTIONCONFIGURATIONDIALOGIMPL_H |
|
#include "ui_encryptionconfigurationdialog.h" |
|
|
|
class CryptPlugWrapper; |
|
|
|
class EncryptionConfigurationDialog : public QWidget, public Ui::EncryptionConfigurationDialog |
|
{ |
|
public: |
|
EncryptionConfigurationDialog( QWidget *parent ) : QWidget( parent ) { |
|
setupUi( this ); |
|
} |
|
}; |
|
|
|
class EncryptionConfigurationDialogImpl : public EncryptionConfigurationDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
EncryptionConfigurationDialogImpl( QWidget* parent = 0); |
|
~EncryptionConfigurationDialogImpl(); |
|
|
|
void enableDisable( CryptPlugWrapper* wrapper ); |
|
}; |
|
|
|
#endif // ENCRYPTIONCONFIGURATIONDIALOGIMPL_H
|
|
|