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.
 
 
 

51 lines
2.2 KiB

#include "signatureconfigurationdialogimpl.h"
#include "cryptplugwrapper.h"
#include <qbuttongroup.h>
#include <qcheckbox.h>
#include <qspinbox.h>
/*
* Constructs a SignatureConfigurationDialogImpl which is a child of 'parent', with the
* name 'name' and widget flags set to 'f'
*/
SignatureConfigurationDialogImpl::SignatureConfigurationDialogImpl( QWidget* parent, const char* name, WFlags fl )
: SignatureConfigurationDialog( parent, name, fl )
{
}
/*
* Destroys the object and frees any allocated resources
*/
SignatureConfigurationDialogImpl::~SignatureConfigurationDialogImpl()
{
// no need to delete child widgets, Qt does it all for us
}
/**
Enables or disables the widgets in this dialog according to the
capabilities of the current plugin passed as a parameter.
*/
void SignatureConfigurationDialogImpl::enableDisable( CryptPlugWrapper* cryptPlug )
{
// disable the whole page if the plugin does not support
// signatures (e.g. encryption only)
setEnabled( cryptPlug->hasFeature( Feature_SignMessages ) );
// enable and disable the various components depending on the
// availability of a feature in the crypto plugin
sendCertificatesBG->setEnabled( cryptPlug->hasFeature( Feature_SendCertificates ) );
warnSignatureCertificateExpiresCB->setEnabled( cryptPlug->hasFeature( Feature_WarnSignCertificateExpiry ) );
warnSignatureCertificateExpiresSB->setEnabled( cryptPlug->hasFeature( Feature_WarnSignCertificateExpiry ) );
warnCACertificateExpiresCB->setEnabled( cryptPlug->hasFeature( Feature_WarnSignCertificateExpiry ) );
warnCACertificateExpiresSB->setEnabled( cryptPlug->hasFeature( Feature_WarnSignCertificateExpiry ) );
warnRootCertificateExpiresCB->setEnabled( cryptPlug->hasFeature( Feature_WarnSignCertificateExpiry ) );
warnRootCertificateExpiresSB->setEnabled( cryptPlug->hasFeature( Feature_WarnSignCertificateExpiry ) );
warnAddressNotInCertificateCB->setEnabled( cryptPlug->hasFeature( Feature_WarnSignEmailNotInCertificate ) );
pinEntryBG->setEnabled( cryptPlug->hasFeature( Feature_PinEntrySettings ) );
saveMessagesBG->setEnabled( cryptPlug->hasFeature( Feature_StoreMessagesWithSigs ) );
}
#include "signatureconfigurationdialogimpl.moc"