xref: /aosp_15_r20/external/lzma/CPP/7zip/UI/FileManager/AboutDialog.h (revision f6dc9357d832569d4d1f5d24eacdb3935a1ae8e6)
1 // AboutDialog.h
2 
3 #ifndef ZIP7_INC_ABOUT_DIALOG_H
4 #define ZIP7_INC_ABOUT_DIALOG_H
5 
6 #include "../../../Windows/Control/Dialog.h"
7 
8 #include "AboutDialogRes.h"
9 
10 class CAboutDialog: public NWindows::NControl::CModalDialog
11 {
12 public:
13   virtual bool OnInit() Z7_override;
14   virtual void OnHelp() Z7_override;
15   virtual bool OnButtonClicked(unsigned buttonID, HWND buttonHWND) Z7_override;
16   INT_PTR Create(HWND wndParent = NULL) { return CModalDialog::Create(IDD_ABOUT, wndParent); }
17 };
18 
19 #endif
20