WORDPVW.H
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:4k
源码类别:

界面编程

开发平台:

Visual C++

  1. // wordpvw.h : interface of the CWordPadView class
  2. //
  3. //
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1997 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. class CWordPadView : public CRichEditView
  14. {
  15. protected: // create from serialization only
  16. CWordPadView();
  17. DECLARE_DYNCREATE(CWordPadView)
  18. // Attributes
  19. public:
  20. UINT m_uTimerID;
  21. BOOL m_bDelayUpdateItems;
  22. BOOL m_bInPrint;
  23. CParaFormat m_defParaFormat;
  24. CCharFormat m_defCharFormat;
  25. CCharFormat m_defTextCharFormat;
  26. CWordPadDoc* GetDocument();
  27. BOOL IsFormatText();
  28. virtual HMENU GetContextMenu(WORD seltype, LPOLEOBJECT lpoleobj, 
  29. CHARRANGE* lpchrg);
  30. // Operations
  31. public:
  32. BOOL PasteNative(LPDATAOBJECT lpdataobj);
  33. void SetDefaultFont(BOOL bText);
  34. void SetUpdateTimer();
  35. void GetDefaultFont(CCharFormat& cf, UINT nFontNameID);
  36. void DrawMargins(CDC* pDC);
  37. BOOL SelectPalette();
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CWordPadView)
  41. protected:
  42. virtual void CalcWindowRect(LPRECT lpClientRect, UINT nAdjustType = adjustBorder);
  43. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  44. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  45. //}}AFX_VIRTUAL
  46. BOOL OnPreparePrinting(CPrintInfo* pInfo);
  47. virtual HRESULT GetClipboardData(CHARRANGE* lpchrg, DWORD reco, 
  48. LPDATAOBJECT lpRichDataObj, LPDATAOBJECT* lplpdataobj);
  49. virtual HRESULT QueryAcceptData(LPDATAOBJECT, CLIPFORMAT*, DWORD, 
  50. BOOL, HGLOBAL);
  51. public:
  52. virtual void WrapChanged();
  53. // Implementation
  54. public:
  55. #ifdef _DEBUG
  56. virtual void AssertValid() const;
  57. virtual void Dump(CDumpContext& dc) const;
  58. #endif
  59. protected:
  60. BOOL m_bOnBar;
  61. // OLE Container support
  62. virtual void DeleteContents();
  63. virtual void OnTextNotFound(LPCTSTR);
  64. // Generated message map functions
  65. protected:
  66. afx_msg void OnCancelEditSrvr();
  67. //{{AFX_MSG(CWordPadView)
  68. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  69. afx_msg void OnPageSetup();
  70. afx_msg void OnInsertDateTime();
  71. afx_msg void OnFormatParagraph();
  72. afx_msg void OnFormatTabs();
  73. afx_msg void OnTimer(UINT nIDEvent);
  74. afx_msg void OnDestroy();
  75. afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct);
  76. afx_msg void OnPenBackspace();
  77. afx_msg void OnPenNewline();
  78. afx_msg void OnPenPeriod();
  79. afx_msg void OnPenSpace();
  80. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  81. afx_msg void OnFilePrint();
  82. afx_msg void OnPenLens();
  83. afx_msg void OnPenTab();
  84. afx_msg void OnPaletteChanged(CWnd* pFocusWnd);
  85. afx_msg BOOL OnQueryNewPalette();
  86. afx_msg void OnSettingChange(UINT uFlags, LPCTSTR lpszSection);
  87. afx_msg void OnSize(UINT nType, int cx, int cy);
  88. //}}AFX_MSG
  89. afx_msg void OnEditChange();
  90. afx_msg void OnColorPick(UINT nID);
  91. afx_msg int OnMouseActivate(CWnd* pWnd, UINT nHitTest, UINT message);
  92. afx_msg LONG OnPrinterChangedMsg(UINT, LONG);
  93. afx_msg void OnGetCharFormat(NMHDR* pNMHDR, LRESULT* pRes);
  94. afx_msg void OnSetCharFormat(NMHDR* pNMHDR, LRESULT* pRes);
  95. afx_msg void OnBarSetFocus(NMHDR*, LRESULT*);
  96. afx_msg void OnBarKillFocus(NMHDR*, LRESULT*);
  97. afx_msg void OnBarReturn(NMHDR*, LRESULT* );
  98. DECLARE_MESSAGE_MAP()
  99. };
  100. #ifndef _DEBUG  // debug version in wordpvw.cpp
  101. inline CWordPadDoc* CWordPadView::GetDocument()
  102.    { return (CWordPadDoc*)m_pDocument; }
  103. #endif
  104. /////////////////////////////////////////////////////////////////////////////