/* Derived from source code of TrueCrypt 7.1a, which is Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed by the TrueCrypt License 3.0. Modifications and additions to the original source code (contained in this file) and all other portions of this file are Copyright (c) 2013-2017 IDRIX and are governed by the Apache License 2.0 the full text of which is contained in the file License.txt included in VeraCrypt binary and source code distribution packages. */ #ifndef TC_HEADER_Main_Forms_ChangePasswordDialog #define TC_HEADER_Main_Forms_ChangePasswordDialog #include "Forms.h" #include "Main/Main.h" #include "VolumePasswordPanel.h" namespace VeraCrypt { class ChangePasswordDialog : public ChangePasswordDialogBase { public: struct Mode { enum Enum { ChangePasswordAndKeyfiles, ChangeKeyfiles, RemoveAllKeyfiles, ChangePkcs5Prf }; }; ChangePasswordDialog (wxWindow* parent, shared_ptr volumePath, Mode::Enum mode = Mode::ChangePasswordAndKeyfiles, shared_ptr password = shared_ptr (), shared_ptr keyfiles = shared_ptr (), shared_ptr newPassword = shared_ptr (), shared_ptr newKeyfiles = shared_ptr ()); virtual ~ChangePasswordDialog (); #ifdef TC_MACOSX virtual bool ProcessEvent(wxEvent& event); #endif protected: void OnOKButtonClick (wxCommandEvent& event); void OnPasswordPanelUpdate (); void OnPasswordPanelUpdate (EventArgs &args) { OnPasswordPanelUpdate(); } Mode::Enum DialogMode; VolumePasswordPanel *CurrentPasswordPanel; VolumePasswordPanel *NewPasswordPanel; shared_ptr Path; }; } #endif // TC_HEADER_Main_Forms_ChangePasswordDialog ypt_1.25.7&id=ee0a2659da24b4b7543f52647fb2d8cbbd12408c'>treecommitdiff
blob: cc50fa62d36f630e407be7056d13068cfc500cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 Derived from source code of TrueCrypt 7.1a, which is
 Copyright (c) 2008-2012 TrueCrypt Developers Association and which is governed
 by the TrueCrypt License 3.0.

 Modifications and additions to the original source code (contained in this file)
 and all other portions of this file are Copyright (c) 2013-2017 IDRIX
 and are governed by the Apache License 2.0 the full text of which is
 contained in the file License.txt included in VeraCrypt binary and source
 code distribution packages.
*/

#ifndef TC_HEADER_Main_Forms_ProgressWizardPage
#define TC_HEADER_Main_Forms_ProgressWizardPage

#include "Forms.h"

namespace VeraCrypt
{
	class ProgressWizardPage : public ProgressWizardPageBase
	{
	public:
		ProgressWizardPage (wxPanel* parent, bool enableAbort = false);
		~ProgressWizardPage () { }

		void EnableAbort (bool enable = true) { AbortButton->Enable (enable); }
		bool IsValid () { return true; }
		void SetMaxStaticTextWidth (int width);
		void SetPageText (const wxString &text) { InfoStaticText->SetLabel (text); }
		void SetProgressRange (uint64 progressBarRange);

		Event AbortEvent;
		SharedVal <uint64> ProgressValue;

	protected:
		void OnAbortButtonClick (wxCommandEvent& event);
		void OnTimer ();

		auto_ptr <wxTimer> mTimer;
		int PreviousGaugeValue;
		uint64 ProgressBarRange;
		int RealProgressBarRange;
	};
}

#endif // TC_HEADER_Main_Forms_ProgressWizardPage