mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
26 lines
532 B
C++
26 lines
532 B
C++
// EditDialog.h
|
|
|
|
#ifndef __EDIT_DIALOG_H
|
|
#define __EDIT_DIALOG_H
|
|
|
|
#include "../../../Windows/Control/Dialog.h"
|
|
#include "../../../Windows/Control/Edit.h"
|
|
|
|
#include "EditDialogRes.h"
|
|
|
|
class CEditDialog: public NWindows::NControl::CModalDialog
|
|
{
|
|
NWindows::NControl::CEdit _edit;
|
|
virtual bool OnInit();
|
|
virtual bool OnSize(WPARAM wParam, int xSize, int ySize);
|
|
public:
|
|
UString Title;
|
|
UString Text;
|
|
|
|
INT_PTR Create(HWND wndParent = 0) { return CModalDialog::Create(IDD_EDIT_DLG, wndParent); }
|
|
|
|
CEditDialog() {}
|
|
};
|
|
|
|
#endif
|