Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AboutDialog.h « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8a4ea9b6a0eb8fdc90d3dd591483f71136c3d1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// AboutDialog.h
 
#ifndef __ABOUTDIALOG_H
#define __ABOUTDIALOG_H

#include "AboutDialogRes.h"
#include "Windows/Control/Dialog.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