mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 13:15:04 -06:00
39 lines
715 B
C++
39 lines
715 B
C++
// UpdateCallbackGUI.h
|
|
|
|
#ifndef __UPDATE_CALLBACK_GUI_H
|
|
#define __UPDATE_CALLBACK_GUI_H
|
|
|
|
#include "../Common/Update.h"
|
|
#include "../Common/ArchiveOpenCallback.h"
|
|
#include "../FileManager/ProgressDialog2.h"
|
|
|
|
class CUpdateCallbackGUI:
|
|
public IOpenCallbackUI,
|
|
public IUpdateCallbackUI2
|
|
{
|
|
public:
|
|
bool PasswordIsDefined;
|
|
UString Password;
|
|
bool AskPassword;
|
|
bool PasswordWasAsked;
|
|
UInt64 NumFiles;
|
|
|
|
CUpdateCallbackGUI():
|
|
PasswordIsDefined(false),
|
|
PasswordWasAsked(false),
|
|
AskPassword(false)
|
|
{}
|
|
|
|
~CUpdateCallbackGUI();
|
|
void Init();
|
|
|
|
INTERFACE_IUpdateCallbackUI2(;)
|
|
INTERFACE_IOpenCallbackUI(;)
|
|
|
|
UStringVector FailedFiles;
|
|
|
|
CProgressDialog *ProgressDialog;
|
|
};
|
|
|
|
#endif
|