#ifndef UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_AURA_H_
#define UI_VIEWS_CONTROLS_NATIVE_NATIVE_VIEW_HOST_AURA_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "ui/aura/window_observer.h"
#include "ui/compositor/layer_owner.h"
#include "ui/gfx/geometry/rounded_corners_f.h"
#include "ui/gfx/geometry/transform.h"
#include "ui/views/controls/native/native_view_host_wrapper.h"
#include "ui/views/views_export.h"
namespace aura {
class Window;
}
namespace views {
class NativeViewHost;
class NativeViewHostAura : public NativeViewHostWrapper,
public aura::WindowObserver {
public:
explicit NativeViewHostAura(NativeViewHost* host);
NativeViewHostAura(const NativeViewHostAura&) = delete;
NativeViewHostAura& operator=(const NativeViewHostAura&) = delete;
~NativeViewHostAura() override;
void AttachNativeView() override;
void NativeViewDetaching(bool destroyed) override;
void AddedToWidget() override;
void RemovedFromWidget() override;
bool SetCornerRadii(const gfx::RoundedCornersF& corner_radii) override;
bool SetCustomMask(std::unique_ptr<ui::LayerOwner> mask) override;
void SetHitTestTopInset(int top_inset) override;
int GetHitTestTopInset() const override;
void InstallClip(int x, int y, int w, int h) override;
bool HasInstalledClip() override;
void UninstallClip() override;
void ShowWidget(int x, int y, int w, int h, int native_w, int native_h)
override;
void HideWidget() override;
void SetFocus() override;
gfx::NativeView GetNativeViewContainer() const override;
gfx::NativeViewAccessible GetNativeViewAccessible() override;
ui::Cursor GetCursor(int x, int y) override;
void SetVisible(bool visible) override;
void SetParentAccessible(gfx::NativeViewAccessible) override;
gfx::NativeViewAccessible GetParentAccessible() override;
private:
friend class NativeViewHostAuraTest;
class ClippingWindowDelegate;
void OnWindowDestroying(aura::Window* window) override;
void OnWindowDestroyed(aura::Window* window) override;
void OnWindowBoundsChanged(aura::Window* window,
const gfx::Rect& old_bounds,
const gfx::Rect& new_bounds,
ui::PropertyChangeReason reason) override;
void CreateClippingWindow();
void AddClippingWindow();
void RemoveClippingWindow();
void ApplyRoundedCorners();
void InstallMask();
void UninstallMask();
void UpdateInsets();
raw_ptr<NativeViewHost> host_;
std::unique_ptr<ClippingWindowDelegate> clipping_window_delegate_;
std::unique_ptr<aura::Window> clipping_window_;
std::unique_ptr<gfx::Rect> clip_rect_;
std::unique_ptr<ui::LayerOwner> mask_;
gfx::RoundedCornersF corner_radii_;
gfx::Transform original_transform_;
bool original_transform_changed_ = false;
int top_inset_ = 0;
};
}
#endif