-
Notifications
You must be signed in to change notification settings - Fork 0
/
AP210DocManager.cpp
263 lines (229 loc) · 8.28 KB
/
AP210DocManager.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
// AP210DocManager.cpp: implementation of the AP210DocManager class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "AP210Viewer.h"
#include "AP210DocManager.h"
#include "PWBDataBase.h"
#include "RoseExtensions/SchemaName.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
/////////////////////////////////////////////////////////////////////////////
// AP210DocManager
// Utility function from CDocMgr in Docmgr.cpp
static void AppendFilterSuffix(CString& filter, OPENFILENAME& ofn,
CDocTemplate* pTemplate, CString* pstrDefaultExt)
{
ASSERT_VALID(pTemplate);
ASSERT_KINDOF(CDocTemplate, pTemplate);
CString strFilterExt, strFilterName;
if (pTemplate->GetDocString(strFilterExt, CDocTemplate::filterExt) &&
!strFilterExt.IsEmpty() &&
pTemplate->GetDocString(strFilterName, CDocTemplate::filterName) &&
!strFilterName.IsEmpty())
{
#ifdef VERBOSE
TRACE("strFilterExt: %s\r\n", strFilterExt);
TRACE("strFilterName: %s\r\n", strFilterName);
#endif
// a file based document template - add to filter list
#ifndef _MAC
ASSERT(strFilterExt[0] == '.');
#endif
if (pstrDefaultExt != NULL)
{
// set the default extension
#ifndef _MAC
*pstrDefaultExt = ((LPCTSTR)strFilterExt) + 1; // skip the '.'
#else
*pstrDefaultExt = strFilterExt;
#endif
ofn.lpstrDefExt = (LPTSTR)(LPCTSTR)(*pstrDefaultExt);
ofn.nFilterIndex = ofn.nMaxCustFilter + 1; // 1 based number
}
// add to filter
filter += strFilterName;
ASSERT(!filter.IsEmpty()); // must have a file type name
filter += (TCHAR)'\0'; // next string please
#ifndef _MAC
filter += (TCHAR)'*';
#endif
filter += strFilterExt;
filter += (TCHAR)'\0'; // next string please
ofn.nMaxCustFilter++;
}
}
IMPLEMENT_DYNAMIC(AP210DocManager, CDocManager)
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
AP210DocManager::AP210DocManager()
{
set_schema_fn();
}
AP210DocManager::~AP210DocManager()
{
}
BOOL AP210DocManager::DoPromptFileName(CString& fileName, UINT nIDSTitle,
DWORD lFlags, BOOL bOpenFileDialog, CDocTemplate* pTemplate) {
// TODO: Add your specialized code here and/or call the base class
CAP210ViewerApp * app = ((CAP210ViewerApp *)AfxGetApp());
// from CDocMgr in Docmgr.cpp
CFileDialog dlgFile(bOpenFileDialog);
CString title;
VERIFY(title.LoadString(nIDSTitle));
dlgFile.m_ofn.Flags |= lFlags;
CString strFilter;
CString strDefault;
if ( pTemplate == app->IDFDocTemplate
|| pTemplate == app->IDFStepDocTemplate) {
BOOL bFirst = TRUE;
AppendFilterSuffix(strFilter, dlgFile.m_ofn, app->IDFDocTemplate,
bFirst ? &strDefault : NULL);
bFirst = FALSE;
AppendFilterSuffix(strFilter, dlgFile.m_ofn, app->IDFStepDocTemplate,
bFirst ? &strDefault : NULL);
AppendFilterSuffix(strFilter, dlgFile.m_ofn, app->AP210ARMDocTemplate,
bFirst ? &strDefault : NULL);
AppendFilterSuffix(strFilter, dlgFile.m_ofn, app->AP210AIMDocTemplate,
bFirst ? &strDefault : NULL);
}
else {
if (pTemplate != NULL) { // only current possibility is AP210 AIM templates
ASSERT_VALID(pTemplate);
AppendFilterSuffix(strFilter, dlgFile.m_ofn, pTemplate, &strDefault);
}
else {
// do for all doc template
POSITION pos = m_templateList.GetHeadPosition();
BOOL bFirst = TRUE;
while (pos != NULL) {
CDocTemplate* pTemplate = (CDocTemplate*)m_templateList.GetNext(pos);
AppendFilterSuffix(strFilter, dlgFile.m_ofn, pTemplate,
bFirst ? &strDefault : NULL);
bFirst = FALSE;
}
}
// append the "*.*" all files filter
CString allFilter;
VERIFY(allFilter.LoadString(AFX_IDS_ALLFILTER));
strFilter += allFilter;
strFilter += (TCHAR)'\0'; // next string please
#ifdef VERBOSE
TRACE("C: allFilter: %s\r\n", allFilter);
TRACE("C: strFilter: %s\r\n", strFilter);
#endif
#ifndef _MAC
strFilter += _T("*.*");
#else
strFilter += _T("****");
#endif
}
strFilter += (TCHAR)'\0'; // last string
dlgFile.m_ofn.nMaxCustFilter++;
dlgFile.m_ofn.lpstrFilter = strFilter;
#ifndef _MAC
dlgFile.m_ofn.lpstrTitle = title;
#else
dlgFile.m_ofn.lpstrPrompt = title;
#endif
#if 1
// maybe I should strip off the suffix here
LPTSTR s = fileName.GetBuffer(_MAX_PATH);
s[fileName.Find('.')] = '\0';
dlgFile.m_ofn.lpstrFile = s;
#else
dlgFile.m_ofn.lpstrFile = fileName.GetBuffer(_MAX_PATH);
#endif
BOOL bResult = dlgFile.DoModal() == IDOK ? TRUE : FALSE;
fileName.ReleaseBuffer();
return bResult;
}
void AP210DocManager::OnFileOpen() {
// prompt the user (with all document templates)
CString newName;
if (!DoPromptFileName(newName, AFX_IDS_OPENFILE_READONLY,
OFN_HIDEREADONLY | OFN_FILEMUSTEXIST, TRUE, ((CAP210ViewerApp *)AfxGetApp())->AP210AIMMultiDocTemplate))
return; // open cancelled
AfxGetApp()->OpenDocumentFile(newName);
// if returns NULL, the user has already been alerted
}
void AP210DocManager::OnFileOpenReadonly() {
// prompt the user (with all document templates)
CString newName;
if (!DoPromptFileName(newName, AFX_IDS_OPENFILE_READONLY,
OFN_HIDEREADONLY | OFN_FILEMUSTEXIST, TRUE, ((CAP210ViewerApp *)AfxGetApp())->AP210AIMMultiDocTemplate))
return; // open cancelled
PWBDataBase *PWB = ((PWBDataBase *)AfxGetApp()->OpenDocumentFile(newName));
// if returns NULL, the user has already been alerted
PWB->ReadOnly = TRUE;
}
void AP210DocManager::OnImportIdf() {
// prompt the user (with all document templates)
CString newName;
if (!DoPromptIDFFileName(newName, AFX_IDS_IMPORT_IDF,
OFN_HIDEREADONLY | OFN_FILEMUSTEXIST, TRUE, ((CAP210ViewerApp *)AfxGetApp())->IDFDocTemplate))
return; // open cancelled
AfxGetApp()->OpenDocumentFile(newName);
// if returns NULL, the user has already been alerted
}
BOOL AP210DocManager::DoPromptIDFFileName(CString& fileName, UINT nIDSTitle,
DWORD lFlags, BOOL bOpenFileDialog, CDocTemplate* pTemplate) {
// TODO: Add your specialized code here and/or call the base class
CAP210ViewerApp * app = ((CAP210ViewerApp *)AfxGetApp());
// from CDocMgr in Docmgr.cpp
CFileDialog dlgFile(bOpenFileDialog);
CString title;
VERIFY(title.LoadString(nIDSTitle));
dlgFile.m_ofn.Flags |= lFlags;
CString strFilter;
CString strDefault;
if ( pTemplate == app->IDFDocTemplate
|| pTemplate == app->IDFStepDocTemplate) {
BOOL bFirst = TRUE;
AppendFilterSuffix(strFilter, dlgFile.m_ofn, app->IDFDocTemplate,
bFirst ? &strDefault : NULL);
bFirst = FALSE;
AppendFilterSuffix(strFilter, dlgFile.m_ofn, app->IDFStepDocTemplate,
bFirst ? &strDefault : NULL);
}
else {
if (pTemplate != NULL) { // only current possibility is AP210 AIM templates
ASSERT_VALID(pTemplate);
AppendFilterSuffix(strFilter, dlgFile.m_ofn, pTemplate, &strDefault);
}
else {
// do for all doc template
POSITION pos = m_templateList.GetHeadPosition();
BOOL bFirst = TRUE;
while (pos != NULL) {
CDocTemplate* pTemplate = (CDocTemplate*)m_templateList.GetNext(pos);
AppendFilterSuffix(strFilter, dlgFile.m_ofn, pTemplate,
bFirst ? &strDefault : NULL);
bFirst = FALSE;
}
}
}
strFilter += (TCHAR)'\0'; // last string
dlgFile.m_ofn.nMaxCustFilter++;
dlgFile.m_ofn.lpstrFilter = strFilter;
#ifndef _MAC
dlgFile.m_ofn.lpstrTitle = title;
#else
dlgFile.m_ofn.lpstrPrompt = title;
#endif
#if 1
// maybe I should strip off the suffix here
LPTSTR s = fileName.GetBuffer(_MAX_PATH);
s[fileName.Find('.')] = '\0';
dlgFile.m_ofn.lpstrFile = s;
#else
dlgFile.m_ofn.lpstrFile = fileName.GetBuffer(_MAX_PATH);
#endif
BOOL bResult = dlgFile.DoModal() == IDOK ? TRUE : FALSE;
fileName.ReleaseBuffer();
return bResult;
}