root/trunk/AddNewProjectCompilerSettingsPage.h

Revision 5, 1.8 kB (checked in by qbert, 3 years ago)

Initial ( and last :( ) commit

Line 
1 #if !defined(AFX_ADDNEWPROJECTCOMPILERSETTINGSPAGE_H__4FBFFDB1_96B5_48B4_BB19_60483EDC4C27__INCLUDED_)
2 #define AFX_ADDNEWPROJECTCOMPILERSETTINGSPAGE_H__4FBFFDB1_96B5_48B4_BB19_60483EDC4C27__INCLUDED_
3
4 #if _MSC_VER > 1000
5 #pragma once
6 #endif // _MSC_VER > 1000
7 // AddNewProjectCompilerSettingsPage.h : header file
8 //
9
10 /////////////////////////////////////////////////////////////////////////////
11 // CAddNewProjectCompilerSettingsPage dialog
12
13 class CAddNewProjectCompilerSettingsPage : public CRHGenericChildDialog
14 {
15 // Construction
16 public:
17     CAddNewProjectCompilerSettingsPage(CWnd* pParent = NULL);   // standard constructor
18 virtual int CRHGetDialogID() { return IDD;
19     }
20 // Dialog Data
21     //{{AFX_DATA(CAddNewProjectCompilerSettingsPage)
22     enum { IDD = IDD_ADDNEWPROJECT_COMPILERSETTINGS_PAGE };
23     CEdit m_linker;
24     CElephantEdit   m_debug;
25     CEdit m_libraries;
26     CElephantEdit m_version;
27     CComboBox   m_flags;
28     CComboBox   m_libs;
29     CString m_csVersion;
30     CString m_csLinker;
31     CString m_csLibs;
32     CString m_csDebug;
33     BOOL    m_staticLib;
34     BOOL    m_sharedLib;
35     //}}AFX_DATA
36 void InitComboBoxes();
37
38 // Overrides
39     // ClassWizard generated virtual function overrides
40     //{{AFX_VIRTUAL(CAddNewProjectCompilerSettingsPage)
41     protected:
42     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support 
43     //}}AFX_VIRTUAL
44
45     afx_msg void OnSelchangeCombo1();
46
47 // Implementation
48 protected:
49
50     // Generated message map functions
51     //{{AFX_MSG(CAddNewProjectCompilerSettingsPage)
52     virtual BOOL OnInitDialog();
53     afx_msg void OnSelchangeCombo2();
54     //}}AFX_MSG
55     DECLARE_MESSAGE_MAP()
56 };
57
58 //{{AFX_INSERT_LOCATION}}
59 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
60
61 #endif // !defined(AFX_ADDNEWPROJECTCOMPILERSETTINGSPAGE_H__4FBFFDB1_96B5_48B4_BB19_60483EDC4C27__INCLUDED_)
Note: See TracBrowser for help on using the browser.