2018-10-19 15:50:30 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Copyright (c) 2013 Adam Roben <adam@roben.org>. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/ui/inspectable_web_contents_view_mac.h"
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2014-07-02 16:21:47 +08:00
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
|
2015-08-25 20:55:07 +08:00
|
|
|
#include "base/strings/sys_string_conversions.h"
|
2020-02-04 12:19:40 -08:00
|
|
|
#import "shell/browser/ui/cocoa/electron_inspectable_web_contents_view.h"
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/ui/inspectable_web_contents.h"
|
|
|
|
#include "shell/browser/ui/inspectable_web_contents_view_delegate.h"
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2014-07-01 20:57:49 +08:00
|
|
|
|
2018-04-20 14:47:04 -04:00
|
|
|
InspectableWebContentsView* CreateInspectableContentsView(
|
2020-07-15 11:27:42 -07:00
|
|
|
InspectableWebContents* inspectable_web_contents) {
|
2013-03-14 09:03:50 -04:00
|
|
|
return new InspectableWebContentsViewMac(inspectable_web_contents);
|
|
|
|
}
|
|
|
|
|
2018-04-20 14:47:04 -04:00
|
|
|
InspectableWebContentsViewMac::InspectableWebContentsViewMac(
|
2020-07-15 11:27:42 -07:00
|
|
|
InspectableWebContents* inspectable_web_contents)
|
2013-03-14 09:03:50 -04:00
|
|
|
: inspectable_web_contents_(inspectable_web_contents),
|
2020-02-04 12:19:40 -08:00
|
|
|
view_([[ElectronInspectableWebContentsView alloc]
|
2018-04-20 14:47:04 -04:00
|
|
|
initWithInspectableWebContentsViewMac:this]) {}
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2014-04-23 11:20:12 +08:00
|
|
|
InspectableWebContentsViewMac::~InspectableWebContentsViewMac() {
|
2014-08-08 12:45:26 +08:00
|
|
|
CloseDevTools();
|
2014-04-23 11:20:12 +08:00
|
|
|
}
|
|
|
|
|
2013-03-14 09:03:50 -04:00
|
|
|
gfx::NativeView InspectableWebContentsViewMac::GetNativeView() const {
|
|
|
|
return view_.get();
|
|
|
|
}
|
|
|
|
|
2018-11-27 10:34:44 +01:00
|
|
|
void InspectableWebContentsViewMac::ShowDevTools(bool activate) {
|
|
|
|
[view_ setDevToolsVisible:YES activate:activate];
|
2013-03-14 09:03:50 -04:00
|
|
|
}
|
|
|
|
|
2013-03-27 10:59:40 -04:00
|
|
|
void InspectableWebContentsViewMac::CloseDevTools() {
|
2018-11-27 10:34:44 +01:00
|
|
|
[view_ setDevToolsVisible:NO activate:NO];
|
2013-03-27 10:59:40 -04:00
|
|
|
}
|
|
|
|
|
2013-12-09 04:34:44 -08:00
|
|
|
bool InspectableWebContentsViewMac::IsDevToolsViewShowing() {
|
2013-11-05 10:29:53 +08:00
|
|
|
return [view_ isDevToolsVisible];
|
|
|
|
}
|
|
|
|
|
2015-09-15 11:04:46 +08:00
|
|
|
bool InspectableWebContentsViewMac::IsDevToolsViewFocused() {
|
|
|
|
return [view_ isDevToolsFocused];
|
|
|
|
}
|
|
|
|
|
2018-11-27 10:34:44 +01:00
|
|
|
void InspectableWebContentsViewMac::SetIsDocked(bool docked, bool activate) {
|
|
|
|
[view_ setIsDocked:docked activate:activate];
|
2014-07-02 16:21:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsViewMac::SetContentsResizingStrategy(
|
2018-04-20 14:47:04 -04:00
|
|
|
const DevToolsContentsResizingStrategy& strategy) {
|
2014-07-02 16:21:47 +08:00
|
|
|
[view_ setContentsResizingStrategy:strategy];
|
2013-03-27 11:19:15 -04:00
|
|
|
}
|
|
|
|
|
2021-03-16 12:18:45 -04:00
|
|
|
void InspectableWebContentsViewMac::SetTitle(const std::u16string& title) {
|
2015-08-25 20:55:07 +08:00
|
|
|
[view_ setTitle:base::SysUTF16ToNSString(title)];
|
2015-08-07 14:55:58 +05:30
|
|
|
}
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|