home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / cmnctrl.pak / ANIMCTRL.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  64 lines

  1. // animctrl.h : header file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #ifndef _ANIMCTRL_H
  15. #define _ANIMCTRL_H
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CAnimateCtrlPage dialog
  19.  
  20. class CAnimateCtrlPage : public CPropertyPage
  21. {
  22. // Construction
  23. public:
  24.     CAnimateCtrlPage();   // standard constructor
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CAnimateCtrlPage)
  28.     enum { IDD = IDD_ANIMCTRL };
  29.     CString m_cstrFileName;
  30.     BOOL m_bCentered;
  31.     BOOL m_bTransparent;
  32.     BOOL m_bAutoplay;
  33.     //}}AFX_DATA
  34.     CAnimateCtrl m_AnimateCtrl;
  35.     CRect m_rectAnimateCtrl;
  36.     DWORD m_dwStyle;   // control styles
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CAnimateCtrlPage)
  40.     protected:
  41.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42.     virtual BOOL OnInitDialog();
  43.     //}}AFX_VIRTUAL
  44.  
  45. // Implementation
  46. protected:
  47.  
  48.     void ApplyChanges();
  49.  
  50.     // Generated message map functions
  51.     //{{AFX_MSG(CAnimateCtrlPage)
  52.     afx_msg void OnFileChange();
  53.     afx_msg void OnBrowse();
  54.     afx_msg void OnCenter();
  55.     afx_msg void OnTransparent();
  56.     afx_msg void OnAutoplay();
  57.     afx_msg void OnPlay();
  58.     afx_msg void OnStop();
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63. #endif
  64.