Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.1 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // About.h
  7. //
  8. // Abstract:
  9. // Definition of the CAboutDlg class.
  10. //
  11. // Implementation File:
  12. // About.cpp
  13. //
  14. // Author:
  15. // David Potter (davidp) October 11, 1996
  16. //
  17. // Revision History:
  18. //
  19. // Notes:
  20. //
  21. /////////////////////////////////////////////////////////////////////////////
  22. #ifndef _ABOUT_H_
  23. #define _ABOUT_H_
  24. /////////////////////////////////////////////////////////////////////////////
  25. // Include Files
  26. /////////////////////////////////////////////////////////////////////////////
  27. /////////////////////////////////////////////////////////////////////////////
  28. // Forward Class Declarations
  29. /////////////////////////////////////////////////////////////////////////////
  30. class CAboutDlg;
  31. /////////////////////////////////////////////////////////////////////////////
  32. // External Class Declarations
  33. /////////////////////////////////////////////////////////////////////////////
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CAboutDlg:
  36. /////////////////////////////////////////////////////////////////////////////
  37. class CAboutDlg : public CDialog
  38. {
  39. public:
  40. CAboutDlg(void);
  41. // Dialog Data
  42. //{{AFX_DATA(CAboutDlg)
  43. enum { IDD = IDD_ABOUTBOX };
  44. CStatic m_staticIcon;
  45. CStatic m_staticVersion;
  46. CStatic m_staticFileTitle;
  47. CStatic m_staticProductTitle;
  48. CStatic m_staticWarning;
  49. CStatic m_staticCopyright;
  50. CString m_strWarning;
  51. CString m_strProductTitle;
  52. CString m_strFileTitle;
  53. CString m_strVersion;
  54. CString m_strCopyright;
  55. //}}AFX_DATA
  56. // ClassWizard generated virtual function overrides
  57. //{{AFX_VIRTUAL(CAboutDlg)
  58. protected:
  59. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  60. //}}AFX_VIRTUAL
  61. // Implementation
  62. protected:
  63. CFont m_fontProductTitle;
  64. CFont m_fontCopyright;
  65. CFont m_fontWarning;
  66. CImageList m_ilImages;
  67. //{{AFX_MSG(CAboutDlg)
  68. virtual BOOL OnInitDialog();
  69. //}}AFX_MSG
  70. DECLARE_MESSAGE_MAP()
  71. }; //*** class CAboutDlg
  72. /////////////////////////////////////////////////////////////////////////////
  73. #endif // _ABOUT_H_