diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-03-28 18:23:07 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-03-28 18:23:07 (GMT) |
commit | 11965ebd34a41c6c1c452ae87134dd8a2221d5e2 (patch) | |
tree | 30f3ffd3e014777287a4a596825acf2a15d0eeb2 /Source/MFCDialog/CMakeSetupDialog.h | |
parent | 98f30a3d29d4c1002aee3d66503d09bd85e926fa (diff) | |
download | CMake-11965ebd34a41c6c1c452ae87134dd8a2221d5e2.zip CMake-11965ebd34a41c6c1c452ae87134dd8a2221d5e2.tar.gz CMake-11965ebd34a41c6c1c452ae87134dd8a2221d5e2.tar.bz2 |
ENH: change how the generator is selected and what the last one used was
Diffstat (limited to 'Source/MFCDialog/CMakeSetupDialog.h')
-rw-r--r-- | Source/MFCDialog/CMakeSetupDialog.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.h b/Source/MFCDialog/CMakeSetupDialog.h index 4825368..5311a84 100644 --- a/Source/MFCDialog/CMakeSetupDialog.h +++ b/Source/MFCDialog/CMakeSetupDialog.h @@ -26,6 +26,8 @@ PURPOSE. See the above copyright notices for more information. #include "PropertyList.h" +#include "CMakeGenDialog.h" + ///////////////////////////////////////////////////////////////////////////// // CMakeSetupDialog dialog @@ -61,12 +63,10 @@ protected: //{{AFX_DATA(CMakeSetupDialog) enum { IDD = IDD_CMakeSetupDialog_DIALOG }; CButton m_AdvancedValuesControl; - CStatic m_BuildForLabel; CButton m_BrowseSource; CButton m_BrowseBuild; CButton m_HelpButton; CButton m_DeleteButton; - CComboBox m_GeneratorChoice; CButton m_OKButton; CButton m_CancelButton; CString m_WhereSource; @@ -79,7 +79,6 @@ protected: CStatic m_MouseHelp; CStatic m_StatusDisplay; CButton m_Configure; - CString m_GeneratorChoiceString; BOOL m_AdvancedValues; //}}AFX_DATA @@ -122,7 +121,6 @@ protected: afx_msg void OnSize(UINT nType, int cx, int cy); afx_msg void OnGetMinMaxInfo( MINMAXINFO FAR* lpMMI ); afx_msg void OnOk(); - afx_msg void OnEditchangeGenerator(); afx_msg void OnHelpButton(); afx_msg void OnDeleteButton(); afx_msg void OnAdvancedValues(); @@ -139,6 +137,9 @@ protected: HCURSOR m_Cursor; bool m_RunningConfigure; bool m_GeneratorPicked; + + CCMakeGenDialog m_GeneratorDialog; + }; //{{AFX_INSERT_LOCATION}} |