VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Main/Forms/VolumePimWizardPage.cpp
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2015-06-28 20:19:19 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2015-06-28 20:25:22 +0200
commit439e0a9588f83e93b609563bcef0a03b13928534 (patch)
tree371492ae2fdb8c448deaa82358ac26e846f7a021 /src/Main/Forms/VolumePimWizardPage.cpp
parentda8aec4292ab27928f4f9a2f2645c46029de7553 (diff)
downloadVeraCrypt-439e0a9588f83e93b609563bcef0a03b13928534.tar.gz
VeraCrypt-439e0a9588f83e93b609563bcef0a03b13928534.zip
Linux/MacOSX: Add dedicated PIM page in the volume creation wizard. Correct PIM value check logic.
Diffstat (limited to 'src/Main/Forms/VolumePimWizardPage.cpp')
-rw-r--r--src/Main/Forms/VolumePimWizardPage.cpp67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/Main/Forms/VolumePimWizardPage.cpp b/src/Main/Forms/VolumePimWizardPage.cpp
new file mode 100644
index 00000000..d7176bb2
--- /dev/null
+++ b/src/Main/Forms/VolumePimWizardPage.cpp
@@ -0,0 +1,67 @@
+/*
+ Copyright (c) 2015 Mounir IDRASSI for the VeraCrypt project.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+#include "System.h"
+#include "Main/GraphicUserInterface.h"
+#include "VolumePimWizardPage.h"
+
+namespace VeraCrypt
+{
+ VolumePimWizardPage::VolumePimWizardPage (wxPanel* parent)
+ : VolumePimWizardPageBase (parent)
+ {
+ }
+
+ VolumePimWizardPage::~VolumePimWizardPage ()
+ {
+ }
+
+ int VolumePimWizardPage::GetVolumePim () const
+ {
+ if (VolumePimTextCtrl->IsEnabled ())
+ {
+ wxString pinStr (VolumePimTextCtrl->GetValue());
+ long pin = 0;
+ if (pinStr.IsEmpty())
+ return 0;
+ if (pinStr.ToLong (&pin))
+ return (int) pin;
+ else
+ return -1;
+ }
+ else
+ return 0;
+ }
+
+ bool VolumePimWizardPage::IsValid ()
+ {
+ return true;
+ }
+
+ void VolumePimWizardPage::OnPimChanged (wxCommandEvent& event)
+ {
+ if (GetVolumePim() != 0)
+ {
+ VolumePinHelpStaticText->SetForegroundColour(*wxRED);
+ VolumePinHelpStaticText->SetLabel(LangString["PIM_CHANGE_WARNING"]);
+ }
+ else
+ {
+ VolumePinHelpStaticText->SetForegroundColour(*wxBLACK);
+ VolumePinHelpStaticText->SetLabel(LangString["IDC_PIM_HELP"]);
+ }
+ }
+}