JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ExDocument.cpp
Go to the documentation of this file.
1//
2// ExDocument.cpp : インプリメンテーション ファイル
3//
4
5#include "ExDocument.h"
6
7
8#ifdef _DEBUG
9#define new DEBUG_NEW
10#undef THIS_FILE
11static char THIS_FILE[] = __FILE__;
12#endif
13
14
15using namespace jbxwl;
16
17
18
20// CExDocument
21
22IMPLEMENT_DYNCREATE(CExDocument, CDocument)
23
24
26{
27 //DEBUG_WARN("CExDocument::CExDocument Start\n");
28
29 init_CmnHead(&infHead);
30 msGraph.init();
31 cmnHead.init();
32
33 hasReadData = FALSE; // データを正常に読み込み,保持しているか.
34 hasViewData = FALSE; // 読み込んだデータから表示用データを作成したか.
35 ctrlCntrst = FALSE; // 表示用データ作成時に(画素値が255以下でも)強制的にコントラストを調整を行う.
36 multiSliceData = FALSE; // TRUE ならマルチスライス読み込みモード
37 notFreeMSGraph = FALSE; // メモリ管理無しの場合,このオブジェクトが msGraph のメモリを開放するのは禁止.
38 notFreeCmnHead = FALSE; // メモリ管理無しの場合,このオブジェクトが cmnHead のメモリを開放するのは禁止.
39
40 pView = NULL;
41 pFrame = NULL;
42 pApp = NULL;
43 anyData = NULL;
44
45 Title = _T("");
46 preTitle = _T("");
47 pstTitle = _T("");
48
49 startNo = 0;
50 endNo = 0;
51 vMax = 0;
52 vMin = 0;
53 colorMode = GRAPH_COLOR_MONO;
54 base = 0;
55
56 //DEBUG_WARN("CExDocument::CExDocument End\n");
57}
58
59
60
61CExDocument::~CExDocument()
62{
63 DEBUG_INFO("DESTRUCTOR: CExDocument\n");
64
65 if (pApp!=NULL) pApp->DocumentDestructor(this); // 上位アプリケーションに通知
66
67 if (notFreeCmnHead) cmnHead.mfree();
68 else cmnHead.free();
69 if (notFreeMSGraph) msGraph.mfree();
70 else msGraph.free();
71
72 if (!isNull(pView)) pView->pDoc = NULL;
73 if (!isNull(pFrame)) pFrame->pDoc = NULL;
74 pView = NULL;
75 pFrame = NULL;
76}
77
78
79
80BEGIN_MESSAGE_MAP(CExDocument, CDocument)
81 //{{AFX_MSG_MAP(CExDocument)
82 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
83 //}}AFX_MSG_MAP
84END_MESSAGE_MAP()
85
86
87
88
89// CExDocument 診断
90
91#ifdef _DEBUG
93{
94 CDocument::AssertValid();
95}
96
97
98//
99void CExDocument::Dump(CDumpContext& dc) const
100{
101 CDocument::Dump(dc);
102}
103#endif //_DEBUG
104
105
106
108// CExDocument シリアライズ
109
110void CExDocument::Serialize(CArchive& ar)
111{
112 if (ar.IsStoring())
113 {
114 // TODO: この位置に保存用のコードを追加してください
115 }
116 else
117 {
118 // TODO: この位置に読み込み用のコードを追加してください
119 }
120}
121
122
123
124
126// CExDocument コマンド
127
129{
130 //DEBUG_INFO("CExDocument::OnNewDocument(): START\n");
131
132 if (!hasReadData) return FALSE;
133
135 if (!hasViewData) return FALSE;
136
137 //DEBUG_INFO("CExDocument::OnNewDocument(): END\n");
138 return TRUE;
139}
140
141
142//
143BOOL CExDocument::OnOpenDocument(LPCTSTR lpszPathName)
144{
145 //DEBUG_INFO("CExDocument::OnOpenDocument(): START\n");
146
148 if (!hasReadData) return FALSE;
149
151 if (!hasViewData) return FALSE;
152
153 //DEBUG_INFO("CExDocument::OnOpenDocument(): END\n");
154 return TRUE;
155}
156
157
158//
160{
161 if (pView==NULL) {
163 while (pos!=NULL) {
165 if (this==pview->GetDocument()) return pview;
166 }
167 return NULL;
168 }
169 return pView;
170}
171
172
173
181{
182 return TRUE;
183}
184
185
186//
187// 読み込んだデータから表示用のデータを作る.
188// オーバーライド用
189//
191{
192 return TRUE;
193}
194
195
196//
197// データを書き込む.
198// オーバーライド用
199//
200BOOL CExDocument::WriteDataFile(LPCTSTR fname)
201{
202 return TRUE;
203}
204
205
static char THIS_FILE[]
virtual void DocumentDestructor(CExDocument *doc)
Definition ExClass.h:59
ExCmnHead cmnHead
Definition ExDocument.h:53
virtual BOOL WriteDataFile(LPCTSTR)
virtual BOOL ReadDataFile(LPCTSTR)
virtual BOOL MakeViewData()
virtual BOOL OnNewDocument()
virtual BOOL OnOpenDocument(LPCTSTR lpszPathName)
CExFrame * pFrame
Definition ExDocument.h:56
CAppCallBack * pApp
Definition ExDocument.h:57
CExView * GetView()
virtual void Serialize(CArchive &ar)
ExMSGraph< sWord > msGraph
Definition ExDocument.h:52
virtual void AssertValid() const
virtual void Dump(CDumpContext &dc) const
CExDocument * pDoc
Definition ExFrame.h:41
CExDocument * pDoc
Definition ExView.h:76