123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- // Copyright (c) 2017 GitHub, Inc.
- // Use of this source code is governed by the MIT license that can be
- // found in the LICENSE file.
- #ifndef ELECTRON_SHELL_BROWSER_NATIVE_BROWSER_VIEW_H_
- #define ELECTRON_SHELL_BROWSER_NATIVE_BROWSER_VIEW_H_
- #include <vector>
- #include "content/public/browser/web_contents.h"
- #include "content/public/browser/web_contents_observer.h"
- #include "shell/common/api/api.mojom.h"
- #include "third_party/skia/include/core/SkColor.h"
- namespace gfx {
- class Rect;
- }
- namespace electron {
- enum AutoResizeFlags {
- kAutoResizeWidth = 0x1,
- kAutoResizeHeight = 0x2,
- kAutoResizeHorizontal = 0x4,
- kAutoResizeVertical = 0x8,
- };
- class InspectableWebContents;
- class InspectableWebContentsView;
- class NativeBrowserView : public content::WebContentsObserver {
- public:
- ~NativeBrowserView() override;
- // disable copy
- NativeBrowserView(const NativeBrowserView&) = delete;
- NativeBrowserView& operator=(const NativeBrowserView&) = delete;
- static NativeBrowserView* Create(
- InspectableWebContents* inspectable_web_contents);
- InspectableWebContents* GetInspectableWebContents() {
- return inspectable_web_contents_;
- }
- const std::vector<mojom::DraggableRegionPtr>& GetDraggableRegions() const {
- return draggable_regions_;
- }
- InspectableWebContentsView* GetInspectableWebContentsView();
- virtual void SetAutoResizeFlags(uint8_t flags) = 0;
- virtual void SetBounds(const gfx::Rect& bounds) = 0;
- virtual gfx::Rect GetBounds() = 0;
- virtual void SetBackgroundColor(SkColor color) = 0;
- virtual void UpdateDraggableRegions(
- const std::vector<gfx::Rect>& drag_exclude_rects) {}
- // Called when the window needs to update its draggable region.
- virtual void UpdateDraggableRegions(
- const std::vector<mojom::DraggableRegionPtr>& regions) {}
- protected:
- explicit NativeBrowserView(InspectableWebContents* inspectable_web_contents);
- // content::WebContentsObserver:
- void WebContentsDestroyed() override;
- InspectableWebContents* inspectable_web_contents_;
- std::vector<mojom::DraggableRegionPtr> draggable_regions_;
- };
- } // namespace electron
- #endif // ELECTRON_SHELL_BROWSER_NATIVE_BROWSER_VIEW_H_
|