TreePropertySheetAnimateWidget.h
上传用户:qifu0001
上传日期:2007-01-02
资源大小:52k
文件大小:1k
源码类别:

TreeView控件

开发平台:

Visual C++

  1. // TreePropertySheetAnimateWidget.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CTreePropertySheetAnimateWidget window
  5. class CTreePropertySheetAnimateWidget : public CTreePropertySheetInterface, public CWnd
  6. {
  7. // Construction
  8. public:
  9. CTreePropertySheetAnimateWidget(CWnd *pParentWnd,COLORREF clrLeft1,COLORREF clrLeft2,COLORREF clrRight1,COLORREF clrRight2,int nSteps);
  10. // Attributes
  11. public:
  12. COLORREF m_clrLeft1;
  13. COLORREF m_clrLeft2;
  14. COLORREF m_clrRight1;
  15. COLORREF m_clrRight2;
  16. int m_nSteps;
  17. int m_nStep;
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CTreePropertySheetAnimateWidget)
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~CTreePropertySheetAnimateWidget();
  27. // Generated message map functions
  28. protected:
  29. //{{AFX_MSG(CTreePropertySheetAnimateWidget)
  30. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  31. afx_msg void OnTimer(UINT nIDEvent);
  32. //}}AFX_MSG
  33. DECLARE_MESSAGE_MAP()
  34. };
  35. /////////////////////////////////////////////////////////////////////////////