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:56:58 -07:00
|
|
|
#ifndef SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_H_
|
|
|
|
#define SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_H_
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2015-08-07 14:30:49 +05:30
|
|
|
#include "base/strings/string16.h"
|
2013-03-14 09:03:50 -04:00
|
|
|
#include "ui/gfx/native_widget_types.h"
|
|
|
|
|
2014-07-02 16:21:47 +08:00
|
|
|
class DevToolsContentsResizingStrategy;
|
|
|
|
|
2014-07-04 16:25:59 +08:00
|
|
|
#if defined(TOOLKIT_VIEWS)
|
|
|
|
namespace views {
|
|
|
|
class View;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2015-06-25 12:29:34 +08:00
|
|
|
class InspectableWebContentsViewDelegate;
|
|
|
|
|
2013-03-14 09:03:50 -04:00
|
|
|
class InspectableWebContentsView {
|
2013-11-17 18:23:13 -05:00
|
|
|
public:
|
2015-06-25 12:29:34 +08:00
|
|
|
InspectableWebContentsView() : delegate_(nullptr) {}
|
2013-03-14 09:03:50 -04:00
|
|
|
virtual ~InspectableWebContentsView() {}
|
|
|
|
|
2015-06-25 12:29:34 +08:00
|
|
|
// The delegate manages its own life.
|
|
|
|
void SetDelegate(InspectableWebContentsViewDelegate* delegate) {
|
|
|
|
delegate_ = delegate;
|
|
|
|
}
|
2018-04-17 21:46:27 -04:00
|
|
|
InspectableWebContentsViewDelegate* GetDelegate() const { return delegate_; }
|
2015-06-25 12:29:34 +08:00
|
|
|
|
2018-05-10 13:52:17 -07:00
|
|
|
#if defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX)
|
2014-07-04 16:25:59 +08:00
|
|
|
// Returns the container control, which has devtools view attached.
|
|
|
|
virtual views::View* GetView() = 0;
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2014-07-04 16:25:59 +08:00
|
|
|
// Returns the web view control, which can be used by the
|
|
|
|
// GetInitiallyFocusedView() to set initial focus to web view.
|
|
|
|
virtual views::View* GetWebView() = 0;
|
2014-07-11 23:32:00 +08:00
|
|
|
#else
|
|
|
|
virtual gfx::NativeView GetNativeView() const = 0;
|
2014-07-04 16:25:59 +08:00
|
|
|
#endif
|
|
|
|
|
2018-11-27 10:34:44 +01:00
|
|
|
virtual void ShowDevTools(bool activate) = 0;
|
2014-03-20 09:26:21 +08:00
|
|
|
// Hide the DevTools view.
|
2013-03-27 10:59:40 -04:00
|
|
|
virtual void CloseDevTools() = 0;
|
2013-12-09 04:34:44 -08:00
|
|
|
virtual bool IsDevToolsViewShowing() = 0;
|
2015-09-15 11:04:46 +08:00
|
|
|
virtual bool IsDevToolsViewFocused() = 0;
|
2018-11-27 10:34:44 +01:00
|
|
|
virtual void SetIsDocked(bool docked, bool activate) = 0;
|
2014-07-02 16:21:47 +08:00
|
|
|
virtual void SetContentsResizingStrategy(
|
|
|
|
const DevToolsContentsResizingStrategy& strategy) = 0;
|
2015-08-07 14:30:49 +05:30
|
|
|
virtual void SetTitle(const base::string16& title) = 0;
|
2015-06-25 12:29:34 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
InspectableWebContentsViewDelegate* delegate_; // weak references.
|
2013-03-14 09:03:50 -04:00
|
|
|
};
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2019-06-19 13:56:58 -07:00
|
|
|
#endif // SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_H_
|