Using win32 file open dialogs instead of WTL
This commit is contained in:
parent
f9e2ec43d0
commit
f122c44b07
2 changed files with 136 additions and 103 deletions
1
BUILD.gn
1
BUILD.gn
|
@ -258,7 +258,6 @@ static_library("electron_lib") {
|
||||||
}
|
}
|
||||||
if (is_win) {
|
if (is_win) {
|
||||||
deps += [
|
deps += [
|
||||||
"//third_party/wtl",
|
|
||||||
"//third_party/breakpad:client",
|
"//third_party/breakpad:client",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,12 +6,10 @@
|
||||||
|
|
||||||
#include <windows.h> // windows.h must be included first
|
#include <windows.h> // windows.h must be included first
|
||||||
|
|
||||||
#include <atlbase.h> // atlbase.h must be included before atlapp.h
|
#include <atlbase.h> // atlbase.h for CComPtr
|
||||||
|
|
||||||
#include <atlapp.h>
|
|
||||||
#include <atldlgs.h>
|
|
||||||
#include <commdlg.h>
|
|
||||||
#include <shlobj.h>
|
#include <shlobj.h>
|
||||||
|
#include <shobjidl.h>
|
||||||
|
|
||||||
#include "atom/browser/native_window_views.h"
|
#include "atom/browser/native_window_views.h"
|
||||||
#include "atom/browser/unresponsive_suppressor.h"
|
#include "atom/browser/unresponsive_suppressor.h"
|
||||||
|
@ -24,8 +22,8 @@
|
||||||
#include "base/threading/thread_task_runner_handle.h"
|
#include "base/threading/thread_task_runner_handle.h"
|
||||||
#include "base/win/registry.h"
|
#include "base/win/registry.h"
|
||||||
|
|
||||||
using WTL::CShellFileOpenDialog;
|
// Used to be linked by WTL
|
||||||
using WTL::CShellFileSaveDialog;
|
#pragma comment(lib, "gdi32.lib")
|
||||||
|
|
||||||
namespace file_dialog {
|
namespace file_dialog {
|
||||||
|
|
||||||
|
@ -69,87 +67,6 @@ void ConvertFilters(const Filters& filters,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generic class to delegate common open/save dialog's behaviours, users need to
|
|
||||||
// call interface methods via GetPtr().
|
|
||||||
template <typename T>
|
|
||||||
class FileDialog {
|
|
||||||
public:
|
|
||||||
FileDialog(const DialogSettings& settings, int options) {
|
|
||||||
std::wstring file_part;
|
|
||||||
if (!IsDirectory(settings.default_path))
|
|
||||||
file_part = settings.default_path.BaseName().value();
|
|
||||||
|
|
||||||
std::vector<std::wstring> buffer;
|
|
||||||
std::vector<COMDLG_FILTERSPEC> filterspec;
|
|
||||||
ConvertFilters(settings.filters, &buffer, &filterspec);
|
|
||||||
|
|
||||||
dialog_.reset(new T(file_part.c_str(), options, NULL, filterspec.data(),
|
|
||||||
filterspec.size()));
|
|
||||||
|
|
||||||
if (!settings.title.empty())
|
|
||||||
GetPtr()->SetTitle(base::UTF8ToUTF16(settings.title).c_str());
|
|
||||||
|
|
||||||
if (!settings.button_label.empty())
|
|
||||||
GetPtr()->SetOkButtonLabel(
|
|
||||||
base::UTF8ToUTF16(settings.button_label).c_str());
|
|
||||||
|
|
||||||
// By default, *.* will be added to the file name if file type is "*.*". In
|
|
||||||
// Electron, we disable it to make a better experience.
|
|
||||||
//
|
|
||||||
// From MSDN: https://msdn.microsoft.com/en-us/library/windows/desktop/
|
|
||||||
// bb775970(v=vs.85).aspx
|
|
||||||
//
|
|
||||||
// If SetDefaultExtension is not called, the dialog will not update
|
|
||||||
// automatically when user choose a new file type in the file dialog.
|
|
||||||
//
|
|
||||||
// We set file extension to the first none-wildcard extension to make
|
|
||||||
// sure the dialog will update file extension automatically.
|
|
||||||
for (size_t i = 0; i < filterspec.size(); ++i) {
|
|
||||||
if (std::wstring(filterspec[i].pszSpec) != L"*.*") {
|
|
||||||
// SetFileTypeIndex is regarded as one-based index.
|
|
||||||
GetPtr()->SetFileTypeIndex(i + 1);
|
|
||||||
GetPtr()->SetDefaultExtension(filterspec[i].pszSpec);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (settings.default_path.IsAbsolute()) {
|
|
||||||
SetDefaultFolder(settings.default_path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
bool Show(atom::NativeWindow* parent_window) {
|
|
||||||
atom::UnresponsiveSuppressor suppressor;
|
|
||||||
HWND window = parent_window
|
|
||||||
? static_cast<atom::NativeWindowViews*>(parent_window)
|
|
||||||
->GetAcceleratedWidget()
|
|
||||||
: NULL;
|
|
||||||
return dialog_->DoModal(window) == IDOK;
|
|
||||||
}
|
|
||||||
|
|
||||||
T* GetDialog() { return dialog_.get(); }
|
|
||||||
|
|
||||||
IFileDialog* GetPtr() const { return dialog_->GetPtr(); }
|
|
||||||
|
|
||||||
private:
|
|
||||||
// Set up the initial directory for the dialog.
|
|
||||||
void SetDefaultFolder(const base::FilePath file_path) {
|
|
||||||
std::wstring directory = IsDirectory(file_path)
|
|
||||||
? file_path.value()
|
|
||||||
: file_path.DirName().value();
|
|
||||||
|
|
||||||
ATL::CComPtr<IShellItem> folder_item;
|
|
||||||
HRESULT hr = SHCreateItemFromParsingName(directory.c_str(), NULL,
|
|
||||||
IID_PPV_ARGS(&folder_item));
|
|
||||||
if (SUCCEEDED(hr))
|
|
||||||
GetPtr()->SetFolder(folder_item);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::unique_ptr<T> dialog_;
|
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(FileDialog);
|
|
||||||
};
|
|
||||||
|
|
||||||
struct RunState {
|
struct RunState {
|
||||||
base::Thread* dialog_thread;
|
base::Thread* dialog_thread;
|
||||||
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner;
|
scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner;
|
||||||
|
@ -189,9 +106,110 @@ void RunSaveDialogInNewThread(const RunState& run_state,
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
|
static HRESULT GetFileNameFromShellItem(IShellItem* pShellItem,
|
||||||
|
SIGDN type,
|
||||||
|
LPWSTR lpstr,
|
||||||
|
int cchLength) {
|
||||||
|
assert(pShellItem != NULL);
|
||||||
|
|
||||||
|
LPWSTR lpstrName = NULL;
|
||||||
|
HRESULT hRet = pShellItem->GetDisplayName(type, &lpstrName);
|
||||||
|
|
||||||
|
if (SUCCEEDED(hRet)) {
|
||||||
|
if (wcslen(lpstrName) < cchLength) {
|
||||||
|
wcscpy_s(lpstr, cchLength, lpstrName);
|
||||||
|
} else {
|
||||||
|
assert(FALSE);
|
||||||
|
hRet = DISP_E_BUFFERTOOSMALL;
|
||||||
|
}
|
||||||
|
|
||||||
|
::CoTaskMemFree(lpstrName);
|
||||||
|
}
|
||||||
|
|
||||||
|
return hRet;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void SetDefaultFolder(IFileDialog* pDialog,
|
||||||
|
const base::FilePath file_path) {
|
||||||
|
std::wstring directory =
|
||||||
|
IsDirectory(file_path) ? file_path.value() : file_path.DirName().value();
|
||||||
|
|
||||||
|
ATL::CComPtr<IShellItem> folder_item;
|
||||||
|
HRESULT hr = SHCreateItemFromParsingName(directory.c_str(), NULL,
|
||||||
|
IID_PPV_ARGS(&folder_item));
|
||||||
|
if (SUCCEEDED(hr))
|
||||||
|
pDialog->SetFolder(folder_item);
|
||||||
|
}
|
||||||
|
|
||||||
|
static HRESULT ShowFileDialog(IFileDialog* pDialog,
|
||||||
|
const DialogSettings& settings) {
|
||||||
|
atom::UnresponsiveSuppressor suppressor;
|
||||||
|
HWND parent_window =
|
||||||
|
settings.parent_window
|
||||||
|
? static_cast<atom::NativeWindowViews*>(settings.parent_window)
|
||||||
|
->GetAcceleratedWidget()
|
||||||
|
: NULL;
|
||||||
|
|
||||||
|
return pDialog->Show(parent_window);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void ApplySettings(IFileDialog* pDialog,
|
||||||
|
const DialogSettings& settings) {
|
||||||
|
std::wstring file_part;
|
||||||
|
|
||||||
|
if (!IsDirectory(settings.default_path))
|
||||||
|
file_part = settings.default_path.BaseName().value();
|
||||||
|
|
||||||
|
pDialog->SetFileName(file_part.c_str());
|
||||||
|
|
||||||
|
if (!settings.title.empty())
|
||||||
|
pDialog->SetTitle(base::UTF8ToUTF16(settings.title).c_str());
|
||||||
|
|
||||||
|
if (!settings.button_label.empty())
|
||||||
|
pDialog->SetOkButtonLabel(base::UTF8ToUTF16(settings.button_label).c_str());
|
||||||
|
|
||||||
|
std::vector<std::wstring> buffer;
|
||||||
|
std::vector<COMDLG_FILTERSPEC> filterspec;
|
||||||
|
ConvertFilters(settings.filters, &buffer, &filterspec);
|
||||||
|
|
||||||
|
if (!filterspec.empty()) {
|
||||||
|
pDialog->SetFileTypes(filterspec.size(), filterspec.data());
|
||||||
|
}
|
||||||
|
|
||||||
|
// By default, *.* will be added to the file name if file type is "*.*". In
|
||||||
|
// Electron, we disable it to make a better experience.
|
||||||
|
//
|
||||||
|
// From MSDN: https://msdn.microsoft.com/en-us/library/windows/desktop/
|
||||||
|
// bb775970(v=vs.85).aspx
|
||||||
|
//
|
||||||
|
// If SetDefaultExtension is not called, the dialog will not update
|
||||||
|
// automatically when user choose a new file type in the file dialog.
|
||||||
|
//
|
||||||
|
// We set file extension to the first none-wildcard extension to make
|
||||||
|
// sure the dialog will update file extension automatically.
|
||||||
|
for (size_t i = 0; i < filterspec.size(); ++i) {
|
||||||
|
if (std::wstring(filterspec[i].pszSpec) != L"*.*") {
|
||||||
|
// SetFileTypeIndex is regarded as one-based index.
|
||||||
|
pDialog->SetFileTypeIndex(i + 1);
|
||||||
|
pDialog->SetDefaultExtension(filterspec[i].pszSpec);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (settings.default_path.IsAbsolute()) {
|
||||||
|
SetDefaultFolder(pDialog, settings.default_path);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool ShowOpenDialog(const DialogSettings& settings,
|
bool ShowOpenDialog(const DialogSettings& settings,
|
||||||
std::vector<base::FilePath>* paths) {
|
std::vector<base::FilePath>* paths) {
|
||||||
int options = FOS_FORCEFILESYSTEM | FOS_FILEMUSTEXIST;
|
ATL::CComPtr<IFileOpenDialog> pFileOpen;
|
||||||
|
HRESULT hr = pFileOpen.CoCreateInstance(CLSID_FileOpenDialog);
|
||||||
|
|
||||||
|
if (FAILED(hr))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
DWORD options = FOS_FORCEFILESYSTEM | FOS_FILEMUSTEXIST;
|
||||||
if (settings.properties & FILE_DIALOG_OPEN_DIRECTORY)
|
if (settings.properties & FILE_DIALOG_OPEN_DIRECTORY)
|
||||||
options |= FOS_PICKFOLDERS;
|
options |= FOS_PICKFOLDERS;
|
||||||
if (settings.properties & FILE_DIALOG_MULTI_SELECTIONS)
|
if (settings.properties & FILE_DIALOG_MULTI_SELECTIONS)
|
||||||
|
@ -200,14 +218,15 @@ bool ShowOpenDialog(const DialogSettings& settings,
|
||||||
options |= FOS_FORCESHOWHIDDEN;
|
options |= FOS_FORCESHOWHIDDEN;
|
||||||
if (settings.properties & FILE_DIALOG_PROMPT_TO_CREATE)
|
if (settings.properties & FILE_DIALOG_PROMPT_TO_CREATE)
|
||||||
options |= FOS_CREATEPROMPT;
|
options |= FOS_CREATEPROMPT;
|
||||||
|
pFileOpen->SetOptions(options);
|
||||||
|
|
||||||
FileDialog<CShellFileOpenDialog> open_dialog(settings, options);
|
ApplySettings(pFileOpen, settings);
|
||||||
if (!open_dialog.Show(settings.parent_window))
|
hr = ShowFileDialog(pFileOpen, settings);
|
||||||
|
if (FAILED(hr))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
ATL::CComPtr<IShellItemArray> items;
|
ATL::CComPtr<IShellItemArray> items;
|
||||||
HRESULT hr =
|
hr = pFileOpen->GetResults(&items);
|
||||||
static_cast<IFileOpenDialog*>(open_dialog.GetPtr())->GetResults(&items);
|
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -224,8 +243,8 @@ bool ShowOpenDialog(const DialogSettings& settings,
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
wchar_t file_name[MAX_PATH];
|
wchar_t file_name[MAX_PATH];
|
||||||
hr = CShellFileOpenDialog::GetFileNameFromShellItem(item, SIGDN_FILESYSPATH,
|
hr = GetFileNameFromShellItem(item, SIGDN_FILESYSPATH, file_name, MAX_PATH);
|
||||||
file_name, MAX_PATH);
|
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -249,17 +268,32 @@ void ShowOpenDialog(const DialogSettings& settings,
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ShowSaveDialog(const DialogSettings& settings, base::FilePath* path) {
|
bool ShowSaveDialog(const DialogSettings& settings, base::FilePath* path) {
|
||||||
FileDialog<CShellFileSaveDialog> save_dialog(
|
ATL::CComPtr<IFileSaveDialog> pFileSave;
|
||||||
settings, FOS_FORCEFILESYSTEM | FOS_PATHMUSTEXIST | FOS_OVERWRITEPROMPT);
|
HRESULT hr = pFileSave.CoCreateInstance(CLSID_FileSaveDialog);
|
||||||
if (!save_dialog.Show(settings.parent_window))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
wchar_t buffer[MAX_PATH];
|
|
||||||
HRESULT hr = save_dialog.GetDialog()->GetFilePath(buffer, MAX_PATH);
|
|
||||||
if (FAILED(hr))
|
if (FAILED(hr))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
*path = base::FilePath(buffer);
|
pFileSave->SetOptions(FOS_FORCEFILESYSTEM | FOS_PATHMUSTEXIST |
|
||||||
|
FOS_OVERWRITEPROMPT);
|
||||||
|
ApplySettings(pFileSave, settings);
|
||||||
|
hr = ShowFileDialog(pFileSave, settings);
|
||||||
|
|
||||||
|
if (FAILED(hr))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
CComPtr<IShellItem> pItem;
|
||||||
|
hr = pFileSave->GetResult(&pItem);
|
||||||
|
if (FAILED(hr))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
PWSTR result_path = nullptr;
|
||||||
|
hr = pItem->GetDisplayName(SIGDN_FILESYSPATH, &result_path);
|
||||||
|
if (!SUCCEEDED(hr))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
*path = base::FilePath(result_path);
|
||||||
|
CoTaskMemFree(result_path);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue