Files
ppsspp/Windows/W32Util/ShellUtil.cpp

168 lines
4.9 KiB
C++
Raw Normal View History

2012-11-01 16:19:01 +01:00
// NOTE: Apologies for the quality of this code, this is really from pre-opensource Dolphin - that is, 2003.
#pragma warning(disable:4091) // workaround bug in VS2015 headers
2012-11-01 16:19:01 +01:00
#include "stdafx.h"
#include <functional>
#include <thread>
#include "util/text/utf8.h"
2012-11-01 16:19:01 +01:00
#include "ShellUtil.h"
#include "CommDlg.h"
2012-11-01 16:19:01 +01:00
#include <shlobj.h>
#include <commdlg.h>
2012-11-01 16:19:01 +01:00
namespace W32Util
{
std::string BrowseForFolder(HWND parent, const char *title)
2012-11-01 16:19:01 +01:00
{
2013-09-07 22:32:29 +02:00
std::wstring titleString = ConvertUTF8ToWString(title);
return BrowseForFolder(parent, titleString.c_str());
}
2013-09-07 22:32:29 +02:00
std::string BrowseForFolder(HWND parent, const wchar_t *title)
{
2012-11-01 16:19:01 +01:00
BROWSEINFO info;
memset(&info,0,sizeof(info));
info.hwndOwner = parent;
info.lpszTitle = title;
2012-11-01 16:19:01 +01:00
info.ulFlags = BIF_EDITBOX | BIF_RETURNONLYFSDIRS | BIF_USENEWUI;
//info.pszDisplayName
LPCITEMIDLIST idList = SHBrowseForFolder(&info);
wchar_t temp[MAX_PATH];
2012-11-01 16:19:01 +01:00
SHGetPathFromIDList(idList, temp);
if (wcslen(temp))
return ConvertWStringToUTF8(temp);
2012-11-01 16:19:01 +01: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 16:19:01 +01:00
std::string& _strFileName)
{
wchar_t szFile [MAX_PATH+1] = {0};
wchar_t szFileTitle [MAX_PATH+1] = {0};
2012-11-01 16:19:01 +01:00
OPENFILENAME ofn;
ZeroMemory (&ofn,sizeof (ofn));
2015-09-01 19:13:51 -07:00
ofn.lStructSize = sizeof (OPENFILENAME);
ofn.lpstrInitialDir = _pInitialFolder;
ofn.lpstrFilter = _pFilter;
ofn.nMaxFile = sizeof (szFile);
ofn.lpstrFile = szFile;
ofn.lpstrFileTitle = szFileTitle;
ofn.nMaxFileTitle = sizeof (szFileTitle);
ofn.lpstrDefExt = _pExtension;
ofn.hwndOwner = _hParent;
ofn.Flags = OFN_NOCHANGEDIR | OFN_EXPLORER | OFN_HIDEREADONLY;
2012-11-01 16:19:01 +01:00
2015-01-18 13:16:34 -08:00
if (!_strFileName.empty())
wcsncpy(ofn.lpstrFile, ConvertUTF8ToWString(_strFileName).c_str(), MAX_PATH);
2012-11-01 16:19:01 +01:00
if (((_bLoad) ? GetOpenFileName(&ofn) : GetSaveFileName (&ofn)))
2012-11-01 16:19:01 +01:00
{
_strFileName = ConvertWStringToUTF8(ofn.lpstrFile);
2012-11-01 16:19:01 +01: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 16:19:01 +01:00
{
wchar_t szFile [MAX_PATH+1+2048*2] = {0};
wchar_t szFileTitle [MAX_PATH+1] = {0};
2012-11-01 16:19:01 +01:00
OPENFILENAME ofn;
ZeroMemory (&ofn,sizeof (ofn));
2015-09-01 19:13:51 -07:00
ofn.lStructSize = sizeof (OPENFILENAME);
ofn.lpstrInitialDir = _pInitialFolder;
ofn.lpstrFilter = _pFilter;
ofn.nMaxFile = sizeof (szFile);
ofn.lpstrFile = szFile;
ofn.lpstrFileTitle = szFileTitle;
ofn.nMaxFileTitle = sizeof (szFileTitle);
ofn.lpstrDefExt = _pExtension;
ofn.hwndOwner = _hParent;
ofn.Flags = OFN_NOCHANGEDIR | OFN_EXPLORER | OFN_HIDEREADONLY | OFN_ALLOWMULTISELECT;
2012-11-01 16:19:01 +01:00
std::vector<std::string> files;
if (((_bLoad) ? GetOpenFileName(&ofn) : GetSaveFileName(&ofn)))
2012-11-01 16:19:01 +01:00
{
std::string directory = ConvertWStringToUTF8(ofn.lpstrFile);
wchar_t *temp = ofn.lpstrFile;
wchar_t *oldtemp = temp;
temp += wcslen(temp)+1;
2012-11-01 16:19:01 +01:00
if (*temp==0)
{
//we only got one file
files.push_back(ConvertWStringToUTF8(oldtemp));
2012-11-01 16:19:01 +01:00
}
else
{
while (*temp)
{
files.push_back(directory+"\\"+ConvertWStringToUTF8(temp));
temp += wcslen(temp)+1;
2012-11-01 16:19:01 +01:00
}
}
return files;
}
else
return std::vector<std::string>(); // empty vector;
}
AsyncBrowseDialog::AsyncBrowseDialog(HWND parent, UINT completeMsg, std::wstring title)
2015-01-17 18:56:55 -08:00
: type_(DIR), parent_(parent), completeMsg_(completeMsg), title_(title), complete_(false), result_(false) {
thread_ = new std::thread(std::bind(&AsyncBrowseDialog::Execute, this));
thread_->detach();
}
AsyncBrowseDialog::AsyncBrowseDialog(Type type, HWND parent, UINT completeMsg, std::wstring title, std::wstring initialFolder, std::wstring filter, std::wstring extension)
2015-01-17 18:56:55 -08:00
: type_(type), parent_(parent), completeMsg_(completeMsg), title_(title), initialFolder_(initialFolder), filter_(filter), extension_(extension), complete_(false), result_(false) {
thread_ = new std::thread(std::bind(&AsyncBrowseDialog::Execute, this));
thread_->detach();
}
AsyncBrowseDialog::~AsyncBrowseDialog() {
delete thread_;
}
bool AsyncBrowseDialog::GetResult(std::string &filename) {
filename = filename_;
return result_;
}
void AsyncBrowseDialog::Execute() {
switch (type_) {
case DIR:
filename_ = BrowseForFolder(parent_, title_.c_str());
result_ = filename_ != "";
complete_ = true;
break;
case OPEN:
case SAVE:
result_ = BrowseForFileName(type_ == OPEN, parent_, title_.c_str(), initialFolder_.size() ? initialFolder_.c_str() : 0, filter_.c_str(), extension_.c_str(), filename_);
complete_ = true;
break;
}
PostMessage(parent_, completeMsg_, 0, 0);
}
}