JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ExClass.cpp
Go to the documentation of this file.
1
2#include "ExClass.h"
3
4
5using namespace jbxl;
6using namespace jbxwl;
7
8
9
11//
12
19{
20 if (pdoc==NULL) return false;
21 if (pfrm==NULL) return false;
22 if (pviw==NULL) return false;
23
24 pdoc->pView = pfrm->pView = pviw;
25 pdoc->pFrame = pviw->pFrame = pfrm;
26 pviw->pDoc = pfrm->pDoc = pdoc;
27 pviw->pApp = pfrm->pApp = pdoc->pApp = papp;
28 return true;
29}
30
31
38CExFrame* jbxwl::CreateDocFrmView(CMultiDocTemplate* pDocTempl, CAppCallBack* papp)
39{
40 // クラスの取得
41 CExDocument* pdoc = (CExDocument*)pDocTempl->CreateNewDocument();
42 CExFrame* pfrm = (CExFrame*)pDocTempl->CreateNewFrame(pdoc, NULL);
43 CExView* pviw = (CExView*)pdoc->GetView();
44
45 bool rslt = SetExLink(pdoc, pfrm, pviw, papp);
46 if (!rslt) {
47 if (pdoc!=NULL) {
48 DEBUG_ERROR("jbxwl::CreateDocFrmView(): ERROR: Document is NULL\n");
49 deleteNull(pdoc);
50 }
51 if (pviw!=NULL) {
52 DEBUG_ERROR("jbxwl::CreateDocFrmView(): ERROR: View is NULL\n");
53 deleteNull(pviw);
54 }
55 if (pfrm!=NULL) {
56 DEBUG_ERROR("jbxwl::CreateDocFrmView(): ERROR: Frame is NULL\n");
57 deleteNull(pfrm);
58 }
59 return NULL;
60 }
61 pfrm->pTempl = pDocTempl;
62
63 return pfrm;
64}
65
66
73BOOL jbxwl::InitialDocView(CExFrame* pfrm, LPCTSTR fname)
74{
75 BOOL rslt;
76
77 // Document クラスの前処理
78 if (fname==NULL) {
79 rslt = pfrm->pDoc->OnNewDocument();
80 }
81 else {
82 rslt = pfrm->pDoc->OnOpenDocument(fname);
83 }
84 if (!rslt) return FALSE;
85
86 // View クラスの前処理
87 pfrm->pView->OnInitialUpdate();
88 if (!pfrm->pView->hasViewData) return FALSE;
89 return TRUE;
90}
91
92
99int jbxwl::ExecDocFrmView(CExFrame* pfrm, LPCTSTR fname)
100{
101 if (pfrm ==NULL) return 1;
102 if (fname!=NULL) pfrm->pDoc->Title = get_file_name_t(fname);
103
104 //
105 BOOL rslt = InitialDocView(pfrm, fname);
106 if (!rslt) {
107 int ret;
108 // この場所でのメッセージ表示はしない.
109 if ( pfrm->doneErrorMessage) ret = MSG_DFV_NOT_DISP;
110 else if ( pfrm->cancelOperation) ret = MSG_DFV_CANCEL;
111 else if (!pfrm->pDoc->hasReadData) ret = MSG_DFV_ERR_READ;
112 else if (!pfrm->pDoc->hasViewData) ret = MSG_DFV_UNVISIBLE;
113 else if (!pfrm->pView->hasViewData) ret = MSG_DFV_FAIL_VIEW;
114
115 delete pfrm; // Debug構成でコンパイルすると,CDxSRenderViewで頂点数0の場合,ここでセグメンテーションエラーを起こす?
116 return ret;
117 }
118 pfrm->ShowWindow(SW_SHOW);
119 pfrm->SetFocus();
120 pfrm->pView->SetFocus();
121
122 //
123 CString title = pfrm->pDoc->preTitle + pfrm->pDoc->Title + pfrm->pDoc->pstTitle;
124 if (title.IsEmpty()) {
125 pfrm->pDoc->preTitle = _T("Title: ");
126 pfrm->pDoc->Title = _T("Temporary Blank");
127 pfrm->pDoc->pstTitle = _T("");
128 title = pfrm->pDoc->preTitle + pfrm->pDoc->Title + pfrm->pDoc->pstTitle;
129 }
130 if (pfrm->preTitle.IsEmpty()) pfrm->preTitle = pfrm->pDoc->preTitle;
131 if (pfrm->Title.IsEmpty()) pfrm->Title = title;
132 if (pfrm->pView->Title.IsEmpty()) pfrm->pView->Title = title;
133 //
134 pfrm->pView->SetTitle(title);
135 pfrm->pDoc->SetTitle(title);
136 pfrm->SetTitle(title);
137 pfrm->SetWindowText(title);
138
139 return 0;
140}
141
142
148void jbxwl::ExecDocFrmViewError(HWND hwnd, int ret)
149{
150 if (ret>0) { // !=MSG_DFV_NOT_DISP (-1)
151 CString mesg;
152 int err_flag = false;
153
154 if (ret==MSG_DFV_FR_NULL) {
155 mesg.LoadString(IDS_STR_NULLPT_FRM); // Frameへのポインタが NULLです
156 err_flag = true;
157 }
158 else if (ret==MSG_DFV_CANCEL){
159 mesg.LoadString(IDS_STR_CANCEL_OPRTN); // 操作がキャンセルされました
160 err_flag = true;
161 }
162 else if (ret==MSG_DFV_ERR_READ) {
163 mesg.LoadString(IDS_STR_ERR_OPEN_FILE); // ファイルの読み込みエラーです
164 err_flag = true;
165 }
166 else if (ret==MSG_DFV_UNVISIBLE) {
167 mesg.LoadString(IDS_STR_ERR_UNDISP); // 表示不可能なファイルです
168 err_flag = true;
169 }
170 else if (ret==MSG_DFV_FAIL_VIEW) {
171 mesg.LoadString(IDS_STR_ERR_PREDISP); // 表示の準備に失敗しました
172 err_flag = true;
173 }
174 if (err_flag) MessageBox(hwnd, mesg, NULL, MB_OK);
175 }
176 return;
177}
178
179
187int jbxwl::ExecTemplate(CMultiDocTemplate* ptemp, ExMSGraph<sWord>* pmsGraph, ExCmnHead* pcmnHead, CExFrame* prntFrm, int viewPoint)
188{
189 int ret, color = GRAPH_COLOR_MONO;
190 BOOL hasReadData = FALSE;
191 BOOL hasViewData = FALSE;
192 HWND hWnd = NULL;
193 CExFrame* pfrm = NULL;
194 CExDocument* prntDoc = NULL;
195
196 if (prntFrm!=NULL) {
197 hWnd = prntFrm->m_hWnd;
198 prntDoc = prntFrm->pDoc;
199 color = prntFrm->colorMode;
200 }
201
202 if (pmsGraph!=NULL) {
203 if (!pmsGraph->isNull()) hasReadData = TRUE;
204 }
205 if (pcmnHead!=NULL) {
206 if (!pcmnHead->isNull()) hasViewData = TRUE;
207 }
208
209 if (hasViewData) {
210 pfrm = CreateDocFrmView(ptemp, NULL);
211 pfrm->pDoc->hasReadData = TRUE;
212 pfrm->pDoc->hasViewData = TRUE;
213 pfrm->pDoc->cmnHead = *pcmnHead;
214 pfrm->pDoc->colorMode = color;
215 pfrm->pDoc->preTitle = _T("");
216 pfrm->pDoc->Title = prntFrm->pDoc->Title;
217 pfrm->pDoc->pstTitle = prntFrm->pDoc->pstTitle;
218 if (prntDoc!=NULL) pfrm->pDoc->ctrlCntrst = prntDoc->ctrlCntrst;
219 pfrm->pView->vSBpos = viewPoint;
220 ret = ExecDocFrmView(pfrm);
221 }
222
223 else if (hasReadData) {
224 pfrm = CreateDocFrmView(ptemp, NULL);
225 pfrm->pDoc->hasReadData = TRUE;
226 pfrm->pDoc->msGraph = *pmsGraph;
227 pfrm->pDoc->colorMode = color;
228 pfrm->pDoc->preTitle = _T("");
229 pfrm->pDoc->Title = prntFrm->pDoc->Title;
230 pfrm->pDoc->pstTitle = prntFrm->pDoc->pstTitle;
231 if (prntDoc!=NULL) pfrm->pDoc->ctrlCntrst = prntDoc->ctrlCntrst;
232 pfrm->pView->vSBpos = viewPoint;
233 ret = ExecDocFrmView(pfrm);
234 }
235
236 else {
237 CString mesg;
238 mesg.LoadString(IDS_STR_OPEN_FILE);
239 CString fname = EasyGetOpenFileName(mesg, hWnd);
240 if (fname.IsEmpty()) return -1;
241
242 pfrm = CreateDocFrmView(ptemp, NULL);
243 pfrm->pDoc->multiSliceData = TRUE;
244 pfrm->pDoc->colorMode = color;
245 if (prntDoc!=NULL) pfrm->pDoc->ctrlCntrst = prntDoc->ctrlCntrst;
246 ret = ExecDocFrmView(pfrm, fname);
247 }
248
249 ExecDocFrmViewError(hWnd, ret);
250
251 return ret;
252}
253
254
266#ifdef _UNICODE
267CString jbxwl::EasyGetOpenFileName(LPCWSTR title, HWND hWnd)
268{
269 WCHAR fn[LPATH];
270#else
271CString jbxwl::EasyGetOpenFileName(LPCTSTR title, HWND hWnd)
272{
273 TCHAR fn[LPATH];
274#endif
275 OPENFILENAME ofn;
276
277 bzero(fn, sizeof(fn));
278 bzero(&ofn, sizeof(ofn));
279
280 ofn.lStructSize = sizeof(ofn);
281 ofn.hwndOwner = hWnd;
282 ofn.Flags = OFN_HIDEREADONLY;
283 ofn.lpstrFile = fn;
284 ofn.nMaxFile = sizeof(fn) / sizeof(fn[0]);
285 if (title != NULL) ofn.lpstrTitle = title;
286
287 GetOpenFileName(&ofn);
288 return fn;
289
290 /*
291 CFileDialog fileDialog(true);
292
293 if (fileDialog.DoModal() == IDOK) {
294 return fileDialog.GetPathName();
295 }
296 return _T("");
297 */
298}
299
300
312#ifdef _UNICODE
313CString jbxwl::EasyGetSaveFileName(LPCWSTR title, LPCWSTR extnt, HWND hWnd)
314{
315 WCHAR fn[LPATH];
316#else
317CString jbxwl::EasyGetSaveFileName(LPCTSTR title, LPCTSTR extnt, HWND hWnd)
318{
319 TCHAR fn[LPATH];
320#endif
321 OPENFILENAME ofn;
322
323 bzero(fn, sizeof(fn));
324 bzero(&ofn, sizeof(ofn));
325
326 ofn.lStructSize = sizeof(ofn);
327 ofn.hwndOwner = hWnd;
328 ofn.Flags = 0;
329 ofn.lpstrFile = fn;
330 //ofn.nMaxFile = LPATH;
331 ofn.nMaxFile = sizeof(fn) / sizeof(fn[0]);
332 ofn.lpstrDefExt = extnt;
333 if (title != NULL) ofn.lpstrTitle = title;
334
335 GetSaveFileName(&ofn);
336 return fn;
337}
338
339
347#ifdef _UNICODE
348CString jbxwl::EasyGetSaveFolderName(LPCWSTR folder, LPCWSTR title, HWND hWnd)
349{
350 WCHAR fldr[LPATH];
351#else
352CString jbxwl::EasyGetSaveFolderName(LPCTSTR folder, LPCTSTR title, HWND hWnd)
353{
354 TCHAR fldr[LPATH];
355#endif
356 BROWSEINFO bri;
357 LPITEMIDLIST pilst;
358
359 CString str = _T("");
360
361 bzero(fldr, LPATH);
362 bzero(&bri, sizeof(bri));
363
364 bri.hwndOwner = hWnd;
365 bri.lpszTitle = title;
366 bri.ulFlags = BIF_RETURNONLYFSDIRS;
367
368 bri.lpfn = &EasyGetSaveFolderNameCallBack; // コールバック関数
369 bri.lParam = (LPARAM)folder; // コールバック関数の引数
370
371 pilst = SHBrowseForFolder(&bri);
372 if (pilst!=NULL) {
373 SHGetPathFromIDList(pilst, fldr);
374 str = fldr;
375 CoTaskMemFree(pilst);
376 }
377
378 return str;
379}
380
381
387int CALLBACK jbxwl::EasyGetSaveFolderNameCallBack(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData)
388{
389 if(uMsg==BFFM_INITIALIZED){
390 SendMessage(hwnd, BFFM_SETSELECTION, (WPARAM)TRUE, lpData);
391 }
392 return 0;
393}
394
#define MSG_DFV_FAIL_VIEW
Definition ExClass.h:26
#define MSG_DFV_NOT_DISP
Definition ExClass.h:21
#define MSG_DFV_UNVISIBLE
Definition ExClass.h:25
#define MSG_DFV_FR_NULL
Definition ExClass.h:22
#define MSG_DFV_CANCEL
Definition ExClass.h:23
#define MSG_DFV_ERR_READ
Definition ExClass.h:24
ExCmnHead cmnHead
Definition ExDocument.h:53
virtual BOOL OnNewDocument()
virtual BOOL OnOpenDocument(LPCTSTR lpszPathName)
CExFrame * pFrame
Definition ExDocument.h:56
CAppCallBack * pApp
Definition ExDocument.h:57
CExView * GetView()
ExMSGraph< sWord > msGraph
Definition ExDocument.h:52
CString Title
Definition ExFrame.h:37
CExView * pView
Definition ExFrame.h:42
CAppCallBack * pApp
Definition ExFrame.h:43
CMultiDocTemplate * pTempl
Definition ExFrame.h:44
CExDocument * pDoc
Definition ExFrame.h:41
bool cancelOperation
Definition ExFrame.h:52
CString preTitle
Definition ExFrame.h:38
bool doneErrorMessage
Definition ExFrame.h:51
CString Title
Definition ExView.h:83
virtual void OnInitialUpdate()
Definition ExView.cpp:365
BOOL hasViewData
Definition ExView.h:81
CExFrame * pFrame
Definition ExView.h:77
CAppCallBack * pApp
Definition ExView.h:78
void SetTitle(LPCTSTR title)
Definition ExView.cpp:348
CExDocument * pDoc
Definition ExView.h:76
CString EasyGetOpenFileName(LPCTSTR title=NULL, HWND hWnd=NULL)
Definition ExClass.cpp:271
int ExecDocFrmView(CExFrame *pfrm, LPCTSTR fname=NULL)
Definition ExClass.cpp:99
CString EasyGetSaveFileName(LPCTSTR title=NULL, LPCTSTR extnt=NULL, HWND hWnd=NULL)
Definition ExClass.cpp:317
CString get_file_name_t(LPCTSTR str)
Definition WinTools.cpp:277
BOOL InitialDocView(CExFrame *pfrm, LPCTSTR fname)
Definition ExClass.cpp:73
CExFrame * CreateDocFrmView(CMultiDocTemplate *pDocTemp, CAppCallBack *papp=NULL)
Definition ExClass.cpp:38
int ExecTemplate(CMultiDocTemplate *ptemp, ExMSGraph< sWord > *pmsGraph=NULL, ExCmnHead *pcmnHead=NULL, CExFrame *prntFrm=NULL, int vPoint=0)
Definition ExClass.cpp:187
void deleteNull(T *&ptr)
Definition WinTools.h:229
bool SetExLink(CExDocument *pdoc, CExFrame *pfrm, CExView *pview, CAppCallBack *papp)
Definition ExClass.cpp:18
void ExecDocFrmViewError(HWND hwnd, int ret)
Definition ExClass.cpp:148
int CALLBACK EasyGetSaveFolderNameCallBack(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData)
Definition ExClass.cpp:387
CString EasyGetSaveFolderName(LPCTSTR folder=_T(""), LPCTSTR title=NULL, HWND hWnd=NULL)
Definition ExClass.cpp:352
#define IDS_STR_NULLPT_FRM
Definition resource.h:77
#define IDS_STR_CANCEL_OPRTN
Definition resource.h:78
#define IDS_STR_ERR_UNDISP
Definition resource.h:80
#define IDS_STR_ERR_OPEN_FILE
Definition resource.h:79
#define IDS_STR_ERR_PREDISP
Definition resource.h:81
#define IDS_STR_OPEN_FILE
Definition resource.h:114