AVIButton.h
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. #if !defined(AFX_AVIBUTTON_H__1D37DCDD_3DCE_4E73_BBA1_CB1DD7A499E2__INCLUDED_)
  2. #define AFX_AVIBUTTON_H__1D37DCDD_3DCE_4E73_BBA1_CB1DD7A499E2__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // AVIButton.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CAVIButton window
  10. class CAVIButton : public CButton
  11. {
  12. // Construction
  13. public:
  14. CAVIButton();
  15. // Attributes
  16. public:
  17. //AVI播放控件
  18. CAnimateCtrl m_AnimateCtrl;
  19. //AVI文件的ID值
  20. DWORD aviResource;
  21. // Operations
  22. public:
  23. // void DrawButton(CDC* pDC, UINT nState, CRect rect);
  24. public:
  25.     BOOL Create( LPCTSTR lpszCaption, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID );
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CAVIButton)
  29. public:
  30. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. public:
  34. void SetAVIResource(DWORD resource);
  35. virtual ~CAVIButton();
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CAVIButton)
  39. afx_msg void OnClicked();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_AVIBUTTON_H__1D37DCDD_3DCE_4E73_BBA1_CB1DD7A499E2__INCLUDED_)