/* * Copyright (c) 2021-2022, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::CSS { // 4.2. The MediaQueryList Interface, https://drafts.csswg.org/cssom-view/#the-mediaquerylist-interface class MediaQueryList final : public DOM::EventTarget { WEB_PLATFORM_OBJECT(MediaQueryList, DOM::EventTarget); GC_DECLARE_ALLOCATOR(MediaQueryList); public: [[nodiscard]] static GC::Ref create(DOM::Document&, Vector>&&); virtual ~MediaQueryList() override = default; String media() const; bool matches() const; bool evaluate(); void add_listener(GC::Ptr); void remove_listener(GC::Ptr); void set_onchange(WebIDL::CallbackType*); WebIDL::CallbackType* onchange(); private: MediaQueryList(DOM::Document&, Vector>&&); virtual void initialize(JS::Realm&) override; virtual void visit_edges(Cell::Visitor&) override; GC::Ref m_document; Vector> m_media; }; }