VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Forms/VolumePasswordWizardPage.h
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2015-07-19 08:46:27 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2015-07-19 11:29:45 +0200
commit515895342820a9d0a35391ec4d316c3782a75768 (patch)
treeb3c64668eba1bd654914acd42e986d6f90d80462 /src/Main/Forms/VolumePasswordWizardPage.h
parent63818bcaa44b9ce0b59ac2c56afdee1f5e1976ba (diff)
downloadVeraCrypt-515895342820a9d0a35391ec4d316c3782a75768.tar.gz
VeraCrypt-515895342820a9d0a35391ec4d316c3782a75768.zip
User Interface enhancements for PIM
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); }