RangeDlg.h
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #if !defined(AFX_RANGEDLG_H__C8FDAEA4_19DB_43A2_B5B1_57440BF180AC__INCLUDED_)
  2. #define AFX_RANGEDLG_H__C8FDAEA4_19DB_43A2_B5B1_57440BF180AC__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // RangeDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CRangeDlg dialog
  10. class CRangeDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CRangeDlg(CWnd* pParent = NULL);   // standard constructor
  15. void SetStart(int start);
  16. int  GetStart(void);
  17. void SetEnd(int end);
  18. int  GetEnd(void);
  19. void SetFrameCount(int frames);
  20. // Dialog Data
  21. //{{AFX_DATA(CRangeDlg)
  22. enum { IDD = IDD_RANGE };
  23. int m_len;
  24. int m_start;
  25. int m_stop;
  26. int m_full;
  27. //}}AFX_DATA
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CRangeDlg)
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. protected:
  36. int sframe, eframe;
  37. int fcount;
  38. // Generated message map functions
  39. //{{AFX_MSG(CRangeDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnUpdateEditStart();
  42. afx_msg void OnUpdateEditStop();
  43. virtual void OnOK();
  44. //}}AFX_MSG
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_RANGEDLG_H__C8FDAEA4_19DB_43A2_B5B1_57440BF180AC__INCLUDED_)