Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OpenCallbackGUI.h « GUI « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6b531d3c32996240221568d732a5386aacad7750 (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
// OpenCallbackGUI.h

#ifndef __OPEN_CALLBACK_GUI_H
#define __OPEN_CALLBACK_GUI_H

#include "../Common/ArchiveOpenCallback.h"

class COpenCallbackGUI: public IOpenCallbackUI
{
public:
  HRESULT CheckBreak();
  HRESULT SetTotal(const UInt64 *files, const UInt64 *bytes);
  HRESULT SetCompleted(const UInt64 *files, const UInt64 *bytes);
  #ifndef _NO_CRYPTO
  HRESULT CryptoGetTextPassword(BSTR *password);
  HRESULT GetPasswordIfAny(UString &password);
  bool WasPasswordAsked();
  void ClearPasswordWasAskedFlag();
  
  bool PasswordIsDefined;
  UString Password;
  bool PasswordWasAsked;
  #endif  
  
  HWND ParentWindow;

  COpenCallbackGUI(): 
    #ifndef _NO_CRYPTO
    PasswordIsDefined(false), 
    PasswordWasAsked(false),
    #endif  
    ParentWindow(0) {}
};

#endif