/* * Copyright (c) 2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include namespace WindowServer { class Window; struct HitTestResult { WeakPtr window; Gfx::IntPoint screen_position; Gfx::IntPoint window_relative_position; bool is_frame_hit { false }; }; }