|
|
// wordpvw.h : interface of the CWordPadView class
//
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1995 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
class CWordPadView : public CRichEdit2View { protected: // create from serialization only
CWordPadView(); DECLARE_DYNCREATE(CWordPadView)
// Attributes
public: static BOOL m_bIsMirrored;
UINT_PTR m_uTimerID; BOOL m_bDelayUpdateItems; BOOL m_bInPrint; CParaFormat m_defParaFormat;
CWordPadDoc* GetDocument(); BOOL IsFormatText();
virtual HMENU GetContextMenu(WORD seltype, LPOLEOBJECT lpoleobj, CHARRANGE* lpchrg);
// Operations
public: BOOL PasteNative(LPDATAOBJECT lpdataobj); void SetDefaultFont(BOOL bText); void SetUpdateTimer(); void GetDefaultFont(CCharFormat& cf, BOOL bText); void DrawMargins(CDC* pDC); BOOL SelectPalette(); HRESULT PasteHDROPFormat(HDROP hDrop) ; BOOL PaginateTo(CDC* pDC, CPrintInfo* pInfo) ;
static void MirrorTheContainer(BOOL bMirror);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CWordPadView)
protected: virtual void CalcWindowRect(LPRECT lpClientRect, UINT nAdjustType = adjustBorder); virtual BOOL PreCreateWindow(CREATESTRUCT& cs); virtual void OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* printInfo); virtual void CWordPadView::OnEndPrinting(CDC*dc, CPrintInfo*pInfo); virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo); virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo); //}}AFX_VIRTUAL
BOOL OnPreparePrinting(CPrintInfo* pInfo); virtual HRESULT GetClipboardData(CHARRANGE* lpchrg, DWORD reco, LPDATAOBJECT lpRichDataObj, LPDATAOBJECT* lplpdataobj); virtual HRESULT QueryAcceptData(LPDATAOBJECT, CLIPFORMAT*, DWORD, BOOL, HGLOBAL); public: virtual void WrapChanged();
// Implementation
public: #ifdef _DEBUG
virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; #endif
//
// Wrapper for the richedit callback interface so we can
// get around some MFC defaults
//
public:
BEGIN_INTERFACE_PART(WordPadRichEditOleCallback, IRichEditOleCallback) INIT_INTERFACE_PART(CWordPadView, WordPadRichEditOleCallback) STDMETHOD(GetNewStorage) (LPSTORAGE*); STDMETHOD(GetInPlaceContext) (LPOLEINPLACEFRAME*, LPOLEINPLACEUIWINDOW*, LPOLEINPLACEFRAMEINFO); STDMETHOD(ShowContainerUI) (BOOL); STDMETHOD(QueryInsertObject) (LPCLSID, LPSTORAGE, LONG); STDMETHOD(DeleteObject) (LPOLEOBJECT); STDMETHOD(QueryAcceptData) (LPDATAOBJECT, CLIPFORMAT*, DWORD,BOOL, HGLOBAL); STDMETHOD(ContextSensitiveHelp) (BOOL); STDMETHOD(GetClipboardData) (CHARRANGE*, DWORD, LPDATAOBJECT*); STDMETHOD(GetDragDropEffect) (BOOL, DWORD, LPDWORD); STDMETHOD(GetContextMenu) (WORD, LPOLEOBJECT, CHARRANGE*, HMENU*); END_INTERFACE_PART(WordPadRichEditOleCallback)
DECLARE_INTERFACE_MAP()
protected: BOOL m_bOnBar;
CPrintDialog *m_oldprintdlg;
// OLE Container support
virtual void DeleteContents(); virtual void OnTextNotFound(LPCTSTR);
// Generated message map functions
protected: afx_msg void OnCancelEditSrvr(); //{{AFX_MSG(CWordPadView)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); afx_msg void OnPageSetup(); afx_msg void OnInsertDateTime(); afx_msg void OnInsertObject(); afx_msg void OnFormatParagraph(); afx_msg void OnFormatFont(); afx_msg void OnFormatTabs(); afx_msg void OnEditPasteSpecial(); afx_msg void OnEditProperties(); afx_msg void OnEditFind(); afx_msg void OnEditReplace(); afx_msg void OnTimer(UINT_PTR nIDEvent); afx_msg void OnDestroy(); afx_msg void OnMeasureItem(int nIDCtl, LPMEASUREITEMSTRUCT lpMeasureItemStruct); afx_msg void OnPenBackspace(); afx_msg void OnPenNewline(); afx_msg void OnPenPeriod(); afx_msg void OnPenSpace(); afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags); afx_msg void OnFilePrint(); afx_msg void OnFilePrintPreview(); afx_msg void OnPenLens(); afx_msg void OnPenTab(); afx_msg void OnPaletteChanged(CWnd* pFocusWnd); afx_msg BOOL OnQueryNewPalette(); afx_msg void OnWinIniChange(LPCTSTR lpszSection); afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnDelayedInvalidate() ; //}}AFX_MSG
afx_msg void OnEditChange(); afx_msg void OnColorPick(UINT nID); afx_msg int OnMouseActivate(CWnd* pWnd, UINT nHitTest, UINT message); afx_msg LONG OnPrinterChangedMsg(UINT, LONG); afx_msg void OnGetCharFormat(NMHDR* pNMHDR, LRESULT* pRes); afx_msg void OnSetCharFormat(NMHDR* pNMHDR, LRESULT* pRes); afx_msg void OnBarSetFocus(NMHDR*, LRESULT*); afx_msg void OnBarKillFocus(NMHDR*, LRESULT*); afx_msg void OnBarReturn(NMHDR*, LRESULT* ); DECLARE_MESSAGE_MAP() };
#ifndef _DEBUG // debug version in wordpvw.cpp
inline CWordPadDoc* CWordPadView::GetDocument() { return (CWordPadDoc*)m_pDocument; } #endif
/////////////////////////////////////////////////////////////////////////////
|