1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/capture_mode/fake_folder_selection_dialog_factory.h"
#include <memory>
#include "base/check.h"
#include "base/check_op.h"
#include "base/memory/ptr_util.h"
#include "ui/aura/window.h"
#include "ui/aura/window_observer.h"
#include "ui/gfx/geometry/insets.h"
#include "ui/shell_dialogs/select_file_dialog.h"
#include "ui/shell_dialogs/select_file_policy.h"
#include "ui/shell_dialogs/selected_file_info.h"
#include "ui/views/widget/unique_widget_ptr.h"
#include "ui/views/widget/widget.h"
#include "url/gurl.h"
namespace ash {
namespace {
FakeFolderSelectionDialogFactory* g_factory_instance = nullptr;
} // namespace
// -----------------------------------------------------------------------------
// FakeFolderSelectionDialog:
class FakeFolderSelectionDialog : public ui::SelectFileDialog {
public:
FakeFolderSelectionDialog(Listener* listener,
std::unique_ptr<ui::SelectFilePolicy> policy)
: ui::SelectFileDialog(listener, std::move(policy)) {}
aura::Window* GetDialogWindow() {
DCHECK(dialog_widget_);
return dialog_widget_->GetNativeWindow();
}
void AcceptPath(const base::FilePath& path) {
DCHECK(dialog_widget_);
if (listener_) {
listener_->FileSelected(ui::SelectedFileInfo(path), /*index=*/0);
}
DismissDialog();
}
void CancelDialog() {
DCHECK(dialog_widget_);
if (listener_) {
listener_->FileSelectionCanceled();
}
DismissDialog();
}
// ui::BaseShellDialog:
bool IsRunning(gfx::NativeWindow owning_window) const override {
// The dialog is not shown modally.
return false;
}
void ListenerDestroyed() override { listener_ = nullptr; }
protected:
~FakeFolderSelectionDialog() override {
if (g_factory_instance)
g_factory_instance->OnDialogDeleted(this);
}
// ui::SelectFileDialog:
void SelectFileImpl(Type type,
const std::u16string& title,
const base::FilePath& default_path,
const FileTypeInfo* file_types,
int file_type_index,
const base::FilePath::StringType& default_extension,
gfx::NativeWindow owning_window,
const GURL* caller) override {
dialog_widget_ = views::UniqueWidgetPtr(std::make_unique<views::Widget>());
views::Widget::InitParams widget_params(
views::Widget::InitParams::NATIVE_WIDGET_OWNS_WIDGET,
views::Widget::InitParams::TYPE_POPUP);
widget_params.parent = owning_window;
widget_params.bounds = owning_window->GetRootWindow()->bounds();
widget_params.bounds.Inset(gfx::Insets(20));
widget_params.name = "FakeFolderSelectionDialogWidget";
dialog_widget_->Init(std::move(widget_params));
dialog_widget_->Show();
}
private:
void DismissDialog() {
dialog_widget_->CloseNow();
// |this| is deleted after the above call.
DCHECK(!g_factory_instance || !(g_factory_instance->dialog_));
}
// ui::SelectFileDialog:
bool HasMultipleFileTypeChoicesImpl() override { return false; }
views::UniqueWidgetPtr dialog_widget_;
};
// -----------------------------------------------------------------------------
// FakeFolderSelectionDialogFactory:
// static
void FakeFolderSelectionDialogFactory::Start() {
ui::SelectFileDialog::SetFactory(
// Private constructor.
base::WrapUnique(new FakeFolderSelectionDialogFactory()));
}
// static
void FakeFolderSelectionDialogFactory::Stop() {
ui::SelectFileDialog::SetFactory(nullptr);
DCHECK(!g_factory_instance);
}
// static
FakeFolderSelectionDialogFactory* FakeFolderSelectionDialogFactory::Get() {
DCHECK(g_factory_instance);
return g_factory_instance;
}
aura::Window* FakeFolderSelectionDialogFactory::GetDialogWindow() {
DCHECK(dialog_);
return dialog_->GetDialogWindow();
}
void FakeFolderSelectionDialogFactory::AcceptPath(const base::FilePath& path) {
DCHECK(dialog_);
dialog_->AcceptPath(path);
}
void FakeFolderSelectionDialogFactory::CancelDialog() {
DCHECK(dialog_);
dialog_->CancelDialog();
}
ui::SelectFileDialog* FakeFolderSelectionDialogFactory::Create(
ui::SelectFileDialog::Listener* listener,
std::unique_ptr<ui::SelectFilePolicy> policy) {
dialog_ = new FakeFolderSelectionDialog(listener, std::move(policy));
return dialog_;
}
FakeFolderSelectionDialogFactory::FakeFolderSelectionDialogFactory() {
DCHECK(!g_factory_instance);
g_factory_instance = this;
}
FakeFolderSelectionDialogFactory::~FakeFolderSelectionDialogFactory() {
DCHECK_EQ(g_factory_instance, this);
g_factory_instance = nullptr;
}
void FakeFolderSelectionDialogFactory::OnDialogDeleted(
FakeFolderSelectionDialog* dialog) {
DCHECK_EQ(dialog_, dialog);
dialog_ = nullptr;
}
} // namespace ash
|