VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Forms/VolumePasswordWizardPage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Main/Forms/VolumePasswordWizardPage.h')
-rw-r--r--src/Main/Forms/VolumePasswordWizardPage.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Main/Forms/VolumePasswordWizardPage.h b/src/Main/Forms/VolumePasswordWizardPage.h
index aad86c86..652aed88 100644
--- a/src/Main/Forms/VolumePasswordWizardPage.h
+++ b/src/Main/Forms/VolumePasswordWizardPage.h
@@ -22,7 +22,10 @@ namespace VeraCrypt
shared_ptr <KeyfileList> GetKeyfiles () const { return PasswordPanel->GetKeyfiles(); }
shared_ptr <VolumePassword> GetPassword () const { return PasswordPanel->GetPassword(); }
- int GetVolumePim () const { return PasswordPanel->GetVolumePim(); }
+ void EnableUsePim () { PasswordPanel->EnableUsePim (); }
+ bool IsPimSelected () const { return PasswordPanel->IsUsePimChecked ();}
+ void SetPimSelected (bool selected) const { PasswordPanel->SetUsePimChecked (selected);}
+
shared_ptr <Pkcs5Kdf> GetPkcs5Kdf () const { return PasswordPanel->GetPkcs5Kdf(); }
bool IsValid ();
void SetMaxStaticTextWidth (int width) { InfoStaticText->Wrap (width); }