mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-12 07:09:54 -06:00
Initialer Commit
This commit is contained in:
19
CPP/7zip/UI/FileManager/AboutDialog.h
Normal file
19
CPP/7zip/UI/FileManager/AboutDialog.h
Normal file
@@ -0,0 +1,19 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user