2012-11-01 15:19:01 +00:00
|
|
|
// NOTE: Apologies for the quality of this code, this is really from pre-opensource Dolphin - that is, 2003.
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "shlobj.h"
|
|
|
|
|
2013-08-26 17:00:16 +00:00
|
|
|
#include "util/text/utf8.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "ShellUtil.h"
|
2013-08-26 17:00:16 +00:00
|
|
|
#include "CommDlg.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-11-17 22:44:29 +00:00
|
|
|
#include <shlobj.h>
|
|
|
|
#include <commdlg.h>
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
namespace W32Util
|
|
|
|
{
|
|
|
|
std::string BrowseForFolder(HWND parent, char *title)
|
|
|
|
{
|
|
|
|
BROWSEINFO info;
|
|
|
|
memset(&info,0,sizeof(info));
|
|
|
|
info.hwndOwner = parent;
|
2013-08-26 17:00:16 +00:00
|
|
|
info.lpszTitle = ConvertUTF8ToWString(title).c_str();
|
2012-11-01 15:19:01 +00:00
|
|
|
info.ulFlags = BIF_EDITBOX | BIF_RETURNONLYFSDIRS | BIF_USENEWUI;
|
|
|
|
|
|
|
|
//info.pszDisplayName
|
|
|
|
LPCITEMIDLIST idList = SHBrowseForFolder(&info);
|
|
|
|
|
2013-08-26 17:00:16 +00:00
|
|
|
wchar_t temp[MAX_PATH];
|
2012-11-01 15:19:01 +00:00
|
|
|
SHGetPathFromIDList(idList, temp);
|
2013-08-26 17:00:16 +00:00
|
|
|
if (wcslen(temp))
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-08-26 17:00:16 +00:00
|
|
|
return ConvertWStringToUTF8(temp);
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------
|
|
|
|
// function WinBrowseForFileName
|
|
|
|
//---------------------------------------------------------------------------------------------------
|
2013-08-26 19:32:05 +00:00
|
|
|
bool BrowseForFileName (bool _bLoad, HWND _hParent, const wchar_t *_pTitle,
|
|
|
|
const wchar_t *_pInitialFolder,const wchar_t *_pFilter,const wchar_t *_pExtension,
|
2012-11-01 15:19:01 +00:00
|
|
|
std::string& _strFileName)
|
|
|
|
{
|
2013-08-26 17:00:16 +00:00
|
|
|
wchar_t szFile [MAX_PATH+1] = {0};
|
|
|
|
wchar_t szFileTitle [MAX_PATH+1] = {0};
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
OPENFILENAME ofn;
|
|
|
|
|
|
|
|
ZeroMemory (&ofn,sizeof (ofn));
|
|
|
|
|
|
|
|
ofn.lStructSize = sizeof (OPENFILENAME);
|
2013-08-26 19:32:05 +00:00
|
|
|
ofn.lpstrInitialDir = _pInitialFolder;
|
|
|
|
ofn.lpstrFilter = _pFilter;
|
2012-11-01 15:19:01 +00:00
|
|
|
ofn.nMaxFile = sizeof (szFile);
|
|
|
|
ofn.lpstrFile = szFile;
|
|
|
|
ofn.lpstrFileTitle = szFileTitle;
|
|
|
|
ofn.nMaxFileTitle = sizeof (szFileTitle);
|
2013-08-26 19:32:05 +00:00
|
|
|
ofn.lpstrDefExt = _pExtension;
|
2012-11-01 15:19:01 +00:00
|
|
|
ofn.hwndOwner = _hParent;
|
|
|
|
ofn.Flags = OFN_NOCHANGEDIR | OFN_EXPLORER | OFN_HIDEREADONLY;
|
|
|
|
|
|
|
|
if (_strFileName.size () != 0)
|
2013-08-26 19:32:05 +00:00
|
|
|
wcscpy(ofn.lpstrFile, ConvertUTF8ToWString(_strFileName).c_str());
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-08-26 17:00:16 +00:00
|
|
|
if (((_bLoad) ? GetOpenFileName(&ofn) : GetSaveFileName (&ofn)))
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-08-26 17:00:16 +00:00
|
|
|
_strFileName = ConvertWStringToUTF8(ofn.lpstrFile);
|
2012-11-01 15:19:01 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-08-26 19:32:05 +00:00
|
|
|
std::vector<std::string> BrowseForFileNameMultiSelect(bool _bLoad, HWND _hParent, const wchar_t *_pTitle,
|
|
|
|
const wchar_t *_pInitialFolder,const wchar_t *_pFilter,const wchar_t *_pExtension)
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-08-26 17:00:16 +00:00
|
|
|
wchar_t szFile [MAX_PATH+1+2048*2] = {0};
|
|
|
|
wchar_t szFileTitle [MAX_PATH+1] = {0};
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
OPENFILENAME ofn;
|
|
|
|
|
|
|
|
ZeroMemory (&ofn,sizeof (ofn));
|
|
|
|
|
|
|
|
ofn.lStructSize = sizeof (OPENFILENAME);
|
2013-08-26 19:32:05 +00:00
|
|
|
ofn.lpstrInitialDir = _pInitialFolder;
|
|
|
|
ofn.lpstrFilter = _pFilter;
|
2012-11-01 15:19:01 +00:00
|
|
|
ofn.nMaxFile = sizeof (szFile);
|
|
|
|
ofn.lpstrFile = szFile;
|
|
|
|
ofn.lpstrFileTitle = szFileTitle;
|
|
|
|
ofn.nMaxFileTitle = sizeof (szFileTitle);
|
2013-08-26 19:32:05 +00:00
|
|
|
ofn.lpstrDefExt = _pExtension;
|
2012-11-01 15:19:01 +00:00
|
|
|
ofn.hwndOwner = _hParent;
|
|
|
|
ofn.Flags = OFN_NOCHANGEDIR | OFN_EXPLORER | OFN_HIDEREADONLY | OFN_ALLOWMULTISELECT ;
|
|
|
|
|
|
|
|
std::vector<std::string> files;
|
|
|
|
|
2013-08-26 17:00:16 +00:00
|
|
|
if (((_bLoad) ? GetOpenFileName(&ofn) : GetSaveFileName(&ofn)))
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-08-26 17:00:16 +00:00
|
|
|
std::string directory = ConvertWStringToUTF8(ofn.lpstrFile);
|
|
|
|
wchar_t *temp = ofn.lpstrFile;
|
|
|
|
wchar_t *oldtemp = temp;
|
|
|
|
temp += wcslen(temp)+1;
|
2012-11-01 15:19:01 +00:00
|
|
|
if (*temp==0)
|
|
|
|
{
|
|
|
|
//we only got one file
|
2013-08-26 17:00:16 +00:00
|
|
|
files.push_back(ConvertWStringToUTF8(oldtemp));
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (*temp)
|
|
|
|
{
|
2013-08-26 17:00:16 +00:00
|
|
|
files.push_back(directory+"\\"+ConvertWStringToUTF8(temp));
|
|
|
|
temp += wcslen(temp)+1;
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return files;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return std::vector<std::string>(); // empty vector;
|
|
|
|
}
|
|
|
|
}
|