|
Revision 5, 1.2 kB
(checked in by qbert, 6 years ago)
|
Initial ( and last :( ) commit
|
| Line | |
|---|
| 1 |
// DefsPage.cpp : implementation file |
|---|
| 2 |
// |
|---|
| 3 |
|
|---|
| 4 |
#include "stdafx.h" |
|---|
| 5 |
#include "Elephant.h" |
|---|
| 6 |
#include "DefsPage.h" |
|---|
| 7 |
|
|---|
| 8 |
#ifdef _DEBUG |
|---|
| 9 |
#define new DEBUG_NEW |
|---|
| 10 |
#undef THIS_FILE |
|---|
| 11 |
static char THIS_FILE[] = __FILE__; |
|---|
| 12 |
#endif |
|---|
| 13 |
|
|---|
| 14 |
///////////////////////////////////////////////////////////////////////////// |
|---|
| 15 |
// CDefsPage dialog |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
CDefsPage::CDefsPage(CWnd* pParent /*=NULL*/) |
|---|
| 19 |
|
|---|
| 20 |
{ |
|---|
| 21 |
|
|---|
| 22 |
//{{AFX_DATA_INIT(CDefsPage) |
|---|
| 23 |
|
|---|
| 24 |
//}}AFX_DATA_INIT |
|---|
| 25 |
} |
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
void CDefsPage::DoDataExchange(CDataExchange* pDX) |
|---|
| 29 |
{ |
|---|
| 30 |
CDialog::DoDataExchange(pDX); |
|---|
| 31 |
//{{AFX_DATA_MAP(CDefsPage) |
|---|
| 32 |
DDX_Text(pDX, IDC_EDIT1, m_version); |
|---|
| 33 |
DDX_Text(pDX, IDC_EDIT8, m_debug); |
|---|
| 34 |
DDX_Text(pDX, IDC_EDIT13, m_verbatim); |
|---|
| 35 |
DDX_Text(pDX, IDC_EDIT14, m_targetName); |
|---|
| 36 |
//}}AFX_DATA_MAP |
|---|
| 37 |
} |
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
BEGIN_MESSAGE_MAP(CDefsPage, CRHGenericChildDialog) |
|---|
| 41 |
//{{AFX_MSG_MAP(CDefsPage) |
|---|
| 42 |
//}}AFX_MSG_MAP |
|---|
| 43 |
END_MESSAGE_MAP() |
|---|
| 44 |
|
|---|
| 45 |
///////////////////////////////////////////////////////////////////////////// |
|---|
| 46 |
// CDefsPage message handlers |
|---|
| 47 |
|
|---|
| 48 |
BOOL CDefsPage::OnInitDialog() |
|---|
| 49 |
{ |
|---|
| 50 |
CRHGenericChildDialog::OnInitDialog(); |
|---|
| 51 |
|
|---|
| 52 |
UpdatePage(); |
|---|
| 53 |
|
|---|
| 54 |
return TRUE; // return TRUE unless you set the focus to a control |
|---|
| 55 |
// EXCEPTION: OCX Property Pages should return FALSE |
|---|
| 56 |
} |
|---|