diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-05 21:26:48 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-05 21:26:48 (GMT) |
commit | 9c149dda8124ed87ebcf381abf8723128bc5cfc8 (patch) | |
tree | 45eeeeefa5f6158f41c736bead519a6fe7f1e20b /Source/MFCDialog/PathDialog.h | |
parent | 8e281e5d5f1d59fc404f2cd694d4e871c001e3a1 (diff) | |
download | CMake-9c149dda8124ed87ebcf381abf8723128bc5cfc8.zip CMake-9c149dda8124ed87ebcf381abf8723128bc5cfc8.tar.gz CMake-9c149dda8124ed87ebcf381abf8723128bc5cfc8.tar.bz2 |
ENH: add better path chooser dialog
Diffstat (limited to 'Source/MFCDialog/PathDialog.h')
-rw-r--r-- | Source/MFCDialog/PathDialog.h | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/Source/MFCDialog/PathDialog.h b/Source/MFCDialog/PathDialog.h new file mode 100644 index 0000000..6a18429 --- /dev/null +++ b/Source/MFCDialog/PathDialog.h @@ -0,0 +1,74 @@ +////////////////////////////////////////////////////////////////////////// +//PathDialog.h file +// +//Written by Nguyen Tan Hung <tanhung@yahoo.com> +////////////////////////////////////////////////////////////////////////// + +#if !defined(AFX_PATHDIALOG_H__0F70BC86_11DB_11D4_B012_0000E8DD8DAA__INCLUDED_) +#define AFX_PATHDIALOG_H__0F70BC86_11DB_11D4_B012_0000E8DD8DAA__INCLUDED_ + +#if _MSC_VER > 1000 +#pragma once +#endif // _MSC_VER > 1000 +// PathDialog.h : header file +// +#include "shlobj.h" + +class CPathDialog; + +// CPathDialogSub - intercepts messages from child controls +class CPathDialogSub : public CWnd +{ + friend CPathDialog; +public: + CPathDialog* m_pPathDialog; +protected: + afx_msg void OnOK(); // OK button clicked + afx_msg void OnChangeEditPath(); + DECLARE_MESSAGE_MAP() +private: +}; + +///////////////////////////////////////////////////////////////////////////// +// CPathDialog dialog + +class CPathDialog +{ + friend CPathDialogSub; +// Construction +public: + CPathDialog(LPCTSTR lpszCaption=NULL, + LPCTSTR lpszTitle=NULL, + LPCTSTR lpszInitialPath=NULL, + CWnd* pParent = NULL); + + CString GetPathName(); + virtual int DoModal(); + + static Touch(LPCTSTR lpPath, BOOL bValidate=TRUE); + static int MakeSurePathExists(LPCTSTR lpPath); + static BOOL IsFileNameValid(LPCTSTR lpFileName); + static int ConcatPath(LPTSTR lpRoot, LPCTSTR lpMorePath); + +private: + static int CALLBACK BrowseCallbackProc(HWND hwnd,UINT uMsg,LPARAM lParam, LPARAM pData); + + LPCTSTR m_lpszCaption; + LPCTSTR m_lpszInitialPath; + + TCHAR m_szPathName[MAX_PATH]; + + BROWSEINFO m_bi; + HWND m_hWnd; + CWnd* m_pParentWnd; + BOOL m_bParentDisabled; + BOOL m_bGetSuccess; + + CPathDialogSub m_PathDialogSub; + +}; + +//{{AFX_INSERT_LOCATION}} +// Microsoft Visual C++ will insert additional declarations immediately before the previous line. + +#endif // !defined(AFX_PATHDIALOG_H__0F70BC86_11DB_11D4_B012_0000E8DD8DAA__INCLUDED_) |