JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
SetHeaderDLG.cpp
Go to the documentation of this file.
1//
2// SetHeaderDLG.cpp : インプリメンテーション ファイル
3//
4
5#include "SetHeaderDLG.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 jbxl;
16using namespace jbxwl;
17
18
20// CSetHeaderDLG ダイアログ
21
22
23//CSetHeaderDLG::CSetHeaderDLG(int h, int x, int y, int z, int d, BOOL ltend, BOOL savep, CWnd* pParent)
24CSetHeaderDLG::CSetHeaderDLG(CWnd* pParent) : CDialog(CSetHeaderDLG::IDD, pParent)
25{
26 //{{AFX_DATA_INIT(CSetHeaderDLG)
27 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
28 //}}AFX_DATA_INIT
29
30 hSize = 0;
31 xSize = 512;
32 ySize = 512;
33 zSize = 1;
34 dSize = 16;
35 zBase = 0;
36
37 ltEnd = FALSE;
38// dicomF = FALSE;
39 sPara = FALSE;
40
41 hEBox = NULL;
42 xEBox = NULL;
43 yEBox = NULL;
44 zEBox = NULL;
45 dEBox = NULL;
46 eCBox = NULL;
47// dCBox = NULL;
48 sCBox = NULL;
49 bEBox = NULL;
50}
51
52
53//
54void CSetHeaderDLG::DoDataExchange(CDataExchange* pDX)
55{
56 CDialog::DoDataExchange(pDX);
57 //{{AFX_DATA_MAP(CSetHeaderDLG)
58 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
59 //}}AFX_DATA_MAP
60
61}
62
63
64
65BEGIN_MESSAGE_MAP(CSetHeaderDLG, CDialog)
66 //{{AFX_MSG_MAP(CSetHeaderDLG)
67 //}}AFX_MSG_MAP
68 ON_BN_CLICKED(IDOK, OnBnClickedOk)
70END_MESSAGE_MAP()
71
72
73
74
75// CSetHeaderDLG メッセージ ハンドラ
76
77void CSetHeaderDLG::setParameter(int h, int x, int y, int z, int d, int b, BOOL ltend, BOOL dicom)
78{
79 if (!sPara) { // パラメータを保存しない設定なら
80 hSize = h;
81 xSize = x;
82 ySize = y;
83 zSize = z;
84 dSize = d;
85 }
86 zBase = b;
87 ltEnd = ltend;
88 //dicomF = dicom;
89}
90
91
92//
94{
95 TCHAR buf[LNAME];
96// memset(buf, 0, LNAME);
97
98 hEBox = (CEdit*)GetDlgItem(IDC_FH_HSIZE);
99 xEBox = (CEdit*)GetDlgItem(IDC_FH_XSIZE);
100 yEBox = (CEdit*)GetDlgItem(IDC_FH_YSIZE);
101 zEBox = (CEdit*)GetDlgItem(IDC_FH_ZSIZE);
102 dEBox = (CEdit*)GetDlgItem(IDC_FH_DEPTH);
103 sCBox = (CButton*)GetDlgItem(IDC_FH_SAVEP);
104
105 eCBox = (CButton*)GetDlgItem(IDC_FH_LTLEND);
106 bEBox = (CEdit*)GetDlgItem(IDC_FH_BASE);
107
108 sntprintf(buf, LNAME, _T("%d"), hSize);
109 hEBox->SetWindowText(buf);
110
111 sntprintf(buf, LNAME, _T("%d"), xSize);
112 xEBox->SetWindowText(buf);
113
114 sntprintf(buf, LNAME, _T("%d"), ySize);
115 yEBox->SetWindowText(buf);
116
117 sntprintf(buf, LNAME, _T("%d"), zSize);
118 zEBox->SetWindowText(buf);
119
120 sntprintf(buf, LNAME, _T("%d"), dSize);
121 dEBox->SetWindowText(buf);
122
123 sntprintf(buf, LNAME, _T("%d"), zBase);
124 bEBox->SetWindowText(buf);
125
126 if (sPara) sCBox->SetCheck(1);
127 else sCBox->SetCheck(0);
128
129// if (dicomF)dCBox->SetCheck(1);
130// else dCBox->SetCheck(0);
131
132 if (ltEnd) eCBox->SetCheck(1);
133 else eCBox->SetCheck(0);
134
135 return TRUE;
136}
137
138
139//
141{
142 TCHAR buf[LNAME];
143// memset(buf, 0, LNAME);
144
145 hEBox->GetWindowText(buf, LNAME);
146 hSize = ttoi(buf);
147
148 xEBox->GetWindowText(buf, LNAME);
149 xSize = ttoi(buf);
150
151 yEBox->GetWindowText(buf, LNAME);
152 ySize = ttoi(buf);
153
154 zEBox->GetWindowText(buf, LNAME);
155 zSize = ttoi(buf);
156
157 dEBox->GetWindowText(buf, LNAME);
158 dSize = ttoi(buf);
159
160 bEBox->GetWindowText(buf, LNAME);
161 zBase = ttoi(buf);
162
163 if (sCBox->GetCheck()==1) sPara = TRUE;
164 else sPara = FALSE;
165
166 if (eCBox->GetCheck()==1) ltEnd = TRUE;
167 else ltEnd = FALSE;
168
169/* if (dCBox->GetCheck()==1) {
170 dicomF = TRUE;
171 sPara = FALSE;
172 }
173 else dicomF = FALSE;
174*/
175 CDialog::OnOK();
176 return;
177}
178
179
180//
182{
183 CmnHead hd;
184
185 init_CmnHead(&hd);
186 hd.kind = 0;
187
188 if (zBase!=0) {
189 hd.kind |= HAS_BASE;
190 ZeroBase = zBase;
191 }
192 if (ltEnd) hd.kind |= HAS_LENDIAN;
193
194/* if (dicomF) {
195 hd.kind |= DICOM_DATA;
196 hd.xsize = 512;
197 hd.ysize = 512;
198 hd.depth = 16;
199 }
200*/
201 if (sPara) {
202 hd.kind |= USERSET_DATA;
203 hd.xsize = xSize;
204 hd.ysize = ySize;
205 hd.zsize = zSize;
206 hd.depth = dSize;
207 hd.bsize = hSize;
208 hd.lsize = xSize*ySize*zSize*((dSize+7)/8);
209 }
210
211 return hd;
212}
213
214
215//
217{
218 // TODO : ここにコントロール通知ハンドラ コードを追加します.
219 OnOK();
220}
221
222
223//
225{
226 // TODO: ここにコントロール通知ハンドラ コードを追加します.
227}
228
static char THIS_FILE[]
afx_msg void OnBnClickedFhSavep()
afx_msg void OnBnClickedOk()
virtual BOOL OnInitDialog()
CSetHeaderDLG(CWnd *pParent=NULL)
virtual void DoDataExchange(CDataExchange *pDX)
#define IDC_FH_XSIZE
Definition resource.h:28
#define IDC_FH_HSIZE
Definition resource.h:27
#define IDC_FH_DEPTH
Definition resource.h:31
#define IDC_FH_YSIZE
Definition resource.h:29
#define IDC_FH_ZSIZE
Definition resource.h:30
#define IDC_FH_LTLEND
Definition resource.h:32
#define IDC_FH_SAVEP
Definition resource.h:33
#define IDC_FH_BASE
Definition resource.h:34