mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 09:15:00 -06:00
32 lines
806 B
C++
Executable File
32 lines
806 B
C++
Executable File
// CopyDialog.h
|
|
|
|
#ifndef ZIP7_INC_COPY_DIALOG_H
|
|
#define ZIP7_INC_COPY_DIALOG_H
|
|
|
|
#include "../../../Windows/Control/ComboBox.h"
|
|
#include "../../../Windows/Control/Dialog.h"
|
|
|
|
#include "CopyDialogRes.h"
|
|
|
|
const int kCopyDialog_NumInfoLines = 11;
|
|
|
|
class CCopyDialog: public NWindows::NControl::CModalDialog
|
|
{
|
|
NWindows::NControl::CComboBox _path;
|
|
virtual void OnOK() Z7_override;
|
|
virtual bool OnInit() Z7_override;
|
|
virtual bool OnSize(WPARAM wParam, int xSize, int ySize) Z7_override;
|
|
virtual bool OnButtonClicked(unsigned buttonID, HWND buttonHWND) Z7_override;
|
|
void OnButtonSetPath();
|
|
public:
|
|
UString Title;
|
|
UString Static;
|
|
UString Value;
|
|
UString Info;
|
|
UStringVector Strings;
|
|
|
|
INT_PTR Create(HWND parentWindow = NULL) { return CModalDialog::Create(IDD_COPY, parentWindow); }
|
|
};
|
|
|
|
#endif
|