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.

61 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. HomeDir.h : header file
  5. File History:
  6. JonY Apr-96 created
  7. --*/
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHomeDir dialog
  10. class CHomeDir : public CWizBaseDlg
  11. {
  12. DECLARE_DYNCREATE(CHomeDir)
  13. // Construction
  14. public:
  15. CHomeDir();
  16. ~CHomeDir();
  17. // Dialog Data
  18. //{{AFX_DATA(CHomeDir)
  19. enum { IDD = IDD_HOMEDIR_DIALOG };
  20. CComboBox m_cbDriveLetter;
  21. CString m_csHome_dir_drive;
  22. CString m_csRemotePath;
  23. int m_rbPathLocale;
  24. CString m_csCaption;
  25. //}}AFX_DATA
  26. BOOL CreateNewDirectory(const TCHAR* m_csDirectoryName);
  27. // Overrides
  28. // ClassWizard generate virtual function overrides
  29. //{{AFX_VIRTUAL(CHomeDir)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. LRESULT OnWizardBack();
  34. LRESULT OnWizardNext();
  35. // Implementation
  36. protected:
  37. // Generated message map functions
  38. //{{AFX_MSG(CHomeDir)
  39. virtual BOOL OnInitDialog();
  40. afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
  41. afx_msg void OnLocalPathButton();
  42. afx_msg void OnRemotePathButton();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };