Scope
AboutDlg.h
1 #pragma once
2 #include "resource.h"
3 
4 namespace scope {
5  namespace gui {
6 
8 class CAboutDlg : public CDialogImpl<CAboutDlg> {
9 public:
10  enum { IDD = IDD_ABOUTBOX };
11 
12  BEGIN_MSG_MAP(CAboutDlg)
13  MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
14  COMMAND_ID_HANDLER(IDOK, OnCloseCmd)
15  COMMAND_ID_HANDLER(IDCANCEL, OnCloseCmd)
16  END_MSG_MAP()
17 
18 
20  LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/);
21  LRESULT OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/);
23 };
24 
25 }
26 }
Shows information about Scope.
Definition: AboutDlg.h:8