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

Windows编程

开发平台:

Visual C++

  1. // animctrl.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. #ifndef _ANIMCTRL_H
  13. #define _ANIMCTRL_H
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CAnimateCtrlPage dialog
  16. class CAnimateCtrlPage : public CPropertyPage
  17. {
  18. // Construction
  19. public:
  20. CAnimateCtrlPage();   // standard constructor
  21. // Dialog Data
  22. //{{AFX_DATA(CAnimateCtrlPage)
  23. enum { IDD = IDD_ANIMCTRL };
  24. CString m_cstrFileName;
  25. BOOL m_bCentered;
  26. BOOL m_bTransparent;
  27. BOOL m_bAutoplay;
  28. //}}AFX_DATA
  29. CAnimateCtrl m_AnimateCtrl;
  30. CRect m_rectAnimateCtrl;
  31. DWORD m_dwStyle;   // control styles
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CAnimateCtrlPage)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. virtual BOOL OnInitDialog();
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. protected:
  41. void ApplyChanges();
  42. // Generated message map functions
  43. //{{AFX_MSG(CAnimateCtrlPage)
  44. afx_msg void OnFileChange();
  45. afx_msg void OnBrowse();
  46. afx_msg void OnCenter();
  47. afx_msg void OnTransparent();
  48. afx_msg void OnAutoplay();
  49. afx_msg void OnPlay();
  50. afx_msg void OnStop();
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. #endif