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

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

#include "resource.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 aWndParent = 0)
    { return CModalDialog::Create(MAKEINTRESOURCE(IDD_ABOUT), aWndParent); }
};

#endif