| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /*=========================================================================
- Program: CMake - Cross-Platform Makefile Generator
- Module: $RCSfile$
- Language: C++
- Date: $Date$
- Version: $Revision$
- Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
- See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
- This software is distributed WITHOUT ANY WARRANTY; without even
- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- PURPOSE. See the above copyright notices for more information.
- =========================================================================*/
- // CMakeSetupDialogDlg.h : header file
- //
- #if !defined(AFX_CMakeSetupDialogDLG_H__AC17A6F6_4634_11D4_8F21_00A0CC33FCD3__INCLUDED_)
- #define AFX_CMakeSetupDialogDLG_H__AC17A6F6_4634_11D4_8F21_00A0CC33FCD3__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "PropertyList.h"
- /////////////////////////////////////////////////////////////////////////////
- // CMakeSetupDialog dialog
- class CMakeCommandLineInfo;
- class cmake;
- class CMakeSetupDialog : public CDialog
- {
- // Construction
- public:
- CMakeSetupDialog(const CMakeCommandLineInfo& cmdInfo,
- CWnd* pParent = NULL);
- // return the cmake that is currently being used
- cmake *GetCMakeInstance() {
- return m_CMakeInstance; }
- protected:
- //! Load cache file from m_WhereBuild and display in GUI editor
- void LoadCacheFromDiskToGUI();
- //! Save GUI values to cmCacheManager and then save to disk.
- void SaveCacheFromGUI();
- void SaveToRegistry();
- void LoadFromRegistry();
- bool Browse(CString&, const char* title);
- void ReadRegistryValue(HKEY hKey,
- CString *val,
- const char *key,
- const char *aadefault);
- void ShowAdvancedValues();
- void RemoveAdvancedValues();
- // Dialog Data
- //{{AFX_DATA(CMakeSetupDialog)
- enum { IDD = IDD_CMakeSetupDialog_DIALOG };
- CButton m_AdvancedValuesControl;
- CStatic m_BuildForLabel;
- CButton m_BrowseSource;
- CButton m_BrowseBuild;
- CButton m_HelpButton;
- CComboBox m_GeneratorChoice;
- CButton m_OKButton;
- CButton m_CancelButton;
- CString m_WhereSource;
- CString m_WhereBuild;
- CButton m_ListFrame;
- bool m_BuildPathChanged;
- CComboBox m_WhereSourceControl;
- CComboBox m_WhereBuildControl;
- CPropertyList m_CacheEntriesList;
- CStatic m_MouseHelp;
- CStatic m_VersionDisplay;
- CButton m_Configure;
- CString m_GeneratorChoiceString;
- BOOL m_AdvancedValues;
- //}}AFX_DATA
-
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMakeSetupDialog)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- void RunCMake(bool generateProjectFiles);
- // copy from the cache manager to the cache edit list box
- void FillCacheGUIFromCacheManager();
- // copy from the list box to the cache manager
- void FillCacheManagerFromCacheGUI();
- // Create a shortcut on the desktop with the current Source/Build dir.
- int CreateShortcut();
- // Handle param or single dropped file.
- void ChangeDirectoriesFromFile(const char *file);
-
- HICON m_hIcon;
- CString m_RegistryKey;
- CString m_PathToExecutable;
- // Generated message map functions
- //{{AFX_MSG(CMakeSetupDialog)
- virtual BOOL OnInitDialog();
- afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
- afx_msg void OnCancel();
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- afx_msg void OnBrowseWhereSource();
- virtual void OnConfigure();
- afx_msg void OnBrowseWhereBuild();
- afx_msg void OnChangeWhereBuild();
- afx_msg void OnSelendokWhereBuild();
- afx_msg void OnChangeWhereSource();
- afx_msg void OnSelendokWhereSource();
- 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 OnAdvancedValues();
- afx_msg void OnDoubleclickedAdvancedValues();
- afx_msg void OnDropFiles(HDROP);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- int m_oldCX;
- int m_oldCY;
- float m_deltaXRemainder;
- cmake *m_CMakeInstance;
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_CMakeSetupDialogDLG_H__AC17A6F6_4634_11D4_8F21_00A0CC33FCD3__INCLUDED_)
|