home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 19.ddi / MFC / SAMPLES / VBCIRCLE / DIALOG.H_ / DIALOG.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  1.5 KB  |  53 lines

  1. // dialog.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 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 Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CCircleDialog dialog
  17.  
  18. class CCircleDialog : public CDialog
  19. {
  20.     DECLARE_DYNAMIC(CCircleDialog)
  21. // Construction
  22. public:
  23.     CCircleDialog(CWnd* pParent = NULL);    // standard constructor
  24.  
  25. // Dialog Data
  26.     // The following is dialog data that we will copy to and from
  27.     // the dialog box on the screen.  Each of these member variables
  28.     // are used in exchange of data from the standard edit controls
  29.     // in the dialog box.
  30.  
  31.     //{{AFX_DATA(CCircleDialog)
  32.     enum { IDD = IDD_CIRCLE_DLG };
  33.     BOOL    m_bBorder;
  34.     CString m_strCaption;
  35.     CVBControl* m_circle;
  36.     int     m_nShape;
  37.     //}}AFX_DATA
  38.  
  39. // Implementation
  40. protected:
  41.     virtual BOOL OnInitDialog();
  42.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  43.  
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CCircleDialog)
  46.     afx_msg void OnUpdateCircle();
  47.     afx_msg void OnClickinCircle(UINT, int, CWnd*, LPVOID);
  48.     afx_msg void OnClickoutCircle(UINT, int, CWnd*, LPVOID);
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53.