123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- // Copyright (c) 2013 GitHub, Inc.
- // Use of this source code is governed by the MIT license that can be
- // found in the LICENSE file.
- #include "shell/browser/ui/message_box.h"
- #include <windows.h> // windows.h must be included first
- #include <commctrl.h>
- #include <map>
- #include <vector>
- #include "base/strings/string_util.h"
- #include "base/strings/utf_string_conversions.h"
- #include "base/task/post_task.h"
- #include "base/win/scoped_gdi_object.h"
- #include "shell/browser/browser.h"
- #include "shell/browser/native_window_views.h"
- #include "shell/browser/ui/win/dialog_thread.h"
- #include "shell/browser/unresponsive_suppressor.h"
- #include "ui/gfx/icon_util.h"
- #include "ui/gfx/image/image_skia.h"
- namespace electron {
- MessageBoxSettings::MessageBoxSettings() = default;
- MessageBoxSettings::MessageBoxSettings(const MessageBoxSettings&) = default;
- MessageBoxSettings::~MessageBoxSettings() = default;
- namespace {
- // Small command ID values are already taken by Windows, we have to start from
- // a large number to avoid conflicts with Windows.
- const int kIDStart = 100;
- // Get the common ID from button's name.
- struct CommonButtonID {
- int button;
- int id;
- };
- CommonButtonID GetCommonID(const base::string16& button) {
- base::string16 lower = base::ToLowerASCII(button);
- if (lower == L"ok")
- return {TDCBF_OK_BUTTON, IDOK};
- else if (lower == L"yes")
- return {TDCBF_YES_BUTTON, IDYES};
- else if (lower == L"no")
- return {TDCBF_NO_BUTTON, IDNO};
- else if (lower == L"cancel")
- return {TDCBF_CANCEL_BUTTON, IDCANCEL};
- else if (lower == L"retry")
- return {TDCBF_RETRY_BUTTON, IDRETRY};
- else if (lower == L"close")
- return {TDCBF_CLOSE_BUTTON, IDCLOSE};
- return {-1, -1};
- }
- // Determine whether the buttons are common buttons, if so map common ID
- // to button ID.
- void MapToCommonID(const std::vector<base::string16>& buttons,
- std::map<int, int>* id_map,
- TASKDIALOG_COMMON_BUTTON_FLAGS* button_flags,
- std::vector<TASKDIALOG_BUTTON>* dialog_buttons) {
- for (size_t i = 0; i < buttons.size(); ++i) {
- auto common = GetCommonID(buttons[i]);
- if (common.button != -1) {
- // It is a common button.
- (*id_map)[common.id] = i;
- (*button_flags) |= common.button;
- } else {
- // It is a custom button.
- dialog_buttons->push_back(
- {static_cast<int>(i + kIDStart), buttons[i].c_str()});
- }
- }
- }
- DialogResult ShowTaskDialogUTF16(NativeWindow* parent,
- MessageBoxType type,
- const std::vector<base::string16>& buttons,
- int default_id,
- int cancel_id,
- bool no_link,
- const base::string16& title,
- const base::string16& message,
- const base::string16& detail,
- const base::string16& checkbox_label,
- bool checkbox_checked,
- const gfx::ImageSkia& icon) {
- TASKDIALOG_FLAGS flags =
- TDF_SIZE_TO_CONTENT | // Show all content.
- TDF_ALLOW_DIALOG_CANCELLATION; // Allow canceling the dialog.
- TASKDIALOGCONFIG config = {0};
- config.cbSize = sizeof(config);
- config.hInstance = GetModuleHandle(NULL);
- config.dwFlags = flags;
- if (parent) {
- config.hwndParent = static_cast<electron::NativeWindowViews*>(parent)
- ->GetAcceleratedWidget();
- }
- if (default_id > 0)
- config.nDefaultButton = kIDStart + default_id;
- // TaskDialogIndirect doesn't allow empty name, if we set empty title it
- // will show "electron.exe" in title.
- base::string16 app_name = base::UTF8ToUTF16(Browser::Get()->GetName());
- if (title.empty())
- config.pszWindowTitle = app_name.c_str();
- else
- config.pszWindowTitle = title.c_str();
- base::win::ScopedHICON hicon;
- if (!icon.isNull()) {
- hicon = IconUtil::CreateHICONFromSkBitmap(*icon.bitmap());
- config.dwFlags |= TDF_USE_HICON_MAIN;
- config.hMainIcon = hicon.get();
- } else {
- // Show icon according to dialog's type.
- switch (type) {
- case MessageBoxType::kInformation:
- case MessageBoxType::kQuestion:
- config.pszMainIcon = TD_INFORMATION_ICON;
- break;
- case MessageBoxType::kWarning:
- config.pszMainIcon = TD_WARNING_ICON;
- break;
- case MessageBoxType::kError:
- config.pszMainIcon = TD_ERROR_ICON;
- break;
- case MessageBoxType::kNone:
- break;
- }
- }
- // If "detail" is empty then don't make message highlighted.
- if (detail.empty()) {
- config.pszContent = message.c_str();
- } else {
- config.pszMainInstruction = message.c_str();
- config.pszContent = detail.c_str();
- }
- if (!checkbox_label.empty()) {
- config.pszVerificationText = checkbox_label.c_str();
- if (checkbox_checked)
- config.dwFlags |= TDF_VERIFICATION_FLAG_CHECKED;
- }
- // Iterate through the buttons, put common buttons in dwCommonButtons
- // and custom buttons in pButtons.
- std::map<int, int> id_map;
- std::vector<TASKDIALOG_BUTTON> dialog_buttons;
- if (no_link) {
- for (size_t i = 0; i < buttons.size(); ++i)
- dialog_buttons.push_back(
- {static_cast<int>(i + kIDStart), buttons[i].c_str()});
- } else {
- MapToCommonID(buttons, &id_map, &config.dwCommonButtons, &dialog_buttons);
- }
- if (!dialog_buttons.empty()) {
- config.pButtons = &dialog_buttons.front();
- config.cButtons = dialog_buttons.size();
- if (!no_link)
- config.dwFlags |= TDF_USE_COMMAND_LINKS; // custom buttons as links.
- }
- int button_id;
- int id = 0;
- BOOL verificationFlagChecked = FALSE;
- TaskDialogIndirect(&config, &id, nullptr, &verificationFlagChecked);
- if (id_map.find(id) != id_map.end()) // common button.
- button_id = id_map[id];
- else if (id >= kIDStart) // custom button.
- button_id = id - kIDStart;
- else
- button_id = cancel_id;
- return std::make_pair(button_id, verificationFlagChecked);
- }
- DialogResult ShowTaskDialogUTF8(const MessageBoxSettings& settings) {
- std::vector<base::string16> utf16_buttons;
- for (const auto& button : settings.buttons)
- utf16_buttons.push_back(base::UTF8ToUTF16(button));
- const base::string16 title_16 = base::UTF8ToUTF16(settings.title);
- const base::string16 message_16 = base::UTF8ToUTF16(settings.message);
- const base::string16 detail_16 = base::UTF8ToUTF16(settings.detail);
- const base::string16 checkbox_label_16 =
- base::UTF8ToUTF16(settings.checkbox_label);
- return ShowTaskDialogUTF16(
- settings.parent_window, settings.type, utf16_buttons, settings.default_id,
- settings.cancel_id, settings.no_link, title_16, message_16, detail_16,
- checkbox_label_16, settings.checkbox_checked, settings.icon);
- }
- } // namespace
- int ShowMessageBoxSync(const MessageBoxSettings& settings) {
- electron::UnresponsiveSuppressor suppressor;
- DialogResult result = ShowTaskDialogUTF8(settings);
- return result.first;
- }
- void ShowMessageBox(const MessageBoxSettings& settings,
- MessageBoxCallback callback) {
- dialog_thread::Run(base::BindOnce(&ShowTaskDialogUTF8, settings),
- base::BindOnce(
- [](MessageBoxCallback callback, DialogResult result) {
- std::move(callback).Run(result.first, result.second);
- },
- std::move(callback)));
- }
- void ShowErrorBox(const base::string16& title, const base::string16& content) {
- electron::UnresponsiveSuppressor suppressor;
- ShowTaskDialogUTF16(nullptr, MessageBoxType::kError, {}, -1, 0, false,
- L"Error", title, content, L"", false, gfx::ImageSkia());
- }
- } // namespace electron
|