Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.0 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corporation, 1997 - 1998 **/
  4. /**********************************************************************/
  5. /*
  6. dlgprof.h
  7. definition of CDlgNewProfile, dialog to create a new profile
  8. FILE HISTORY:
  9. */
  10. #if !defined(AFX_DLGPROF_H__8C28D939_2A69_11D1_853E_00C04FC31FD3__INCLUDED_)
  11. #define AFX_DLGPROF_H__8C28D939_2A69_11D1_853E_00C04FC31FD3__INCLUDED_
  12. #if _MSC_VER >= 1000
  13. #pragma once
  14. #endif // _MSC_VER >= 1000
  15. // DlgProf.h : header file
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CDlgNewProfile dialog
  19. #ifdef ___OLD_OLD_CODE
  20. class CDlgNewProfile : public CDialog
  21. {
  22. // Construction
  23. public:
  24. CDlgNewProfile(CWnd* pParent, CStrArray& NameList);
  25. virtual ~CDlgNewProfile();
  26. // Dialog Data
  27. //{{AFX_DATA(CDlgNewProfile)
  28. enum { IDD = IDD_NEWDIALINPROFILE };
  29. CString m_sBaseProfile;
  30. CString m_sProfileName;
  31. //}}AFX_DATA
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CDlgNewProfile)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CDlgNewProfile)
  42. afx_msg void OnButtonEdit();
  43. virtual void OnOK();
  44. virtual BOOL OnInitDialog();
  45. afx_msg void OnChangeEditprofilename();
  46. afx_msg BOOL OnHelpInfo(HELPINFO* pHelpInfo);
  47. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. // all the profile names to choose as base profile
  51. CStrArray& m_NameList;
  52. // wrapper of ComboBox for based profiles
  53. CStrBox<CComboBox>* m_pBox;
  54. public:
  55. CRASProfile m_Profile;
  56. };
  57. #endif _OLD_OLD_CODE
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_DLGPROF_H__8C28D939_2A69_11D1_853E_00C04FC31FD3__INCLUDED_)