ChildFormView.h
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. #if !defined(AFX_CHILDFORMVIEW_H__5A1BD4EF_2576_4480_BC1A_54B9357C8DC8__INCLUDED_)
  2. #define AFX_CHILDFORMVIEW_H__5A1BD4EF_2576_4480_BC1A_54B9357C8DC8__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ChildFormView.h : header file
  7. //
  8. #include "AviPlayer.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CAviView form view
  11. #ifndef __AFXEXT_H__
  12. #include <afxext.h>
  13. #endif
  14. class CAviView : public CExtNSB < CExtScrollWnd >
  15. {
  16. public:
  17. CAviView();
  18. DECLARE_DYNAMIC( CAviView );
  19. // Attributes
  20. public:
  21. // Operations
  22. public:
  23. bool Create(
  24. CWnd * pWndParent,
  25. UINT nDlgCtrlID = AFX_IDW_PANE_FIRST,
  26. CRect rc = CRect( 0,0,0,0 ),
  27. DWORD dwStyle = WS_CHILD|WS_VISIBLE|WS_HSCROLL|WS_VSCROLL|WS_CLIPCHILDREN|WS_CLIPSIBLINGS,
  28. DWORD dwStyleEx = 0L
  29. );
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CAviView)
  33. public:
  34. protected:
  35. virtual void PostNcDestroy();
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. virtual ~CAviView();
  40. CExtLabel m_wndLabelCorner;
  41. void _AdjustCornerBetweenScrollBars();
  42. #ifdef _DEBUG
  43. virtual void AssertValid() const;
  44. virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46. virtual CSize OnSwGetTotalSize() const;
  47. virtual CSize OnSwGetPageSize( int nDirection ) const
  48. {
  49. nDirection;
  50. return CSize( 50, 50 );
  51. }
  52. virtual CSize OnSwGetLineSize( int nDirection ) const
  53. {
  54. nDirection;
  55. return CSize( 10, 10 );
  56. }
  57. virtual bool OnSwDoScrollBy(
  58. CSize sizeScroll,
  59. bool bDoScroll = true
  60. );
  61. virtual CRect OnSwRecalcLayout(
  62. bool bDoLayout,
  63. LPCRECT pRectClientSrc  = NULL
  64. );
  65. // Generated message map functions
  66. //{{AFX_MSG(CAviView)
  67. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  68. //}}AFX_MSG
  69. DECLARE_MESSAGE_MAP()
  70. private:
  71. bool m_bInitComplete;
  72. };
  73. /////////////////////////////////////////////////////////////////////////////
  74. //{{AFX_INSERT_LOCATION}}
  75. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  76. #endif // !defined(AFX_CHILDFORMVIEW_H__5A1BD4EF_2576_4480_BC1A_54B9357C8DC8__INCLUDED_)