-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVisualADSDoc.cpp
152 lines (122 loc) · 2.97 KB
/
VisualADSDoc.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// VisualADSDoc.cpp : implementation of the CVisualADSDoc class
//
#include "stdafx.h"
#include "VisualADS.h"
#include "VisualADSDoc.h"
#include "MainFrm.h"
#include "ADDomain.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CVisualADSDoc
IMPLEMENT_DYNCREATE(CVisualADSDoc, CFODoc)
BEGIN_MESSAGE_MAP(CVisualADSDoc, CFODoc)
//{{AFX_MSG_MAP(CVisualADSDoc)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CVisualADSDoc construction/destruction
CVisualADSDoc::CVisualADSDoc()
{
// TODO: add one-time construction code here
bChineseOrEnglish = Global_GetLanguage();
}
CVisualADSDoc::~CVisualADSDoc()
{
}
BOOL CVisualADSDoc::OnNewDocument()
{
if (!CFODoc::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
if (bChineseOrEnglish)
{
SetTitle(_T("Windows域安全卫士"));
}
else
{
SetTitle(_T("VISUAL Active Directory policy conflict detector System"));
}
return TRUE;
}
void CVisualADSDoc::clearFilePathName()
{
m_strPathName = _T("");
}
void CVisualADSDoc::MyFileClose()
{
OnFileClose();
}
/////////////////////////////////////////////////////////////////////////////
// CVisualADSDoc serialization
void CVisualADSDoc::Serialize(CArchive& ar)
{
CMainFrame *pMainFrm = (CMainFrame *) AfxGetMainWnd();
if (ar.IsStoring())
{
int i;
ar << pMainFrm->globalDomains.size();
for (i = 0; i < pMainFrm->globalDomains.size(); i ++)
{
pMainFrm->globalDomains[i]->Serialize(ar);
}
}
else
{
pMainFrm->OnBtnClear();
int i;
int iSize;
ar >> iSize;
for (i = 0; i < iSize; i ++)
{
ADDomain *pDomain = new ADDomain();
pDomain->Serialize(ar);
pMainFrm->globalDomains.push_back(pDomain);
}
pMainFrm->OnBtnLoad();
}
}
void CVisualADSDoc::MyOnClose()
{
// TODO: 在此添加命令处理程序代码
if (!SaveModified())
return;
BOOL bAutoDelete = m_bAutoDelete;
m_bAutoDelete = FALSE; // don't destroy document while closing views
while (!m_viewList.IsEmpty())
{
// get view attached to the document
CView* pView = (CView*)m_viewList.GetHead();
ASSERT_VALID(pView);
pView->DestroyWindow();
}
m_bAutoDelete = bAutoDelete;
// clean up contents of document before destroying the document itself
DeleteContents();
// delete the document if necessary
if (m_bAutoDelete)
delete this;
}
/////////////////////////////////////////////////////////////////////////////
// CVisualADSDoc diagnostics
#ifdef _DEBUG
void CVisualADSDoc::AssertValid() const
{
CFODoc::AssertValid();
}
void CVisualADSDoc::Dump(CDumpContext& dc) const
{
CFODoc::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CVisualADSDoc commands
void CVisualADSDoc::DeleteContents()
{
// TODO: Add your specialized code here and/or call the base class
CFODoc::DeleteContents();
}