ppsspp/Windows/W32Util/ShellUtil.cpp

120 lines
3.3 KiB
C++
Raw Normal View History

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"
#include "util/text/utf8.h"
2012-11-01 15:19:01 +00:00
#include "ShellUtil.h"
#include "CommDlg.h"
2012-11-01 15:19:01 +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;
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);
wchar_t temp[MAX_PATH];
2012-11-01 15:19:01 +00:00
SHGetPathFromIDList(idList, temp);
if (wcslen(temp))
2012-11-01 15:19:01 +00:00
{
return ConvertWStringToUTF8(temp);
2012-11-01 15:19:01 +00:00
}
else
return "";
}
//---------------------------------------------------------------------------------------------------
// function WinBrowseForFileName
//---------------------------------------------------------------------------------------------------
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)
{
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);
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);
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)
wcscpy(ofn.lpstrFile, ConvertUTF8ToWString(_strFileName).c_str());
2012-11-01 15:19:01 +00:00
if (((_bLoad) ? GetOpenFileName(&ofn) : GetSaveFileName (&ofn)))
2012-11-01 15:19:01 +00:00
{
_strFileName = ConvertWStringToUTF8(ofn.lpstrFile);
2012-11-01 15:19:01 +00:00
return true;
}
else
return false;
}
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
{
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);
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);
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;
if (((_bLoad) ? GetOpenFileName(&ofn) : GetSaveFileName(&ofn)))
2012-11-01 15:19:01 +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
files.push_back(ConvertWStringToUTF8(oldtemp));
2012-11-01 15:19:01 +00:00
}
else
{
while (*temp)
{
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;
}
}