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

Windows编程

开发平台:

Visual C++

  1. // timectl.h : Declaration of the CTimeCtrl OLE control class.
  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. // Numeric constants
  14. const DEFAULT_INTERVAL  = 1000;
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CTimeCtrl : See timectl.cpp for implementation.
  17. class CTimeCtrl : public COleControl
  18. {
  19. DECLARE_DYNCREATE(CTimeCtrl)
  20. // Constructor
  21. public:
  22. CTimeCtrl();
  23. // Overrides
  24. // Drawing function
  25. virtual void OnDraw(
  26. CDC* pdc, const CRect& rcBounds, const CRect& rcInvalid);
  27. // Persistence
  28. virtual void DoPropExchange(CPropExchange* pPX);
  29. // Reset control state
  30. virtual void OnResetState();
  31. virtual void OnAmbientPropertyChange(DISPID dispid);
  32. virtual void OnEnabledChanged();
  33. // Implementation
  34. protected:
  35. ~CTimeCtrl();
  36. DECLARE_OLECREATE_EX(CTimeCtrl) // Class factory and guid
  37. DECLARE_OLETYPELIB(CTimeCtrl)       // GetTypeInfo
  38. DECLARE_PROPPAGEIDS(CTimeCtrl)      // Property page IDs
  39. DECLARE_OLECTLTYPE(CTimeCtrl)       // Type name and misc status
  40. // Message maps
  41. //{{AFX_MSG(CTimeCtrl)
  42. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43. afx_msg void OnDestroy();
  44. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  45. afx_msg void OnTimer(UINT nIDEvent);
  46. //}}AFX_MSG
  47. DECLARE_MESSAGE_MAP()
  48. // Dispatch maps
  49. //{{AFX_DISPATCH(CTimeCtrl)
  50. short m_interval;
  51. afx_msg void OnIntervalChanged();
  52. //}}AFX_DISPATCH
  53. DECLARE_DISPATCH_MAP()
  54. afx_msg void AboutBox();
  55. // Event maps
  56. //{{AFX_EVENT(CTimeCtrl)
  57. void FireTimer()
  58. {FireEvent(eventidTimer,EVENT_PARAM(VTS_NONE));}
  59. //}}AFX_EVENT
  60. DECLARE_EVENT_MAP()
  61. // Dispatch and event IDs
  62. public:
  63. enum {
  64. //{{AFX_DISP_ID(CTimeCtrl)
  65. dispidInterval = 1L,
  66. eventidTimer = 1L,
  67. //}}AFX_DISP_ID
  68. };
  69. protected:
  70. void OnSetClientSite();
  71. void StartTimer();
  72. void StopTimer();
  73. };