mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
20 lines
431 B
C++
20 lines
431 B
C++
// AboutDialog.h
|
|
|
|
#ifndef __ABOUT_DIALOG_H
|
|
#define __ABOUT_DIALOG_H
|
|
|
|
#include "../../../Windows/Control/Dialog.h"
|
|
|
|
#include "AboutDialogRes.h"
|
|
|
|
class CAboutDialog: public NWindows::NControl::CModalDialog
|
|
{
|
|
public:
|
|
virtual bool OnInit();
|
|
virtual void OnHelp();
|
|
virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
|
INT_PTR Create(HWND wndParent = 0) { return CModalDialog::Create(IDD_ABOUT, wndParent); }
|
|
};
|
|
|
|
#endif
|