JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
CSetHeaderDLG Class Reference

#include <SetHeaderDLG.h>

Inheritance diagram for CSetHeaderDLG:
Collaboration diagram for CSetHeaderDLG:

Public Types

enum  { IDD = IDD_FHDLG }
 

Public Member Functions

 CSetHeaderDLG (CWnd *pParent=NULL)
 
void setParameter (int h, int x, int y, int z, int d, int b=0, BOOL ltend=FALSE, BOOL dicom=FALSE)
 
virtual BOOL OnInitDialog ()
 
CmnHead getCmnHead ()
 
afx_msg void OnBnClickedOk ()
 
afx_msg void OnBnClickedFhSavep ()
 

Public Attributes

CEdit * hEBox
 
CEdit * xEBox
 
CEdit * yEBox
 
CEdit * zEBox
 
CEdit * dEBox
 
CEdit * bEBox
 
CButton * eCBox
 
CButton * sCBox
 
int hSize
 
int xSize
 
int ySize
 
int zSize
 
int dSize
 
int zBase
 
BOOL ltEnd
 
BOOL sPara
 

Protected Member Functions

virtual void DoDataExchange (CDataExchange *pDX)
 
virtual void OnOK ()
 

Detailed Description

Definition at line 13 of file SetHeaderDLG.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
IDD 

Definition at line 51 of file SetHeaderDLG.h.

51{ IDD = IDD_FHDLG };
#define IDD_FHDLG
Definition resource.h:11

Constructor & Destructor Documentation

◆ CSetHeaderDLG()

CSetHeaderDLG ( CWnd * pParent = NULL)

Definition at line 24 of file SetHeaderDLG.cpp.

24 : 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}

References CSetHeaderDLG::bEBox, CSetHeaderDLG::dEBox, CSetHeaderDLG::dSize, CSetHeaderDLG::eCBox, CSetHeaderDLG::hEBox, CSetHeaderDLG::hSize, CSetHeaderDLG::ltEnd, CSetHeaderDLG::sCBox, CSetHeaderDLG::sPara, CSetHeaderDLG::xEBox, CSetHeaderDLG::xSize, CSetHeaderDLG::yEBox, CSetHeaderDLG::ySize, CSetHeaderDLG::zBase, CSetHeaderDLG::zEBox, and CSetHeaderDLG::zSize.

Member Function Documentation

◆ DoDataExchange()

void DoDataExchange ( CDataExchange * pDX)
protectedvirtual

Definition at line 54 of file SetHeaderDLG.cpp.

55{
56 CDialog::DoDataExchange(pDX);
57 //{{AFX_DATA_MAP(CSetHeaderDLG)
58 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
59 //}}AFX_DATA_MAP
60
61}

◆ getCmnHead()

CmnHead getCmnHead ( )

Definition at line 181 of file SetHeaderDLG.cpp.

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}

References CSetHeaderDLG::dSize, CSetHeaderDLG::hSize, CSetHeaderDLG::ltEnd, CSetHeaderDLG::sPara, CSetHeaderDLG::xSize, CSetHeaderDLG::ySize, CSetHeaderDLG::zBase, and CSetHeaderDLG::zSize.

Referenced by CRwGRDoc::ReadDataFile().

Here is the caller graph for this function:

◆ OnBnClickedFhSavep()

void OnBnClickedFhSavep ( )

Definition at line 224 of file SetHeaderDLG.cpp.

225{
226 // TODO: ここにコントロール通知ハンドラ コードを追加します.
227}

◆ OnBnClickedOk()

void OnBnClickedOk ( )

Definition at line 216 of file SetHeaderDLG.cpp.

217{
218 // TODO : ここにコントロール通知ハンドラ コードを追加します.
219 OnOK();
220}

References CSetHeaderDLG::OnOK().

Here is the call graph for this function:

◆ OnInitDialog()

BOOL OnInitDialog ( )
virtual

Definition at line 93 of file SetHeaderDLG.cpp.

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}
#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

References CSetHeaderDLG::bEBox, CSetHeaderDLG::dEBox, CSetHeaderDLG::dSize, CSetHeaderDLG::eCBox, CSetHeaderDLG::hEBox, CSetHeaderDLG::hSize, IDC_FH_BASE, IDC_FH_DEPTH, IDC_FH_HSIZE, IDC_FH_LTLEND, IDC_FH_SAVEP, IDC_FH_XSIZE, IDC_FH_YSIZE, IDC_FH_ZSIZE, CSetHeaderDLG::ltEnd, CSetHeaderDLG::sCBox, CSetHeaderDLG::sPara, CSetHeaderDLG::xEBox, CSetHeaderDLG::xSize, CSetHeaderDLG::yEBox, CSetHeaderDLG::ySize, CSetHeaderDLG::zBase, CSetHeaderDLG::zEBox, and CSetHeaderDLG::zSize.

◆ OnOK()

void OnOK ( )
protectedvirtual

Definition at line 140 of file SetHeaderDLG.cpp.

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}

References CSetHeaderDLG::bEBox, CSetHeaderDLG::dEBox, CSetHeaderDLG::dSize, CSetHeaderDLG::eCBox, CSetHeaderDLG::hEBox, CSetHeaderDLG::hSize, CSetHeaderDLG::ltEnd, CSetHeaderDLG::sCBox, CSetHeaderDLG::sPara, CSetHeaderDLG::xEBox, CSetHeaderDLG::xSize, CSetHeaderDLG::yEBox, CSetHeaderDLG::ySize, CSetHeaderDLG::zBase, CSetHeaderDLG::zEBox, and CSetHeaderDLG::zSize.

Referenced by CSetHeaderDLG::OnBnClickedOk().

Here is the caller graph for this function:

◆ setParameter()

void setParameter ( int h,
int x,
int y,
int z,
int d,
int b = 0,
BOOL ltend = FALSE,
BOOL dicom = FALSE )

Definition at line 77 of file SetHeaderDLG.cpp.

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}

Member Data Documentation

◆ bEBox

CEdit* bEBox

◆ dEBox

CEdit* dEBox

◆ dSize

◆ eCBox

CButton* eCBox

◆ hEBox

CEdit* hEBox

◆ hSize

◆ ltEnd

◆ sCBox

CButton* sCBox

◆ sPara

◆ xEBox

CEdit* xEBox

◆ xSize

◆ yEBox

CEdit* yEBox

◆ ySize

◆ zBase

◆ zEBox

CEdit* zEBox

◆ zSize


The documentation for this class was generated from the following files: