home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 5 / MasteringVisualBasic5.iso / protview / demowinx / data.3 / shape / samples / MFC / SHAPDEMO / SHAPDLG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-28  |  1.1 KB  |  47 lines

  1. // ShapDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CShapDlg dialog
  6.  
  7. class CShapDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CShapDlg(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CShapDlg)
  15.     enum { IDD = IDD_SHAPDEMO_DIALOG };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19.     // ClassWizard generated virtual function overrides
  20.     //{{AFX_VIRTUAL(CShapDlg)
  21.     protected:
  22.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  23.     //}}AFX_VIRTUAL
  24.  
  25. // Implementation
  26. protected:
  27.     HICON m_hIcon;
  28.  
  29.     // Generated message map functions
  30.     //{{AFX_MSG(CShapDlg)
  31.     virtual BOOL OnInitDialog();
  32.     afx_msg void OnPaint();
  33.     afx_msg HCURSOR OnQueryDragIcon();
  34.     afx_msg void OnHorizontal();
  35.     afx_msg void OnRotate();
  36.     afx_msg void OnStopgo();
  37.     afx_msg void OnSymmetrical();
  38.     afx_msg void OnTransparent();
  39.     afx_msg void OnVertical();
  40.     afx_msg void OnDestroy();
  41.     afx_msg void OnTimer(UINT nIDEvent);
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. private:
  45.     UINT m_uTimer;
  46. };
  47.