DirectoryDlg.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #if !defined(AFX_DIRECTORYDLG_H__2B2B3B91_220F_11D6_AB35_00D0B70C3D79__INCLUDED_)
  2. #define AFX_DIRECTORYDLG_H__2B2B3B91_220F_11D6_AB35_00D0B70C3D79__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DirectoryDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDirectoryDlg dialog
  10. class CDirectoryDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. BOOL m_bIsHomeDir;
  15. CDirectoryDlg(CWnd* pParent = NULL); // standard constructor
  16. CString m_strTitle;
  17. // Dialog Data
  18. //{{AFX_DATA(CDirectoryDlg)
  19. enum { IDD = IDD_ADD_DIRECTORY };
  20. CString m_strPath;
  21. BOOL m_bVirtualDir;
  22. CString m_strAlias;
  23. BOOL m_bAllowCreateDirectory;
  24. BOOL m_bAllowDelete;
  25. BOOL m_bAllowDownload;
  26. BOOL m_bAllowRename;
  27. BOOL m_bAllowUpload;
  28. //}}AFX_DATA
  29. // Overrides
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CDirectoryDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. // Generated message map functions
  38. //{{AFX_MSG(CDirectoryDlg)
  39. afx_msg void OnBrowse();
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnVirtualdir();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. //{{AFX_INSERT_LOCATION}}
  46. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  47. #endif // !defined(AFX_DIRECTORYDLG_H__2B2B3B91_220F_11D6_AB35_00D0B70C3D79__INCLUDED_)