home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / dlgtempl / setupdlg.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  68 lines

  1. // dlgtempDlg.h : header file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CDlgtempDlg dialog
  16.  
  17. #ifndef INC_SETUPDLG_H
  18. #define INC_SETUPDLG_H
  19.  
  20. #include "itemtemp.h"
  21. class CDlgtempDlg : public CDialog
  22. {
  23. // Construction
  24. public:
  25.     CDlgtempDlg(CWnd* pParent = NULL);  // standard constructor
  26.  
  27. // Dialog Data
  28.     //{{AFX_DATA(CDlgtempDlg)
  29.     enum { IDD = IDD_DLGTEMP_DIALOG };
  30.     CString m_strCaption;
  31.     UINT    m_x;
  32.     UINT    m_y;
  33.     UINT    m_nWidth;
  34.     UINT    m_nHeight;
  35.     int     m_nItem;
  36.     CString m_strSelectedItem;
  37.     //}}AFX_DATA
  38.  
  39.     int     m_nActiveItem;
  40.  
  41.     // ClassWizard generated virtual function overrides
  42.     //{{AFX_VIRTUAL(CDlgtempDlg)
  43.     protected:
  44.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  45.     //}}AFX_VIRTUAL
  46.  
  47.     CMyDialogTemplate   m_dlgTemplate;
  48. // Implementation
  49. protected:
  50.     HICON m_hIcon;
  51.  
  52.     void InfoToDialogHelper(int nItem, LPCTSTR lpszSelectedItem);
  53.  
  54.     // Generated message map functions
  55.     //{{AFX_MSG(CDlgtempDlg)
  56.     virtual BOOL OnInitDialog();
  57.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  58.     afx_msg void OnPaint();
  59.     afx_msg void OnDemoIt();
  60.     afx_msg void OnButtonInformation();
  61.     afx_msg void OnStaticTextInformation();
  62.     afx_msg void OnEditControlInformation();
  63.     //}}AFX_MSG
  64.     DECLARE_MESSAGE_MAP()
  65. };
  66.  
  67. #endif
  68.