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.

95 lines
2.3 KiB

  1. #if !defined(AFX_NEWPROF_H__F1801DFC_6212_11D1_855B_00C04FC31FD3__INCLUDED_)
  2. #define AFX_NEWPROF_H__F1801DFC_6212_11D1_855B_00C04FC31FD3__INCLUDED_
  3. #include "helper.h"
  4. #if _MSC_VER >= 1000
  5. #pragma once
  6. #endif // _MSC_VER >= 1000
  7. // NewProf.h : header file
  8. //
  9. #include "resource.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CDlgNewProf dialog
  12. #if 0 // concept of profile is removed
  13. class CDlgNewProf : public CACSDialog
  14. {
  15. // Construction
  16. public:
  17. CDlgNewProf(CWnd* pParent = NULL); // standard constructor
  18. virtual ~CDlgNewProf();
  19. // Dialog Data
  20. //{{AFX_DATA(CDlgNewProf)
  21. enum { IDD = IDD_NEWPROFILE };
  22. CString m_strProfileName;
  23. //}}AFX_DATA
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CDlgNewProf)
  27. protected:
  28. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  29. //}}AFX_VIRTUAL
  30. public:
  31. void SetNameList(CStrArray* pNames) { m_pNameList = pNames;};
  32. // Implementation
  33. protected:
  34. CStrArray* m_pNameList;
  35. // Generated message map functions
  36. //{{AFX_MSG(CDlgNewProf)
  37. afx_msg void OnEditchangeComboprofilename();
  38. virtual BOOL OnInitDialog();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. CStrArray m_GlobalProfileNames;
  42. CComPtr<CACSGlobalProfiles> m_spGlobalProfiles;
  43. CStrBox<CComboBox>* m_pBox;
  44. };
  45. #endif //#if 0
  46. /////////////////////////////////////////////////////////////////////////////
  47. // CDlgNewExtUser dialog
  48. class CDlgNewExtUser : public CACSDialog
  49. {
  50. // Construction
  51. public:
  52. CDlgNewExtUser(CWnd* pParent = NULL); // standard constructor
  53. // Dialog Data
  54. //{{AFX_DATA(CDlgNewExtUser)
  55. enum { IDD = IDD_NEWEXTERNALUSER };
  56. CString m_strExtUserName;
  57. //}}AFX_DATA
  58. // Overrides
  59. // ClassWizard generated virtual function overrides
  60. //{{AFX_VIRTUAL(CDlgNewExtUser)
  61. protected:
  62. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  63. //}}AFX_VIRTUAL
  64. public:
  65. void SetNameList(CStrArray* pNames) { m_pNameList = pNames;};
  66. // Implementation
  67. protected:
  68. CStrArray* m_pNameList;
  69. // Generated message map functions
  70. //{{AFX_MSG(CDlgNewExtUser)
  71. afx_msg void OnChangeEditexteralusername();
  72. //}}AFX_MSG
  73. DECLARE_MESSAGE_MAP()
  74. };
  75. //{{AFX_INSERT_LOCATION}}
  76. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  77. #endif // !defined(AFX_NEWPROF_H__F1801DFC_6212_11D1_855B_00C04FC31FD3__INCLUDED_)