mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
93 lines
1.9 KiB
C++
Executable File
93 lines
1.9 KiB
C++
Executable File
// OpenCallback.h
|
|
|
|
#ifndef __OPENCALLBACK_H
|
|
#define __OPENCALLBACK_H
|
|
|
|
#include "Common/MyCom.h"
|
|
#include "Common/MyString.h"
|
|
|
|
#include "Windows/FileFind.h"
|
|
|
|
#include "../../IPassword.h"
|
|
|
|
#include "../../Archive/IArchive.h"
|
|
|
|
#ifdef _SFX
|
|
#include "ProgressDialog.h"
|
|
#else
|
|
#include "ProgressDialog2.h"
|
|
#endif
|
|
|
|
|
|
class COpenArchiveCallback:
|
|
public IArchiveOpenCallback,
|
|
public IArchiveOpenVolumeCallback,
|
|
public IArchiveOpenSetSubArchiveName,
|
|
public IProgress,
|
|
public ICryptoGetTextPassword,
|
|
public CMyUnknownImp
|
|
{
|
|
UString _folderPrefix;
|
|
NWindows::NFile::NFind::CFileInfoW _fileInfo;
|
|
NWindows::NSynchronization::CCriticalSection _criticalSection;
|
|
bool _subArchiveMode;
|
|
UString _subArchiveName;
|
|
|
|
public:
|
|
bool PasswordIsDefined;
|
|
bool PasswordWasAsked;
|
|
UString Password;
|
|
HWND ParentWindow;
|
|
CProgressDialog ProgressDialog;
|
|
|
|
MY_UNKNOWN_IMP5(
|
|
IArchiveOpenCallback,
|
|
IArchiveOpenVolumeCallback,
|
|
IArchiveOpenSetSubArchiveName,
|
|
IProgress,
|
|
ICryptoGetTextPassword)
|
|
|
|
INTERFACE_IProgress(;)
|
|
INTERFACE_IArchiveOpenCallback(;)
|
|
INTERFACE_IArchiveOpenVolumeCallback(;)
|
|
|
|
// ICryptoGetTextPassword
|
|
STDMETHOD(CryptoGetTextPassword)(BSTR *password);
|
|
|
|
STDMETHOD(SetSubArchiveName(const wchar_t *name))
|
|
{
|
|
_subArchiveMode = true;
|
|
_subArchiveName = name;
|
|
return S_OK;
|
|
}
|
|
|
|
COpenArchiveCallback():
|
|
ParentWindow(0)
|
|
{
|
|
_subArchiveMode = false;
|
|
PasswordIsDefined = false;
|
|
PasswordWasAsked = false;
|
|
}
|
|
/*
|
|
void Init()
|
|
{
|
|
PasswordIsDefined = false;
|
|
_subArchiveMode = false;
|
|
}
|
|
*/
|
|
void LoadFileInfo(const UString &folderPrefix, const UString &fileName)
|
|
{
|
|
_folderPrefix = folderPrefix;
|
|
if (!_fileInfo.Find(_folderPrefix + fileName))
|
|
throw 1;
|
|
}
|
|
void ShowMessage(const UInt64 *completed);
|
|
|
|
INT_PTR StartProgressDialog(const UString &title)
|
|
{
|
|
return ProgressDialog.Create(title, ParentWindow);
|
|
}
|
|
};
|
|
|
|
#endif
|