2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 07:04:46 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
2013-04-12 07:04:46 +00:00
|
|
|
|
2018-05-12 15:37:31 +00:00
|
|
|
#include <algorithm>
|
2013-04-12 07:04:46 +00:00
|
|
|
#include <string>
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2013-04-12 07:04:46 +00:00
|
|
|
|
2016-06-08 21:17:33 +00:00
|
|
|
#include "atom/browser/browser.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/window_list.h"
|
2018-03-06 04:21:47 +00:00
|
|
|
#include "atom/common/color_util.h"
|
2014-04-04 14:04:42 +00:00
|
|
|
#include "atom/common/options_switches.h"
|
2014-06-23 13:51:42 +00:00
|
|
|
#include "native_mate/dictionary.h"
|
2018-05-12 19:33:47 +00:00
|
|
|
#include "ui/views/widget/widget.h"
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
2018-05-12 15:37:31 +00:00
|
|
|
#include "ui/base/win/shell.h"
|
|
|
|
#include "ui/display/win/screen_win.h"
|
2018-05-12 19:33:47 +00:00
|
|
|
#endif
|
2013-04-12 07:04:46 +00:00
|
|
|
|
2015-06-24 14:14:46 +00:00
|
|
|
DEFINE_WEB_CONTENTS_USER_DATA_KEY(atom::NativeWindowRelay);
|
|
|
|
|
2013-04-12 07:04:46 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2018-05-12 15:37:31 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
2018-05-12 17:51:19 +00:00
|
|
|
gfx::Size GetExpandedWindowSize(const NativeWindow* window, gfx::Size size) {
|
|
|
|
if (!window->transparent() || !ui::win::IsAeroGlassEnabled())
|
|
|
|
return size;
|
2018-05-12 15:37:31 +00:00
|
|
|
|
2018-05-12 17:51:19 +00:00
|
|
|
gfx::Size min_size = display::win::ScreenWin::ScreenToDIPSize(
|
2018-05-12 15:37:31 +00:00
|
|
|
window->GetAcceleratedWidget(), gfx::Size(64, 64));
|
|
|
|
|
2018-05-12 17:51:19 +00:00
|
|
|
// Some AMD drivers can't display windows that are less than 64x64 pixels,
|
|
|
|
// so expand them to be at least that size. http://crbug.com/286609
|
|
|
|
gfx::Size expanded(std::max(size.width(), min_size.width()),
|
|
|
|
std::max(size.height(), min_size.height()));
|
|
|
|
return expanded;
|
|
|
|
}
|
2018-05-12 15:37:31 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2018-04-10 06:23:16 +00:00
|
|
|
NativeWindow::NativeWindow(const mate::Dictionary& options,
|
|
|
|
NativeWindow* parent)
|
2018-04-25 07:05:43 +00:00
|
|
|
: widget_(new views::Widget),
|
|
|
|
has_frame_(true),
|
2014-12-23 19:17:32 +00:00
|
|
|
transparent_(false),
|
2014-08-17 04:23:00 +00:00
|
|
|
enable_larger_than_screen_(false),
|
2013-05-02 12:08:23 +00:00
|
|
|
is_closed_(false),
|
2016-05-19 06:39:16 +00:00
|
|
|
sheet_offset_x_(0.0),
|
|
|
|
sheet_offset_y_(0.0),
|
2015-07-23 02:07:58 +00:00
|
|
|
aspect_ratio_(0.0),
|
2016-06-20 05:49:24 +00:00
|
|
|
parent_(parent),
|
|
|
|
is_modal_(false),
|
2018-03-06 06:04:40 +00:00
|
|
|
browser_view_(nullptr),
|
2015-06-05 06:55:07 +00:00
|
|
|
weak_factory_(this) {
|
2015-11-13 05:58:31 +00:00
|
|
|
options.Get(options::kFrame, &has_frame_);
|
|
|
|
options.Get(options::kTransparent, &transparent_);
|
|
|
|
options.Get(options::kEnableLargerThanScreen, &enable_larger_than_screen_);
|
2013-09-05 13:43:47 +00:00
|
|
|
|
2016-06-20 05:49:24 +00:00
|
|
|
if (parent)
|
|
|
|
options.Get("modal", &is_modal_);
|
|
|
|
|
2013-05-02 14:54:09 +00:00
|
|
|
WindowList::AddWindow(this);
|
2013-04-12 07:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NativeWindow::~NativeWindow() {
|
2013-05-02 12:08:23 +00:00
|
|
|
// It's possible that the windows gets destroyed before it's closed, in that
|
|
|
|
// case we need to ensure the OnWindowClosed message is still notified.
|
|
|
|
NotifyWindowClosed();
|
2013-04-12 07:04:46 +00:00
|
|
|
}
|
|
|
|
|
2014-06-23 13:51:42 +00:00
|
|
|
void NativeWindow::InitFromOptions(const mate::Dictionary& options) {
|
2013-04-12 07:04:46 +00:00
|
|
|
// Setup window from options.
|
2013-07-01 14:01:17 +00:00
|
|
|
int x = -1, y = -1;
|
2013-05-10 12:34:05 +00:00
|
|
|
bool center;
|
2015-11-13 05:58:31 +00:00
|
|
|
if (options.Get(options::kX, &x) && options.Get(options::kY, &y)) {
|
2016-01-15 16:31:31 +00:00
|
|
|
SetPosition(gfx::Point(x, y));
|
2017-10-30 18:19:50 +00:00
|
|
|
|
2017-10-31 17:31:05 +00:00
|
|
|
#if defined(OS_WIN)
|
2017-11-01 18:30:32 +00:00
|
|
|
// FIXME(felixrieseberg): Dirty, dirty workaround for
|
2017-10-30 18:19:50 +00:00
|
|
|
// https://github.com/electron/electron/issues/10862
|
|
|
|
// Somehow, we need to call `SetBounds` twice to get
|
|
|
|
// usable results. The root cause is still unknown.
|
|
|
|
SetPosition(gfx::Point(x, y));
|
|
|
|
#endif
|
2015-11-13 05:58:31 +00:00
|
|
|
} else if (options.Get(options::kCenter, ¢er) && center) {
|
2013-05-10 12:34:05 +00:00
|
|
|
Center();
|
2013-04-12 07:04:46 +00:00
|
|
|
}
|
2015-10-15 08:35:50 +00:00
|
|
|
// On Linux and Window we may already have maximum size defined.
|
|
|
|
extensions::SizeConstraints size_constraints(GetContentSizeConstraints());
|
2014-08-19 13:43:18 +00:00
|
|
|
int min_height = 0, min_width = 0;
|
2015-11-13 05:58:31 +00:00
|
|
|
if (options.Get(options::kMinHeight, &min_height) |
|
|
|
|
options.Get(options::kMinWidth, &min_width)) {
|
2015-10-05 12:36:28 +00:00
|
|
|
size_constraints.set_minimum_size(gfx::Size(min_width, min_height));
|
2013-04-12 07:04:46 +00:00
|
|
|
}
|
2015-03-26 04:23:38 +00:00
|
|
|
int max_height = INT_MAX, max_width = INT_MAX;
|
2015-11-13 05:58:31 +00:00
|
|
|
if (options.Get(options::kMaxHeight, &max_height) |
|
|
|
|
options.Get(options::kMaxWidth, &max_width)) {
|
2015-10-05 12:36:28 +00:00
|
|
|
size_constraints.set_maximum_size(gfx::Size(max_width, max_height));
|
|
|
|
}
|
|
|
|
bool use_content_size = false;
|
2015-11-13 05:58:31 +00:00
|
|
|
options.Get(options::kUseContentSize, &use_content_size);
|
2015-10-05 12:36:28 +00:00
|
|
|
if (use_content_size) {
|
|
|
|
SetContentSizeConstraints(size_constraints);
|
|
|
|
} else {
|
|
|
|
SetSizeConstraints(size_constraints);
|
2013-04-12 07:04:46 +00:00
|
|
|
}
|
2017-11-12 23:35:39 +00:00
|
|
|
#if defined(OS_WIN) || defined(USE_X11)
|
2016-03-07 21:48:33 +00:00
|
|
|
bool resizable;
|
|
|
|
if (options.Get(options::kResizable, &resizable)) {
|
|
|
|
SetResizable(resizable);
|
|
|
|
}
|
2016-01-18 22:46:35 +00:00
|
|
|
bool closable;
|
|
|
|
if (options.Get(options::kClosable, &closable)) {
|
|
|
|
SetClosable(closable);
|
|
|
|
}
|
2015-10-06 07:23:23 +00:00
|
|
|
#endif
|
2016-01-23 10:23:18 +00:00
|
|
|
bool movable;
|
2016-01-23 11:35:30 +00:00
|
|
|
if (options.Get(options::kMovable, &movable)) {
|
2016-01-23 10:23:18 +00:00
|
|
|
SetMovable(movable);
|
|
|
|
}
|
2016-01-23 10:55:12 +00:00
|
|
|
bool has_shadow;
|
|
|
|
if (options.Get(options::kHasShadow, &has_shadow)) {
|
|
|
|
SetHasShadow(has_shadow);
|
|
|
|
}
|
2017-09-29 02:26:02 +00:00
|
|
|
double opacity;
|
|
|
|
if (options.Get(options::kOpacity, &opacity)) {
|
|
|
|
SetOpacity(opacity);
|
|
|
|
}
|
2013-04-12 07:04:46 +00:00
|
|
|
bool top;
|
2015-11-13 05:58:31 +00:00
|
|
|
if (options.Get(options::kAlwaysOnTop, &top) && top) {
|
2013-04-12 07:04:46 +00:00
|
|
|
SetAlwaysOnTop(true);
|
|
|
|
}
|
2016-02-22 09:23:56 +00:00
|
|
|
bool fullscreenable = true;
|
|
|
|
bool fullscreen = false;
|
2016-05-30 00:12:16 +00:00
|
|
|
if (options.Get(options::kFullscreen, &fullscreen) && !fullscreen) {
|
|
|
|
// Disable fullscreen button if 'fullscreen' is specified to false.
|
2018-04-18 01:55:30 +00:00
|
|
|
#if defined(OS_MACOSX)
|
2016-02-22 09:23:56 +00:00
|
|
|
fullscreenable = false;
|
2018-04-18 01:55:30 +00:00
|
|
|
#endif
|
2016-05-30 00:12:16 +00:00
|
|
|
}
|
2016-03-05 12:54:41 +00:00
|
|
|
// Overriden by 'fullscreenable'.
|
|
|
|
options.Get(options::kFullScreenable, &fullscreenable);
|
2016-02-22 09:23:56 +00:00
|
|
|
SetFullScreenable(fullscreenable);
|
2016-03-05 12:54:41 +00:00
|
|
|
if (fullscreen) {
|
2014-11-25 06:34:14 +00:00
|
|
|
SetFullScreen(true);
|
2016-03-05 12:54:41 +00:00
|
|
|
}
|
2014-06-16 02:29:51 +00:00
|
|
|
bool skip;
|
2016-06-13 08:24:45 +00:00
|
|
|
if (options.Get(options::kSkipTaskbar, &skip)) {
|
2014-06-16 02:29:51 +00:00
|
|
|
SetSkipTaskbar(skip);
|
|
|
|
}
|
2013-04-12 07:04:46 +00:00
|
|
|
bool kiosk;
|
2015-11-13 05:58:31 +00:00
|
|
|
if (options.Get(options::kKiosk, &kiosk) && kiosk) {
|
2013-04-12 07:04:46 +00:00
|
|
|
SetKiosk(kiosk);
|
|
|
|
}
|
2018-04-10 07:54:07 +00:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
std::string type;
|
|
|
|
if (options.Get(options::kVibrancyType, &type)) {
|
|
|
|
SetVibrancy(type);
|
|
|
|
}
|
|
|
|
#endif
|
2015-10-23 03:35:33 +00:00
|
|
|
std::string color;
|
2015-11-13 05:58:31 +00:00
|
|
|
if (options.Get(options::kBackgroundColor, &color)) {
|
2018-03-06 04:21:47 +00:00
|
|
|
SetBackgroundColor(ParseHexColor(color));
|
2016-04-14 10:35:31 +00:00
|
|
|
} else if (!transparent()) {
|
|
|
|
// For normal window, use white as default background.
|
2018-03-06 04:21:47 +00:00
|
|
|
SetBackgroundColor(SK_ColorWHITE);
|
2015-10-23 03:35:33 +00:00
|
|
|
}
|
2016-06-08 21:17:33 +00:00
|
|
|
std::string title(Browser::Get()->GetName());
|
2015-11-13 05:58:31 +00:00
|
|
|
options.Get(options::kTitle, &title);
|
2013-04-12 07:04:46 +00:00
|
|
|
SetTitle(title);
|
|
|
|
|
|
|
|
// Then show it.
|
|
|
|
bool show = true;
|
2015-11-13 05:58:31 +00:00
|
|
|
options.Get(options::kShow, &show);
|
2015-10-01 09:46:11 +00:00
|
|
|
if (show)
|
2013-04-12 07:04:46 +00:00
|
|
|
Show();
|
|
|
|
}
|
|
|
|
|
2018-04-17 23:47:47 +00:00
|
|
|
bool NativeWindow::IsClosed() const {
|
|
|
|
return is_closed_;
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:54:12 +00:00
|
|
|
void NativeWindow::SetSize(const gfx::Size& size, bool animate) {
|
|
|
|
SetBounds(gfx::Rect(GetPosition(), size), animate);
|
2015-05-04 04:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size NativeWindow::GetSize() {
|
|
|
|
return GetBounds().size();
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:54:12 +00:00
|
|
|
void NativeWindow::SetPosition(const gfx::Point& position, bool animate) {
|
|
|
|
SetBounds(gfx::Rect(position, GetSize()), animate);
|
2015-05-04 04:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Point NativeWindow::GetPosition() {
|
|
|
|
return GetBounds().origin();
|
|
|
|
}
|
|
|
|
|
2016-01-15 04:54:12 +00:00
|
|
|
void NativeWindow::SetContentSize(const gfx::Size& size, bool animate) {
|
2016-08-04 19:10:01 +00:00
|
|
|
SetSize(ContentBoundsToWindowBounds(gfx::Rect(size)).size(), animate);
|
2015-10-05 08:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size NativeWindow::GetContentSize() {
|
2016-08-04 17:58:59 +00:00
|
|
|
return GetContentBounds().size();
|
2016-08-04 19:02:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetContentBounds(const gfx::Rect& bounds, bool animate) {
|
|
|
|
SetBounds(ContentBoundsToWindowBounds(bounds), animate);
|
2016-08-04 17:58:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Rect NativeWindow::GetContentBounds() {
|
|
|
|
return WindowBoundsToContentBounds(GetBounds());
|
2015-10-05 08:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetSizeConstraints(
|
|
|
|
const extensions::SizeConstraints& window_constraints) {
|
2016-07-12 17:05:32 +00:00
|
|
|
extensions::SizeConstraints content_constraints(GetContentSizeConstraints());
|
2016-08-04 17:58:59 +00:00
|
|
|
if (window_constraints.HasMaximumSize()) {
|
|
|
|
gfx::Rect max_bounds = WindowBoundsToContentBounds(
|
|
|
|
gfx::Rect(window_constraints.GetMaximumSize()));
|
|
|
|
content_constraints.set_maximum_size(max_bounds.size());
|
|
|
|
}
|
|
|
|
if (window_constraints.HasMinimumSize()) {
|
|
|
|
gfx::Rect min_bounds = WindowBoundsToContentBounds(
|
|
|
|
gfx::Rect(window_constraints.GetMinimumSize()));
|
|
|
|
content_constraints.set_minimum_size(min_bounds.size());
|
|
|
|
}
|
2015-10-05 08:19:01 +00:00
|
|
|
SetContentSizeConstraints(content_constraints);
|
|
|
|
}
|
|
|
|
|
2017-05-21 18:57:19 +00:00
|
|
|
extensions::SizeConstraints NativeWindow::GetSizeConstraints() const {
|
2015-10-05 08:19:01 +00:00
|
|
|
extensions::SizeConstraints content_constraints = GetContentSizeConstraints();
|
|
|
|
extensions::SizeConstraints window_constraints;
|
2016-08-04 17:58:59 +00:00
|
|
|
if (content_constraints.HasMaximumSize()) {
|
|
|
|
gfx::Rect max_bounds = ContentBoundsToWindowBounds(
|
|
|
|
gfx::Rect(content_constraints.GetMaximumSize()));
|
2016-08-04 19:14:23 +00:00
|
|
|
window_constraints.set_maximum_size(max_bounds.size());
|
2016-08-04 17:58:59 +00:00
|
|
|
}
|
|
|
|
if (content_constraints.HasMinimumSize()) {
|
|
|
|
gfx::Rect min_bounds = ContentBoundsToWindowBounds(
|
|
|
|
gfx::Rect(content_constraints.GetMinimumSize()));
|
|
|
|
window_constraints.set_minimum_size(min_bounds.size());
|
|
|
|
}
|
2015-10-05 08:19:01 +00:00
|
|
|
return window_constraints;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetContentSizeConstraints(
|
|
|
|
const extensions::SizeConstraints& size_constraints) {
|
|
|
|
size_constraints_ = size_constraints;
|
|
|
|
}
|
|
|
|
|
2017-05-21 18:57:19 +00:00
|
|
|
extensions::SizeConstraints NativeWindow::GetContentSizeConstraints() const {
|
2015-10-05 08:19:01 +00:00
|
|
|
return size_constraints_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetMinimumSize(const gfx::Size& size) {
|
|
|
|
extensions::SizeConstraints size_constraints;
|
|
|
|
size_constraints.set_minimum_size(size);
|
|
|
|
SetSizeConstraints(size_constraints);
|
|
|
|
}
|
|
|
|
|
2017-05-21 18:57:19 +00:00
|
|
|
gfx::Size NativeWindow::GetMinimumSize() const {
|
2015-10-05 08:19:01 +00:00
|
|
|
return GetSizeConstraints().GetMinimumSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetMaximumSize(const gfx::Size& size) {
|
|
|
|
extensions::SizeConstraints size_constraints;
|
|
|
|
size_constraints.set_maximum_size(size);
|
|
|
|
SetSizeConstraints(size_constraints);
|
|
|
|
}
|
|
|
|
|
2017-05-21 18:57:19 +00:00
|
|
|
gfx::Size NativeWindow::GetMaximumSize() const {
|
2015-10-05 08:19:01 +00:00
|
|
|
return GetSizeConstraints().GetMaximumSize();
|
|
|
|
}
|
|
|
|
|
2018-05-12 15:37:31 +00:00
|
|
|
gfx::Size NativeWindow::GetContentMinimumSize() const {
|
|
|
|
return GetContentSizeConstraints().GetMinimumSize();
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size NativeWindow::GetContentMaximumSize() const {
|
|
|
|
gfx::Size maximum_size = GetContentSizeConstraints().GetMaximumSize();
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
return GetExpandedWindowSize(this, maximum_size);
|
|
|
|
#elif
|
|
|
|
return maximum_size;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-20 03:19:08 +00:00
|
|
|
void NativeWindow::SetSheetOffset(const double offsetX, const double offsetY) {
|
2016-05-19 06:39:16 +00:00
|
|
|
sheet_offset_x_ = offsetX;
|
|
|
|
sheet_offset_y_ = offsetY;
|
2016-04-19 05:39:12 +00:00
|
|
|
}
|
|
|
|
|
2016-05-19 06:39:16 +00:00
|
|
|
double NativeWindow::GetSheetOffsetX() {
|
|
|
|
return sheet_offset_x_;
|
|
|
|
}
|
|
|
|
|
|
|
|
double NativeWindow::GetSheetOffsetY() {
|
|
|
|
return sheet_offset_y_;
|
2016-04-19 05:39:12 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SetRepresentedFilename(const std::string& filename) {}
|
2014-05-27 06:15:34 +00:00
|
|
|
|
2014-07-18 13:42:26 +00:00
|
|
|
std::string NativeWindow::GetRepresentedFilename() {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SetDocumentEdited(bool edited) {}
|
2014-05-27 06:15:34 +00:00
|
|
|
|
2014-08-21 13:00:49 +00:00
|
|
|
bool NativeWindow::IsDocumentEdited() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SetFocusable(bool focusable) {}
|
2016-06-13 08:10:28 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SetMenu(AtomMenuModel* menu) {}
|
2014-02-10 12:07:38 +00:00
|
|
|
|
2016-06-20 05:49:24 +00:00
|
|
|
void NativeWindow::SetParentWindow(NativeWindow* parent) {
|
|
|
|
parent_ = parent;
|
2016-06-18 13:53:41 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SetAutoHideCursor(bool auto_hide) {}
|
2016-11-28 19:38:40 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SelectPreviousTab() {}
|
2017-08-21 04:46:10 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SelectNextTab() {}
|
2017-08-21 04:46:10 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::MergeAllWindows() {}
|
2017-08-21 04:46:10 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::MoveTabToNewWindow() {}
|
2017-08-21 04:46:10 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::ToggleTabBar() {}
|
2017-08-21 04:46:10 +00:00
|
|
|
|
2018-02-27 21:00:42 +00:00
|
|
|
bool NativeWindow::AddTabbedWindow(NativeWindow* window) {
|
|
|
|
return true; // for non-Mac platforms
|
2017-09-13 19:15:14 +00:00
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SetVibrancy(const std::string& filename) {}
|
2016-11-10 10:59:25 +00:00
|
|
|
|
2017-03-01 00:14:02 +00:00
|
|
|
void NativeWindow::SetTouchBar(
|
2018-04-18 01:55:30 +00:00
|
|
|
const std::vector<mate::PersistentDictionary>& items) {}
|
2016-11-27 05:57:01 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::RefreshTouchBarItem(const std::string& item_id) {}
|
2016-12-16 06:24:51 +00:00
|
|
|
|
2017-03-29 19:41:49 +00:00
|
|
|
void NativeWindow::SetEscapeTouchBarItem(
|
2018-04-18 01:55:30 +00:00
|
|
|
const mate::PersistentDictionary& item) {}
|
2017-03-27 00:22:52 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SetAutoHideMenuBar(bool auto_hide) {}
|
2015-09-18 05:49:33 +00:00
|
|
|
|
|
|
|
bool NativeWindow::IsMenuBarAutoHide() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::SetMenuBarVisibility(bool visible) {}
|
2015-09-18 05:49:33 +00:00
|
|
|
|
|
|
|
bool NativeWindow::IsMenuBarVisible() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
double NativeWindow::GetAspectRatio() {
|
|
|
|
return aspect_ratio_;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfx::Size NativeWindow::GetAspectRatioExtraSize() {
|
|
|
|
return aspect_ratio_extraSize_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::SetAspectRatio(double aspect_ratio,
|
|
|
|
const gfx::Size& extra_size) {
|
|
|
|
aspect_ratio_ = aspect_ratio;
|
|
|
|
aspect_ratio_extraSize_ = extra_size;
|
|
|
|
}
|
|
|
|
|
2016-10-14 16:42:50 +00:00
|
|
|
void NativeWindow::PreviewFile(const std::string& path,
|
2018-04-18 01:55:30 +00:00
|
|
|
const std::string& display_name) {}
|
2016-10-12 01:08:01 +00:00
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::CloseFilePreview() {}
|
2016-11-21 18:30:13 +00:00
|
|
|
|
2018-03-06 03:03:12 +00:00
|
|
|
void NativeWindow::NotifyWindowRequestPreferredWith(int* width) {
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.RequestPreferredWidth(width);
|
|
|
|
}
|
|
|
|
|
2018-02-22 07:15:21 +00:00
|
|
|
void NativeWindow::NotifyWindowCloseButtonClicked() {
|
|
|
|
// First ask the observers whether we want to close.
|
|
|
|
bool prevent_default = false;
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.WillCloseWindow(&prevent_default);
|
|
|
|
if (prevent_default) {
|
|
|
|
WindowList::WindowCloseCancelled(this);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Then ask the observers how should we close the window.
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnCloseButtonClicked(&prevent_default);
|
|
|
|
if (prevent_default)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CloseImmediately();
|
|
|
|
}
|
|
|
|
|
2013-05-02 12:08:23 +00:00
|
|
|
void NativeWindow::NotifyWindowClosed() {
|
|
|
|
if (is_closed_)
|
|
|
|
return;
|
|
|
|
|
2015-06-27 09:01:20 +00:00
|
|
|
WindowList::RemoveWindow(this);
|
|
|
|
|
2013-05-02 12:08:23 +00:00
|
|
|
is_closed_ = true;
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowClosed();
|
2013-05-02 12:08:23 +00:00
|
|
|
}
|
|
|
|
|
2017-04-21 20:45:30 +00:00
|
|
|
void NativeWindow::NotifyWindowEndSession() {
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowEndSession();
|
|
|
|
}
|
|
|
|
|
2013-05-24 09:51:15 +00:00
|
|
|
void NativeWindow::NotifyWindowBlur() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowBlur();
|
2013-05-24 09:51:15 +00:00
|
|
|
}
|
|
|
|
|
2014-05-21 17:46:13 +00:00
|
|
|
void NativeWindow::NotifyWindowFocus() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowFocus();
|
2014-05-21 17:46:13 +00:00
|
|
|
}
|
|
|
|
|
2016-03-08 19:11:17 +00:00
|
|
|
void NativeWindow::NotifyWindowShow() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowShow();
|
2016-03-08 19:11:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowHide() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowHide();
|
2016-03-08 19:11:17 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 04:43:25 +00:00
|
|
|
void NativeWindow::NotifyWindowMaximize() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMaximize();
|
2014-11-25 04:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowUnmaximize() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowUnmaximize();
|
2014-11-25 04:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowMinimize() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMinimize();
|
2014-11-25 04:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowRestore() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowRestore();
|
2014-11-25 04:43:25 +00:00
|
|
|
}
|
|
|
|
|
2015-05-09 15:55:10 +00:00
|
|
|
void NativeWindow::NotifyWindowResize() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowResize();
|
2015-05-09 15:55:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowMove() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMove();
|
2015-05-09 15:55:10 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 08:37:13 +00:00
|
|
|
void NativeWindow::NotifyWindowMoved() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMoved();
|
2015-05-20 08:37:13 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 04:43:25 +00:00
|
|
|
void NativeWindow::NotifyWindowEnterFullScreen() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowEnterFullScreen();
|
2014-11-25 04:43:25 +00:00
|
|
|
}
|
|
|
|
|
2016-01-22 00:31:09 +00:00
|
|
|
void NativeWindow::NotifyWindowScrollTouchBegin() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowScrollTouchBegin();
|
2016-01-21 17:40:21 +00:00
|
|
|
}
|
|
|
|
|
2016-01-22 00:31:09 +00:00
|
|
|
void NativeWindow::NotifyWindowScrollTouchEnd() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
2017-02-13 19:24:47 +00:00
|
|
|
observer.OnWindowScrollTouchEnd();
|
2016-01-21 17:40:21 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 15:20:11 +00:00
|
|
|
void NativeWindow::NotifyWindowSwipe(const std::string& direction) {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowSwipe(direction);
|
2016-03-18 15:20:04 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 17:31:25 +00:00
|
|
|
void NativeWindow::NotifyWindowSheetBegin() {
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowSheetBegin();
|
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowSheetEnd() {
|
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowSheetEnd();
|
|
|
|
}
|
|
|
|
|
2014-11-25 04:43:25 +00:00
|
|
|
void NativeWindow::NotifyWindowLeaveFullScreen() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowLeaveFullScreen();
|
2014-11-25 04:43:25 +00:00
|
|
|
}
|
|
|
|
|
2015-05-21 05:09:31 +00:00
|
|
|
void NativeWindow::NotifyWindowEnterHtmlFullScreen() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowEnterHtmlFullScreen();
|
2015-05-21 05:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void NativeWindow::NotifyWindowLeaveHtmlFullScreen() {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowLeaveHtmlFullScreen();
|
2015-05-21 05:09:31 +00:00
|
|
|
}
|
|
|
|
|
2015-08-05 04:46:32 +00:00
|
|
|
void NativeWindow::NotifyWindowExecuteWindowsCommand(
|
|
|
|
const std::string& command) {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnExecuteWindowsCommand(command);
|
2015-08-05 04:46:32 +00:00
|
|
|
}
|
|
|
|
|
2016-11-27 05:57:01 +00:00
|
|
|
void NativeWindow::NotifyTouchBarItemInteraction(
|
2017-02-28 23:37:15 +00:00
|
|
|
const std::string& item_id,
|
|
|
|
const base::DictionaryValue& details) {
|
2017-02-27 17:20:25 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
2017-02-28 23:37:15 +00:00
|
|
|
observer.OnTouchBarItemResult(item_id, details);
|
2017-02-27 17:20:25 +00:00
|
|
|
}
|
2016-11-27 05:57:01 +00:00
|
|
|
|
2017-06-11 08:19:01 +00:00
|
|
|
void NativeWindow::NotifyNewWindowForTab() {
|
2018-04-18 01:55:30 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
2017-06-11 08:19:01 +00:00
|
|
|
observer.OnNewWindowForTab();
|
|
|
|
}
|
|
|
|
|
2015-10-27 01:12:01 +00:00
|
|
|
#if defined(OS_WIN)
|
2018-04-18 01:55:30 +00:00
|
|
|
void NativeWindow::NotifyWindowMessage(UINT message,
|
|
|
|
WPARAM w_param,
|
|
|
|
LPARAM l_param) {
|
2017-01-24 03:34:39 +00:00
|
|
|
for (NativeWindowObserver& observer : observers_)
|
|
|
|
observer.OnWindowMessage(message, w_param, l_param);
|
2015-10-27 01:12:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-04-25 07:05:43 +00:00
|
|
|
views::Widget* NativeWindow::GetWidget() {
|
|
|
|
return widget();
|
|
|
|
}
|
|
|
|
|
|
|
|
const views::Widget* NativeWindow::GetWidget() const {
|
|
|
|
return widget();
|
|
|
|
}
|
|
|
|
|
2018-04-17 23:37:22 +00:00
|
|
|
NativeWindowRelay::NativeWindowRelay(base::WeakPtr<NativeWindow> window)
|
2018-05-12 19:33:47 +00:00
|
|
|
: key(UserDataKey()), window(window) {}
|
2018-04-17 23:37:22 +00:00
|
|
|
|
|
|
|
NativeWindowRelay::~NativeWindowRelay() = default;
|
|
|
|
|
2013-04-12 07:04:46 +00:00
|
|
|
} // namespace atom
|