CMakeGenDialog.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #if !defined(CMAKE_GEN_DIALOG_INCLUDED)
  14. #define CMAKE_GEN_DIALOG_INCLUDED
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. // CMakeGenDialog.h : header file
  19. //
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CCMakeGenDialog dialog
  22. class cmake;
  23. class CCMakeGenDialog : public CDialog
  24. {
  25. // Construction
  26. public:
  27. CCMakeGenDialog(CWnd* pParent = NULL); // standard constructor
  28. // Dialog Data
  29. //{{AFX_DATA(CCMakeGenDialog)
  30. enum { IDD = IDD_GEN_DIALOG };
  31. CStatic m_BuildForLabel;
  32. CComboBox m_GeneratorChoice;
  33. CString m_GeneratorChoiceString;
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CCMakeGenDialog)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. // Generated message map functions
  44. //{{AFX_MSG(CCMakeGenDialog)
  45. virtual BOOL OnInitDialog();
  46. afx_msg void OnEditchangeGenerator();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. public:
  50. cmake *m_CMakeInstance;
  51. };
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif