RATEDLG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // RateDlg.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.   Purpose:
  14. Interface to CRateDlg, which allows the user to specify how often to
  15. update the main dialog display.
  16.   Functions:
  17. CRateDlg::CRateDlg()            -- constructor
  18. CRateDlg::DoDataExchange()      -- dialog data exchange/validation
  19. CRateDlg::GetRate()             -- retrieve update rate
  20. CRateDlg::OnInitDialog()        -- initialize dialog
  21.   Development Team:
  22. Mary Kirtland
  23.   Ported to 32-bit by:
  24. Mike Hedley
  25.   Created by Microsoft Product Support Services, Premier ISV Support
  26.   Copyright (c) 1998 Microsoft Corporation. All rights reserved.
  27. ****************************************************************************/
  28. #ifndef __RATEDLG_H__
  29. #define __RATEDLG_H__
  30. class CRateDlg : public CDialog
  31. {
  32. // Construction
  33. public:
  34. CRateDlg(UINT iRate, CWnd* pParent = NULL);
  35. // Attributes
  36. UINT GetRate() const { return m_iRate; }
  37. // Dialog Data
  38. protected:
  39. //{{AFX_DATA(CRateDlg)
  40. enum { IDD = IDD_RATE };
  41. UINT    m_iRate;
  42. //}}AFX_DATA
  43. // ClassWizard generated virtual function overrides
  44. //{{AFX_VIRTUAL(CRateDlg)
  45. protected:
  46. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  47. virtual BOOL OnInitDialog();
  48. //}}AFX_VIRTUAL
  49. // Implementation
  50. protected:
  51. // Generated message map functions
  52. //{{AFX_MSG(CRateDlg)
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. #endif //__RATEDLG_H__