diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-10 19:24:39 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-11 18:31:38 +0100 |
commit | c8c8cc517dae089c1241890133837339a716f225 (patch) | |
tree | ed33acfa3d4de2fa33879c0aeee460acc51f5bea /src/Main/Forms/Forms.h | |
parent | e6730069695d1206a3650af7ffcc787910e9d1c2 (diff) | |
download | VeraCrypt-c8c8cc517dae089c1241890133837339a716f225.tar.gz VeraCrypt-c8c8cc517dae089c1241890133837339a716f225.zip |
Linux/MacOSX: Implement generating more than one keyfile, specifying the size of the generated keyfiles and letting VeraCrypt choose random size values.
Diffstat (limited to 'src/Main/Forms/Forms.h')
-rw-r--r-- | src/Main/Forms/Forms.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Main/Forms/Forms.h b/src/Main/Forms/Forms.h index 60d61b0a..e56f9919 100644 --- a/src/Main/Forms/Forms.h +++ b/src/Main/Forms/Forms.h @@ -410,12 +410,22 @@ namespace VeraCrypt wxStaticText* RandomPoolStaticText;
wxCheckBox* ShowRandomPoolCheckBox;
wxStaticText* MouseStaticText;
+ wxStaticText* m_staticText60;
+ wxSpinCtrl* NumberOfKeyfiles;
+ wxPanel* m_panel18;
+ wxStaticText* m_staticText63;
+ wxSpinCtrl* KeyfilesSize;
+ wxCheckBox* RandomSizeCheckBox;
+ wxStaticText* m_staticText65;
+ wxTextCtrl* KeyfilesBaseName;
+ wxPanel* m_panel19;
wxButton* GenerateButton;
// Virtual event handlers, overide them in your derived class
virtual void OnMouseMotion( wxMouseEvent& event ) { event.Skip(); }
virtual void OnHashSelected( wxCommandEvent& event ) { event.Skip(); }
virtual void OnShowRandomPoolCheckBoxClicked( wxCommandEvent& event ) { event.Skip(); }
+ virtual void OnRandomSizeCheckBoxClicked( wxCommandEvent& event ) { event.Skip(); }
virtual void OnGenerateButtonClick( wxCommandEvent& event ) { event.Skip(); }
|