ScrollRichEditView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_SCROLLRICHEDITVIEW_H__119F8543_B51C_4AE6_8593_75DF43572288__INCLUDED_)
  2. #define AFX_SCROLLRICHEDITVIEW_H__119F8543_B51C_4AE6_8593_75DF43572288__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ScrollRichEditView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CScrollRichEditView window
  10. class CScrollRichEditView : public CRichEditView
  11. {
  12. // Construction
  13. public:
  14. CScrollRichEditView();
  15. // Attributes
  16. public:
  17. int GetPageSize();
  18. // Operations
  19. public:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CScrollRichEditView)
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~CScrollRichEditView();
  27. public:
  28. virtual void CalcWindowRect(LPRECT lpClientRect, UINT nAdjustType = adjustBorder);
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CScrollRichEditView)
  34. afx_msg void OnSize(UINT nType, int cx, int cy);
  35. afx_msg void OnNcPaint();
  36. afx_msg BOOL OnMouseWheel(UINT nFlags, short zDelta, CPoint pt);
  37. //}}AFX_MSG
  38. void OnRequestResize(NMHDR * pNotifyStruct, LRESULT* result );
  39. void OnEditScrollChanged();
  40. void OnInitialUpdate();
  41. void UpdateScrollInfo();
  42. virtual CScrollBar* GetScrollBarCtrl(int nBar) const;
  43. void SetScrollPos(int nScrollPos);
  44. void UpdatePosition();
  45. int m_nTextHeight;
  46. int m_nPageHeight;
  47. int m_nScrollPos;
  48. HINSTANCE m_hInstance;
  49. int m_nTotalHeight;
  50. BOOL m_bInScrollChanged;
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_SCROLLRICHEDITVIEW_H__119F8543_B51C_4AE6_8593_75DF43572288__INCLUDED_)