#include <NameDlg.h>
Inheritance diagram for CNameDlg:


Public Types | |
| enum | { IDD = IDD_NEWNAME } |
Public Member Functions | |
| CNameDlg (const char *pName, CWnd *pParent=NULL) | |
Data Fields | |
| CString | m_strName |
Protected Member Functions | |
| virtual void | DoDataExchange (CDataExchange *pDX) |
| virtual BOOL | OnInitDialog () |
| virtual void | OnOK () |
Private Attributes | |
| CString | m_strCaption |
|
|
Definition at line 43 of file NameDlg.h. 00043 { IDD = IDD_NEWNAME };
|
|
||||||||||||
|
Definition at line 39 of file NameDlg.cpp. References m_strCaption, and m_strName. 00040 : CDialog(CNameDlg::IDD, pParent) 00041 { 00042 //{{AFX_DATA_INIT(CNameDlg) 00043 m_strName = _T(""); 00044 //}}AFX_DATA_INIT 00045 m_strCaption = pName; 00046 }
|
|
|
Definition at line 49 of file NameDlg.cpp. References IDC_EDIT_NAME, and m_strName. 00050 {
00051 CDialog::DoDataExchange(pDX);
00052 //{{AFX_DATA_MAP(CNameDlg)
00053 DDX_Text(pDX, IDC_EDIT_NAME, m_strName);
00054 //}}AFX_DATA_MAP
00055 }
|
|
|
Definition at line 71 of file NameDlg.cpp. References BOOL, and m_strCaption. 00072 {
00073 CDialog::OnInitDialog();
00074
00075 SetWindowText(m_strCaption);
00076
00077 return TRUE; // return TRUE unless you set the focus to a control
00078 // EXCEPTION: OCX Property Pages should return FALSE
00079 }
|
|
|
|
|
|
Definition at line 36 of file NameDlg.h. Referenced by CNameDlg(), and OnInitDialog(). |
|
|
Definition at line 44 of file NameDlg.h. Referenced by CNameDlg(), DoDataExchange(), CGroupDlg::OnBtnAdd(), CMainFrame::OnDropGroupName(), CDlgCamera::OnFileOpen(), and CDlgCamera::OnFileSave(). |
1.3.9.1