mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 05:15:01 -06:00
9.21
This commit is contained in:
committed by
Kornel Lesiński
parent
de4f8c22fe
commit
35596517f2
@@ -1,7 +1,7 @@
|
||||
// PasswordDialog.h
|
||||
|
||||
#ifndef __PASSWORDDIALOG_H
|
||||
#define __PASSWORDDIALOG_H
|
||||
#ifndef __PASSWORD_DIALOG_H
|
||||
#define __PASSWORD_DIALOG_H
|
||||
|
||||
#include "Windows/Control/Dialog.h"
|
||||
#include "Windows/Control/Edit.h"
|
||||
@@ -13,8 +13,12 @@ class CPasswordDialog: public NWindows::NControl::CModalDialog
|
||||
virtual void OnOK();
|
||||
virtual bool OnInit();
|
||||
virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
||||
void SetTextSpec();
|
||||
void ReadControls();
|
||||
public:
|
||||
UString Password;
|
||||
bool ShowPassword;
|
||||
CPasswordDialog(): ShowPassword(false) {}
|
||||
INT_PTR Create(HWND parentWindow = 0) { return CModalDialog::Create(IDD_DIALOG_PASSWORD, parentWindow); }
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user