MarkupView.h
上传用户:hawkcdm
上传日期:2013-02-10
资源大小:411k
文件大小:3k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. // MarkupView.h : interface of the CMarkupView class
  2. //
  3. // Markup Release 6.1 Lite
  4. // Copyright (C) 1999-2001 First Objective Software, Inc. All rights reserved
  5. // This entire notice must be retained in this source code
  6. // Redistributing this source code requires written permission
  7. // This software is provided "as is", with no warranty.
  8. // Latest fixes enhancements and documentation at www.firstobject.com
  9. #if !defined(AFX_MARKUPVIEW_H__774D6871_8271_11D3_B1CF_00105A27C570__INCLUDED_)
  10. #define AFX_MARKUPVIEW_H__774D6871_8271_11D3_B1CF_00105A27C570__INCLUDED_
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. #include "DividerCtrl.h"
  15. class CMarkupView : public CView
  16. {
  17. protected: // create from serialization only
  18. CMarkupView();
  19. DECLARE_DYNCREATE(CMarkupView)
  20. CEdit m_edit;
  21. CFont m_font;
  22. CTreeCtrl m_tree;
  23. CImageList m_ilTree;
  24. CDividerCtrl m_divider;
  25. void CalcSize( int cx, int cy );
  26. int m_nAddAttrib;
  27. void GetNthWisePos( HTREEITEM hItem, CUIntArray& aNths );
  28. void SetPos( HTREEITEM hItem, BOOL bChild = FALSE );
  29. // Attributes
  30. public:
  31. CMarkupDoc* GetDocument();
  32. CMarkup* m_pXML;
  33. void GetEditText( CString& csDoc );
  34. // Operations
  35. public:
  36. // Overrides
  37. // ClassWizard generated virtual function overrides
  38. //{{AFX_VIRTUAL(CMarkupView)
  39. public:
  40. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  41. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  42. virtual void OnInitialUpdate();
  43. protected:
  44. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  45. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  46. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  47. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  48. virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  49. //}}AFX_VIRTUAL
  50. // Implementation
  51. public:
  52. virtual ~CMarkupView();
  53. #ifdef _DEBUG
  54. virtual void AssertValid() const;
  55. virtual void Dump(CDumpContext& dc) const;
  56. #endif
  57. protected:
  58. CString SetEditTextFromDoc();
  59. HTREEITEM AddElemToTree(HTREEITEM hParentItem);
  60. BOOL ElemHasSubItems();
  61. // Generated message map functions
  62. protected:
  63. //{{AFX_MSG(CMarkupView)
  64. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  65. afx_msg void OnSize(UINT nType, int cx, int cy);
  66. afx_msg void OnMarkupFind();
  67. afx_msg void OnMarkupAdd();
  68. afx_msg void OnMarkupAddChild();
  69. afx_msg void OnMarkupAddAttrib();
  70. afx_msg void OnEditCopy();
  71. afx_msg void OnEditCut();
  72. afx_msg void OnEditPaste();
  73. afx_msg void OnEditUndo();
  74. afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
  75. //}}AFX_MSG
  76. afx_msg void OnChangeEdit();
  77. afx_msg LRESULT OnAppMessage( WPARAM, LPARAM );
  78. DECLARE_MESSAGE_MAP()
  79. };
  80. #ifndef _DEBUG  // debug version in MarkupView.cpp
  81. inline CMarkupDoc* CMarkupView::GetDocument()
  82.    { return (CMarkupDoc*)m_pDocument; }
  83. #endif
  84. /////////////////////////////////////////////////////////////////////////////
  85. //{{AFX_INSERT_LOCATION}}
  86. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  87. #endif // !defined(AFX_MARKUPVIEW_H__774D6871_8271_11D3_B1CF_00105A27C570__INCLUDED_)