root/trunk/BuildExeOptions.cpp

Revision 5, 1.7 kB (checked in by qbert, 6 years ago)

Initial ( and last :( ) commit

Line 
1 // BuildExeOptions.cpp : implementation file
2 //
3
4 #include "stdafx.h"
5 #include "Elephant.h"
6 #include "BuildExeOptions.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 // CBuildExeOptions dialog
16
17
18 CBuildExeOptions::CBuildExeOptions(CWnd* pParent /*=NULL*/)
19    
20 {
21    
22
23     //{{AFX_DATA_INIT(CBuildExeOptions)
24     //}}AFX_DATA_INIT
25 }
26
27
28 void CBuildExeOptions::DoDataExchange(CDataExchange* pDX)
29 {
30     CDialog::DoDataExchange(pDX);
31     //{{AFX_DATA_MAP(CBuildExeOptions)
32     DDX_Check(pDX, IDC_CHECK1, m_name);
33     DDX_Check(pDX, IDC_CHECK2, m_full);
34     DDX_Check(pDX, IDC_CHECK3, m_link);
35     DDX_Check(pDX, IDC_CHECK4, m_nolink);
36     DDX_Check(pDX, IDC_CHECK18, m_lib);
37     DDX_Check(pDX, IDC_CHECK21, m_nolib);
38     DDX_Check(pDX, IDC_CHECK22, m_obj);
39     DDX_Check(pDX, IDC_CHECK30, m_silent);
40     DDX_Check(pDX, IDC_CHECK23, m_allobj);
41     DDX_Check(pDX, IDC_CHECK28, m_test);
42     DDX_Check(pDX, IDC_CHECK27, m_dll);
43     DDX_Check(pDX, IDC_CHECK26, m_gui);
44     DDX_Check(pDX, IDC_CHECK25, m_clean);
45     DDX_Check(pDX, IDC_CHECK24, m_v);
46     DDX_Text(pDX, IDC_EDIT1, m_X);
47     DDX_Text(pDX, IDC_EDIT8, m_M);
48     //}}AFX_DATA_MAP
49 }
50
51
52 BEGIN_MESSAGE_MAP(CBuildExeOptions, CRHGenericChildDialog)
53     //{{AFX_MSG_MAP(CBuildExeOptions)
54     //}}AFX_MSG_MAP
55 END_MESSAGE_MAP()
56
57 /////////////////////////////////////////////////////////////////////////////
58 // CBuildExeOptions message handlers
59
60 BOOL CBuildExeOptions::OnInitDialog()
61 {
62     CRHGenericChildDialog::OnInitDialog();
63    
64     UpdatePage();
65    
66     return TRUE;  // return TRUE unless you set the focus to a control
67                   // EXCEPTION: OCX Property Pages should return FALSE
68 }
Note: See TracBrowser for help on using the browser.