home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / drawcli / rectdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.1 KB  |  43 lines

  1. // rectdlg.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CRectDlg dialog
  16.  
  17. class CRectDlg : public CPropertyPage
  18. {
  19. // Construction
  20. public:
  21.     CRectDlg(CWnd* pParent = NULL); // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CRectDlg)
  25.     enum { IDD = IDD_PROP_RECT };
  26.     CSpinButtonCtrl m_SpinCtrl;
  27.     BOOL    m_bNoFill;
  28.     UINT    m_penSize;
  29.     //}}AFX_DATA
  30.  
  31. // Implementation
  32. protected:
  33.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CRectDlg)
  37.     virtual BOOL OnInitDialog();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43.