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

#include <ReadFilesDLG.h>

Inheritance diagram for CReadFilesDLG:
Collaboration diagram for CReadFilesDLG:

Public Types

enum  { IDD = IDD_RFDLG }
 

Public Member Functions

 CReadFilesDLG (LPCTSTR fname, CWnd *pParent=NULL)
 
virtual ~CReadFilesDLG ()
 
virtual BOOL OnInitDialog ()
 

Public Attributes

CWnd * pWnd
 
CEdit * fnameEBox
 
CEdit * fromNumEBox
 
CEdit * toNumEBox
 
CString fName
 
int fromNum
 
int toNum
 

Protected Member Functions

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

Detailed Description

Definition at line 26 of file ReadFilesDLG.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
IDD 

Definition at line 58 of file ReadFilesDLG.h.

58{ IDD = IDD_RFDLG };
#define IDD_RFDLG
Definition resource.h:7

Constructor & Destructor Documentation

◆ CReadFilesDLG()

CReadFilesDLG ( LPCTSTR fname,
CWnd * pParent = NULL )

Definition at line 24 of file ReadFilesDLG.cpp.

25 : CDialog(CReadFilesDLG::IDD, pParent)
26{
27 //{{AFX_DATA_INIT(CReadFilesDLG)
28 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
29 //}}AFX_DATA_INIT
30
31 fnameEBox = NULL;
32 fromNumEBox = NULL;
33 toNumEBox = NULL;
34
35 pWnd = pParent;
36 fName = fname;
37 fromNum = 0;
38 toNum = 0;
39
40// hSize = 0;
41// xSize = 512;
42// ySize = 512;
43// zSize = 1;
44// dSize = 16;
45// ltEnd = FALSE;
46}

References CReadFilesDLG::fName, CReadFilesDLG::fnameEBox, CReadFilesDLG::fromNum, CReadFilesDLG::fromNumEBox, CReadFilesDLG::pWnd, CReadFilesDLG::toNum, and CReadFilesDLG::toNumEBox.

◆ ~CReadFilesDLG()

~CReadFilesDLG ( )
virtual

Definition at line 50 of file ReadFilesDLG.cpp.

51{
52// free(fName);
53}

Member Function Documentation

◆ DoDataExchange()

void DoDataExchange ( CDataExchange * pDX)
protectedvirtual

Definition at line 57 of file ReadFilesDLG.cpp.

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

◆ OnInitDialog()

BOOL OnInitDialog ( )
virtual

Definition at line 78 of file ReadFilesDLG.cpp.

79{
80 fnameEBox = (CEdit*)GetDlgItem(IDC_RF_FNAME);
81 fromNumEBox = (CEdit*)GetDlgItem(IDC_RF_FROMNUM);
82 toNumEBox = (CEdit*)GetDlgItem(IDC_RF_TONUM);
83 if (fName!=_T("")) fnameEBox->SetWindowText(fName);
84
85 return TRUE;
86}
#define IDC_RF_FROMNUM
Definition resource.h:18
#define IDC_RF_FNAME
Definition resource.h:17
#define IDC_RF_TONUM
Definition resource.h:19

References IDC_RF_FNAME, IDC_RF_FROMNUM, and IDC_RF_TONUM.

◆ OnOK()

void OnOK ( )
protectedvirtual

Definition at line 100 of file ReadFilesDLG.cpp.

101{
102 TCHAR buf[LNAME];
103
104 fnameEBox->GetWindowText(buf, LNAME);
105 fName = buf;
106
107 fromNumEBox->GetWindowText(buf, LNAME);
108 fromNum = ttoi(buf);
109
110 toNumEBox->GetWindowText(buf, LNAME);
111 toNum = ttoi(buf);
112
113/* if (SetHeaderDLG.sPara) {
114 hSize = SetHeaderDLG.hSize;
115 xSize = SetHeaderDLG.xSize;
116 ySize = SetHeaderDLG.ySize;
117 zSize = SetHeaderDLG.zSize;
118 dSize = SetHeaderDLG.dSize;
119 ltEnd = SetHeaderDLG.ltEnd;
120 }
121*/
122 CDialog::OnOK();
123}

References CReadFilesDLG::fName, CReadFilesDLG::fnameEBox, CReadFilesDLG::fromNum, CReadFilesDLG::fromNumEBox, CReadFilesDLG::toNum, and CReadFilesDLG::toNumEBox.

◆ OnSetHead()

void OnSetHead ( )
protected

Definition at line 127 of file ReadFilesDLG.cpp.

128{
129// CSetHeaderDLG* shdlg = new CSetHeaderDLG(hSize, xSize, ySize, zSize, dSize, ltEnd);
130// if (shdlg==NULL) return;
131
132// SetHeaderDLG.setParameter(hSize, xSize, ySize, zSize, dSize, ltEnd);
133 if (SetHeaderDLG.DoModal()!=IDOK) {
134 //delete (shdlg);
135 return;
136 }
137
138// hSize = SetHeaderDLG.hSize;
139// xSize = SetHeaderDLG.xSize;
140// ySize = SetHeaderDLG.ySize;
141// zSize = SetHeaderDLG.zSize;
142// dSize = SetHeaderDLG.dSize;
143// ltEnd = SetHeaderDLG.ltEnd;
144
145// delete (shdlg);
146 return;
147}
CSetHeaderDLG SetHeaderDLG

References jbxwl::SetHeaderDLG.

Member Data Documentation

◆ fName

CString fName

Definition at line 35 of file ReadFilesDLG.h.

Referenced by CReadFilesDLG::CReadFilesDLG(), and CReadFilesDLG::OnOK().

◆ fnameEBox

CEdit* fnameEBox

Definition at line 31 of file ReadFilesDLG.h.

Referenced by CReadFilesDLG::CReadFilesDLG(), and CReadFilesDLG::OnOK().

◆ fromNum

int fromNum

Definition at line 36 of file ReadFilesDLG.h.

Referenced by CReadFilesDLG::CReadFilesDLG(), and CReadFilesDLG::OnOK().

◆ fromNumEBox

CEdit* fromNumEBox

Definition at line 32 of file ReadFilesDLG.h.

Referenced by CReadFilesDLG::CReadFilesDLG(), and CReadFilesDLG::OnOK().

◆ pWnd

CWnd* pWnd

Definition at line 29 of file ReadFilesDLG.h.

Referenced by CReadFilesDLG::CReadFilesDLG().

◆ toNum

int toNum

Definition at line 37 of file ReadFilesDLG.h.

Referenced by CReadFilesDLG::CReadFilesDLG(), and CReadFilesDLG::OnOK().

◆ toNumEBox

CEdit* toNumEBox

Definition at line 33 of file ReadFilesDLG.h.

Referenced by CReadFilesDLG::CReadFilesDLG(), and CReadFilesDLG::OnOK().


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