Browse to the directory if a directory name is typed into the edit box
of a file dialog and the confirmation button (or Enter key) is hit. Return any file name in the edit box if OFN_NOVALIDATE is set and OFN_FILEMUSTEXIST is not, even if that file name includes a path name or is the name of a folder.
This commit is contained in:
parent
bea21461ec
commit
b1d96713ed
|
@ -1711,8 +1711,9 @@ BOOL FILEDLG95_OnOpenMultipleFiles(HWND hwnd, LPWSTR lpstrFileList, UINT nFileCo
|
||||||
*
|
*
|
||||||
* If the function succeeds, the return value is nonzero.
|
* If the function succeeds, the return value is nonzero.
|
||||||
*/
|
*/
|
||||||
#define ONOPEN_OPEN 1
|
#define ONOPEN_BROWSE 1
|
||||||
#define ONOPEN_SEARCH 2
|
#define ONOPEN_OPEN 2
|
||||||
|
#define ONOPEN_SEARCH 3
|
||||||
static void FILEDLG95_OnOpenMessage(HWND hwnd, int idCaption, int idText)
|
static void FILEDLG95_OnOpenMessage(HWND hwnd, int idCaption, int idText)
|
||||||
{
|
{
|
||||||
WCHAR strMsgTitle[MAX_PATH];
|
WCHAR strMsgTitle[MAX_PATH];
|
||||||
|
@ -1739,15 +1740,15 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
|
||||||
|
|
||||||
TRACE("hwnd=%p\n", hwnd);
|
TRACE("hwnd=%p\n", hwnd);
|
||||||
|
|
||||||
if(BrowseSelectedFolder(hwnd))
|
|
||||||
return FALSE;
|
|
||||||
|
|
||||||
/* get the files from the edit control */
|
/* get the files from the edit control */
|
||||||
nFileCount = FILEDLG95_FILENAME_GetFileNames(hwnd, &lpstrFileList, &sizeUsed, '\0');
|
nFileCount = FILEDLG95_FILENAME_GetFileNames(hwnd, &lpstrFileList, &sizeUsed, '\0');
|
||||||
|
|
||||||
/* try if the user selected a folder in the shellview */
|
/* try if the user selected a folder in the shellview */
|
||||||
if(nFileCount == 0)
|
if(nFileCount == 0)
|
||||||
|
{
|
||||||
|
BrowseSelectedFolder(hwnd);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
if(nFileCount > 1)
|
if(nFileCount > 1)
|
||||||
{
|
{
|
||||||
|
@ -1808,7 +1809,12 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
|
||||||
lpstrPathAndFile: cleaned up path
|
lpstrPathAndFile: cleaned up path
|
||||||
*/
|
*/
|
||||||
|
|
||||||
nOpenAction = ONOPEN_OPEN;
|
if (nFileCount &&
|
||||||
|
(fodInfos->ofnInfos->Flags & OFN_NOVALIDATE) &&
|
||||||
|
!(fodInfos->ofnInfos->Flags & OFN_FILEMUSTEXIST))
|
||||||
|
nOpenAction = ONOPEN_OPEN;
|
||||||
|
else
|
||||||
|
nOpenAction = ONOPEN_BROWSE;
|
||||||
|
|
||||||
/* don't apply any checks with OFN_NOVALIDATE */
|
/* don't apply any checks with OFN_NOVALIDATE */
|
||||||
{
|
{
|
||||||
|
@ -1842,7 +1848,8 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
|
||||||
*p = 0;
|
*p = 0;
|
||||||
lpszTemp = lpszTemp + strlenW(lpwstrTemp);
|
lpszTemp = lpszTemp + strlenW(lpwstrTemp);
|
||||||
|
|
||||||
if(*lpszTemp==0)
|
/* There are no wildcards when OFN_NOVALIDATE is set */
|
||||||
|
if(*lpszTemp==0 && !(fodInfos->ofnInfos->Flags & OFN_NOVALIDATE))
|
||||||
{
|
{
|
||||||
static const WCHAR wszWild[] = { '*', '?', 0 };
|
static const WCHAR wszWild[] = { '*', '?', 0 };
|
||||||
/* if the last element is a wildcard do a search */
|
/* if the last element is a wildcard do a search */
|
||||||
|
@ -1941,7 +1948,6 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
|
||||||
int iPos;
|
int iPos;
|
||||||
LPWSTR lpszTemp = PathFindFileNameW(lpstrPathAndFile);
|
LPWSTR lpszTemp = PathFindFileNameW(lpstrPathAndFile);
|
||||||
DWORD len;
|
DWORD len;
|
||||||
IPersistFolder2 * ppf2;
|
|
||||||
|
|
||||||
/* replace the current filter */
|
/* replace the current filter */
|
||||||
if(fodInfos->ShellInfos.lpstrCurrentFilter)
|
if(fodInfos->ShellInfos.lpstrCurrentFilter)
|
||||||
|
@ -1953,7 +1959,12 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
|
||||||
/* set the filter cb to the extension when possible */
|
/* set the filter cb to the extension when possible */
|
||||||
if(-1 < (iPos = FILEDLG95_FILETYPE_SearchExt(fodInfos->DlgInfos.hwndFileTypeCB, lpszTemp)))
|
if(-1 < (iPos = FILEDLG95_FILETYPE_SearchExt(fodInfos->DlgInfos.hwndFileTypeCB, lpszTemp)))
|
||||||
CBSetCurSel(fodInfos->DlgInfos.hwndFileTypeCB, iPos);
|
CBSetCurSel(fodInfos->DlgInfos.hwndFileTypeCB, iPos);
|
||||||
|
}
|
||||||
|
/* fall through */
|
||||||
|
case ONOPEN_BROWSE: /* browse to the highest folder we could bind to */
|
||||||
|
TRACE("ONOPEN_BROWSE\n");
|
||||||
|
{
|
||||||
|
IPersistFolder2 * ppf2;
|
||||||
if(SUCCEEDED(IShellFolder_QueryInterface( lpsf, &IID_IPersistFolder2, (LPVOID*)&ppf2)))
|
if(SUCCEEDED(IShellFolder_QueryInterface( lpsf, &IID_IPersistFolder2, (LPVOID*)&ppf2)))
|
||||||
{
|
{
|
||||||
LPITEMIDLIST pidlCurrent;
|
LPITEMIDLIST pidlCurrent;
|
||||||
|
@ -1963,11 +1974,10 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
|
||||||
{
|
{
|
||||||
IShellBrowser_BrowseObject(fodInfos->Shell.FOIShellBrowser, pidlCurrent, SBSP_ABSOLUTE);
|
IShellBrowser_BrowseObject(fodInfos->Shell.FOIShellBrowser, pidlCurrent, SBSP_ABSOLUTE);
|
||||||
}
|
}
|
||||||
else
|
else if( nOpenAction == ONOPEN_SEARCH )
|
||||||
{
|
{
|
||||||
IShellView_Refresh(fodInfos->Shell.FOIShellView);
|
IShellView_Refresh(fodInfos->Shell.FOIShellView);
|
||||||
}
|
}
|
||||||
SendCustomDlgNotificationMessage(hwnd, CDN_FOLDERCHANGE);
|
|
||||||
COMDLG32_SHFree(pidlCurrent);
|
COMDLG32_SHFree(pidlCurrent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1985,51 +1995,48 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
|
||||||
fodInfos->ofnInfos->Flags &= ~OFN_READONLY;
|
fodInfos->ofnInfos->Flags &= ~OFN_READONLY;
|
||||||
|
|
||||||
/* Attach the file extension with file name*/
|
/* Attach the file extension with file name*/
|
||||||
|
ext = PathFindExtensionW(lpstrPathAndFile);
|
||||||
if(!PathIsDirectoryW(lpstrPathAndFile))
|
if (! *ext)
|
||||||
{
|
{
|
||||||
if((ext = PathFindExtensionW(lpstrPathAndFile)) == NULL)
|
/* if no extension is specified with file name, then */
|
||||||
{
|
/* attach the extension from file filter or default one */
|
||||||
/* if no extension is specified with file name, then */
|
|
||||||
/* attach the extension from file filter or default one */
|
|
||||||
|
|
||||||
WCHAR *filterExt = NULL;
|
WCHAR *filterExt = NULL;
|
||||||
LPWSTR lpstrFilter = NULL;
|
LPWSTR lpstrFilter = NULL;
|
||||||
static const WCHAR szwDot[] = {'.',0};
|
static const WCHAR szwDot[] = {'.',0};
|
||||||
int PathLength = strlenW(lpstrPathAndFile);
|
int PathLength = strlenW(lpstrPathAndFile);
|
||||||
|
|
||||||
/* Attach the dot*/
|
/* Attach the dot*/
|
||||||
strcatW(lpstrPathAndFile, szwDot);
|
strcatW(lpstrPathAndFile, szwDot);
|
||||||
|
|
||||||
/*Get the file extension from file type filter*/
|
/*Get the file extension from file type filter*/
|
||||||
lpstrFilter = (LPWSTR) CBGetItemDataPtr(fodInfos->DlgInfos.hwndFileTypeCB,
|
lpstrFilter = (LPWSTR) CBGetItemDataPtr(fodInfos->DlgInfos.hwndFileTypeCB,
|
||||||
fodInfos->ofnInfos->nFilterIndex-1);
|
fodInfos->ofnInfos->nFilterIndex-1);
|
||||||
|
|
||||||
if (lpstrFilter != (LPWSTR)CB_ERR) /* control is not empty */
|
if (lpstrFilter != (LPWSTR)CB_ERR) /* control is not empty */
|
||||||
filterExt = PathFindExtensionW(lpstrFilter);
|
filterExt = PathFindExtensionW(lpstrFilter);
|
||||||
|
|
||||||
if ( filterExt && *filterExt ) /* attach the file extension from file type filter*/
|
if ( filterExt && *filterExt ) /* attach the file extension from file type filter*/
|
||||||
strcatW(lpstrPathAndFile, filterExt + 1);
|
strcatW(lpstrPathAndFile, filterExt + 1);
|
||||||
else if ( fodInfos->defext ) /* attach the default file extension*/
|
else if ( fodInfos->defext ) /* attach the default file extension*/
|
||||||
strcatW(lpstrPathAndFile, fodInfos->defext);
|
strcatW(lpstrPathAndFile, fodInfos->defext);
|
||||||
|
|
||||||
/* In Open dialog: if file does not exist try without extension */
|
/* In Open dialog: if file does not exist try without extension */
|
||||||
if (!(fodInfos->DlgInfos.dwDlgProp & FODPROP_SAVEDLG) && !PathFileExistsW(lpstrPathAndFile))
|
if (!(fodInfos->DlgInfos.dwDlgProp & FODPROP_SAVEDLG) && !PathFileExistsW(lpstrPathAndFile))
|
||||||
lpstrPathAndFile[PathLength] = '\0';
|
lpstrPathAndFile[PathLength] = '\0';
|
||||||
}
|
|
||||||
|
|
||||||
if (fodInfos->defext) /* add default extension */
|
|
||||||
{
|
|
||||||
/* Set/clear the output OFN_EXTENSIONDIFFERENT flag */
|
|
||||||
if (*ext)
|
|
||||||
ext++;
|
|
||||||
if (!lstrcmpiW(fodInfos->defext, ext))
|
|
||||||
fodInfos->ofnInfos->Flags &= ~OFN_EXTENSIONDIFFERENT;
|
|
||||||
else
|
|
||||||
fodInfos->ofnInfos->Flags |= OFN_EXTENSIONDIFFERENT;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (fodInfos->defext) /* add default extension */
|
||||||
|
{
|
||||||
|
/* Set/clear the output OFN_EXTENSIONDIFFERENT flag */
|
||||||
|
if (*ext)
|
||||||
|
ext++;
|
||||||
|
if (!lstrcmpiW(fodInfos->defext, ext))
|
||||||
|
fodInfos->ofnInfos->Flags &= ~OFN_EXTENSIONDIFFERENT;
|
||||||
|
else
|
||||||
|
fodInfos->ofnInfos->Flags |= OFN_EXTENSIONDIFFERENT;
|
||||||
|
}
|
||||||
|
|
||||||
/* In Save dialog: check if the file already exists */
|
/* In Save dialog: check if the file already exists */
|
||||||
if (fodInfos->DlgInfos.dwDlgProp & FODPROP_SAVEDLG
|
if (fodInfos->DlgInfos.dwDlgProp & FODPROP_SAVEDLG
|
||||||
&& fodInfos->ofnInfos->Flags & OFN_OVERWRITEPROMPT
|
&& fodInfos->ofnInfos->Flags & OFN_OVERWRITEPROMPT
|
||||||
|
|
Loading…
Reference in New Issue