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

xml/soap/webservice

开发平台:

Visual C++

  1. // MarkupDoc.h : interface of the CMarkupDoc 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_MARKUPDOC_H__774D686F_8271_11D3_B1CF_00105A27C570__INCLUDED_)
  10. #define AFX_MARKUPDOC_H__774D686F_8271_11D3_B1CF_00105A27C570__INCLUDED_
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. #include "Markup.h"
  15. class CMarkupDoc : public CDocument
  16. {
  17. protected: // create from serialization only
  18. CMarkupDoc();
  19. DECLARE_DYNCREATE(CMarkupDoc)
  20. // Attributes
  21. public:
  22. CString m_csText;
  23. CMarkup m_doc;
  24. // Operations
  25. public:
  26. BOOL IsParsed() { return m_bIsParsed; };
  27. void SetParsedFlag( BOOL bIsParsed = TRUE ) { m_bIsParsed = bIsParsed; };
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CMarkupDoc)
  31. public:
  32. virtual BOOL OnNewDocument();
  33. virtual void Serialize(CArchive& ar);
  34. virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
  35. virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
  36. virtual void OnCloseDocument();
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. public:
  40. virtual ~CMarkupDoc();
  41. #ifdef _DEBUG
  42. virtual void AssertValid() const;
  43. virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. protected:
  46. BOOL m_bIsParsed;
  47. SYSTEMTIME m_stBefore;
  48. void TimeBefore();
  49. void TimeAfter(LPCTSTR lpszTitle, LPCTSTR szOp);
  50. CString TitleFromPath(LPCTSTR lpszPathName);
  51. void ShowError(LPCTSTR lpszTitle, LPCTSTR szError);
  52. // Generated message map functions
  53. protected:
  54. //{{AFX_MSG(CMarkupDoc)
  55. afx_msg void OnFileParse();
  56. afx_msg void OnUpdateFileParse(CCmdUI* pCmdUI);
  57. //}}AFX_MSG
  58. DECLARE_MESSAGE_MAP()
  59. };
  60. /////////////////////////////////////////////////////////////////////////////
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_MARKUPDOC_H__774D686F_8271_11D3_B1CF_00105A27C570__INCLUDED_)