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

#include <InputNumDLG.h>

Inheritance diagram for CInputNumDLG:
Collaboration diagram for CInputNumDLG:

Public Types

enum  { IDD = IDD_INPNUM_DLG }
 

Public Member Functions

 CInputNumDLG (CWnd *pParent=NULL)
 
 CInputNumDLG (LPCTSTR tn, int v=0, CWnd *pParent=NULL)
 
virtual ~CInputNumDLG ()
 
virtual BOOL OnInitDialog ()
 

Public Attributes

CStatic * valtlBox
 
CEdit * valBox
 
CString valtl
 
int val
 

Protected Member Functions

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

Detailed Description

Definition at line 21 of file InputNumDLG.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
IDD 

Definition at line 33 of file InputNumDLG.h.

#define IDD_INPNUM_DLG
Definition resource.h:13

Constructor & Destructor Documentation

◆ CInputNumDLG() [1/2]

CInputNumDLG ( CWnd * pParent = NULL)

Definition at line 19 of file InputNumDLG.cpp.

20 : CDialog(CInputNumDLG::IDD, pParent)
21{
22 valtlBox = NULL;
23 valBox = NULL;
24
25 valtl = _T("");
26 val = 0;
27}

◆ CInputNumDLG() [2/2]

CInputNumDLG ( LPCTSTR tn,
int v = 0,
CWnd * pParent = NULL )

Definition at line 31 of file InputNumDLG.cpp.

32 : CDialog(CInputNumDLG::IDD, pParent)
33{
34 valtlBox = NULL;
35 valBox = NULL;
36
37 valtl = vt;
38 val = v;
39}

References CInputNumDLG::val, CInputNumDLG::valBox, CInputNumDLG::valtl, and CInputNumDLG::valtlBox.

◆ ~CInputNumDLG()

~CInputNumDLG ( )
virtual

Definition at line 43 of file InputNumDLG.cpp.

44{
45}

Member Function Documentation

◆ DoDataExchange()

void DoDataExchange ( CDataExchange * pDX)
protectedvirtual

Definition at line 49 of file InputNumDLG.cpp.

50{
51 CDialog::DoDataExchange(pDX);
52}

◆ OnInitDialog()

BOOL OnInitDialog ( )
virtual

Definition at line 63 of file InputNumDLG.cpp.

64{
65 TCHAR buf[LMNAME];
66
67 valtlBox = (CStatic*)GetDlgItem(IDC_INM_VALTTL);
68 valBox = (CEdit*)GetDlgItem(IDC_INM_VAL);
69
70 if (valtl!=_T("")) valtlBox->SetWindowText(valtl);
71
72 sntprintf(buf, LMNAME, _T("%d"), val);
73 valBox->SetWindowText(buf);
74
75 return TRUE;
76}
#define IDC_INM_VAL
Definition resource.h:42
#define IDC_INM_VALTTL
Definition resource.h:41

References IDC_INM_VAL, and IDC_INM_VALTTL.

◆ OnOK()

void OnOK ( )
protectedvirtual

Definition at line 80 of file InputNumDLG.cpp.

81{
82 TCHAR buf[LMNAME];
83
84 valBox->GetWindowText(buf, LMNAME);
85 val = ttoi(buf);
86
87 CDialog::OnOK();
88 return;
89}

References CInputNumDLG::val, and CInputNumDLG::valBox.

Member Data Documentation

◆ val

int val

◆ valBox

CEdit* valBox

Definition at line 41 of file InputNumDLG.h.

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

◆ valtl

CString valtl

Definition at line 43 of file InputNumDLG.h.

Referenced by CInputNumDLG::CInputNumDLG().

◆ valtlBox

CStatic* valtlBox

Definition at line 40 of file InputNumDLG.h.

Referenced by CInputNumDLG::CInputNumDLG().


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