-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathSampleDoc.cpp
115 lines (91 loc) · 2.38 KB
/
SampleDoc.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// SampleDoc.cpp : implementation of the CSampleDoc class
//
#include "stdafx.h"
#include "exe2c_gui.h"
#include "mainfrm.h"
#include "SampleDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSampleDoc
IMPLEMENT_DYNCREATE(CSampleDoc, CDocument)
BEGIN_MESSAGE_MAP(CSampleDoc, CDocument)
//{{AFX_MSG_MAP(CSampleDoc)
//ON_COMMAND(ID_READ_ONLY, OnReadOnly)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSampleDoc construction/destruction
#pragma warning(disable:4355)
CSampleDoc::CSampleDoc() : m_xTextBuffer(this)
{
// TODO: add one-time construction code here
}
CSampleDoc::~CSampleDoc()
{
}
BOOL CSampleDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
m_xTextBuffer.InitNew();
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CSampleDoc serialization
void CSampleDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CSampleDoc diagnostics
#ifdef _DEBUG
void CSampleDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CSampleDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CSampleDoc commands
void CSampleDoc::DeleteContents()
{
CDocument::DeleteContents();
m_xTextBuffer.FreeAll();
}
CMainFrame *g_Mfm = NULL;
void MyRefreshView();
BOOL CSampleDoc::OnOpenDocument(LPCTSTR lpszPathName)
{
if (!CDocument::OnOpenDocument(lpszPathName))
return FALSE;
g_EXE2C->exe2c_main(lpszPathName);
BOOL m_bSucc = m_xTextBuffer.LoadFromFile(lpszPathName);
g_Mfm->ShowFun();
MyRefreshView();
return m_bSucc;
}
BOOL CSampleDoc::OnSaveDocument(LPCTSTR lpszPathName)
{
m_xTextBuffer.SaveToFile(lpszPathName);
return TRUE; // Note - we didn't call inherited member!
}
void CSampleDoc::OnCloseDocument()
{
// TODO: Add your specialized code here and/or call the base class
g_Mfm->ClearFun();
CDocument::OnCloseDocument();
}