2020-06-04 16:06:32 +02:00
|
|
|
/*
|
2021-03-08 11:22:18 +01:00
|
|
|
* Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
|
2020-06-04 16:06:32 +02:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-04 16:06:32 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-03-07 16:14:04 +01:00
|
|
|
#include <AK/NonnullRefPtrVector.h>
|
2020-06-04 16:06:32 +02:00
|
|
|
#include <AK/RefCounted.h>
|
2021-03-08 11:22:18 +01:00
|
|
|
#include <LibWeb/Bindings/Wrappable.h>
|
|
|
|
#include <LibWeb/CSS/CSSStyleSheet.h>
|
2021-03-07 16:14:04 +01:00
|
|
|
#include <LibWeb/Forward.h>
|
2020-06-04 16:06:32 +02:00
|
|
|
|
2020-07-21 16:23:08 +02:00
|
|
|
namespace Web::CSS {
|
2020-06-04 16:06:32 +02:00
|
|
|
|
2021-03-08 11:22:18 +01:00
|
|
|
class StyleSheetList
|
|
|
|
: public RefCounted<StyleSheetList>
|
2022-03-09 19:57:15 +01:00
|
|
|
, public Weakable<StyleSheetList>
|
2021-03-08 11:22:18 +01:00
|
|
|
, public Bindings::Wrappable {
|
2020-06-04 16:06:32 +02:00
|
|
|
public:
|
2021-03-08 11:22:18 +01:00
|
|
|
using WrapperType = Bindings::StyleSheetListWrapper;
|
|
|
|
|
2020-07-26 19:37:56 +02:00
|
|
|
static NonnullRefPtr<StyleSheetList> create(DOM::Document& document)
|
2020-06-04 16:06:32 +02:00
|
|
|
{
|
2021-04-23 16:46:57 +02:00
|
|
|
return adopt_ref(*new StyleSheetList(document));
|
2020-06-04 16:06:32 +02:00
|
|
|
}
|
|
|
|
|
2021-03-08 11:22:18 +01:00
|
|
|
void add_sheet(NonnullRefPtr<CSSStyleSheet>);
|
2021-09-29 23:46:16 +02:00
|
|
|
void remove_sheet(CSSStyleSheet&);
|
|
|
|
|
2021-10-08 20:21:46 +01:00
|
|
|
NonnullRefPtrVector<CSSStyleSheet> const& sheets() const { return m_sheets; }
|
|
|
|
NonnullRefPtrVector<CSSStyleSheet>& sheets() { return m_sheets; }
|
2021-03-08 11:22:18 +01:00
|
|
|
|
|
|
|
RefPtr<CSSStyleSheet> item(size_t index) const
|
|
|
|
{
|
|
|
|
if (index >= m_sheets.size())
|
|
|
|
return {};
|
|
|
|
return m_sheets[index];
|
|
|
|
}
|
2020-06-04 16:06:32 +02:00
|
|
|
|
2021-03-08 11:22:18 +01:00
|
|
|
size_t length() const { return m_sheets.size(); }
|
2020-06-04 16:06:32 +02:00
|
|
|
|
2021-09-29 13:03:09 +01:00
|
|
|
bool is_supported_property_index(u32) const;
|
|
|
|
|
2022-03-09 19:57:15 +01:00
|
|
|
DOM::Document& document() { return m_document; }
|
|
|
|
DOM::Document const& document() const { return m_document; }
|
|
|
|
|
2020-06-04 16:06:32 +02:00
|
|
|
private:
|
2020-07-26 19:37:56 +02:00
|
|
|
explicit StyleSheetList(DOM::Document&);
|
2020-06-04 16:06:32 +02:00
|
|
|
|
2020-07-26 19:37:56 +02:00
|
|
|
DOM::Document& m_document;
|
2021-03-08 11:22:18 +01:00
|
|
|
NonnullRefPtrVector<CSSStyleSheet> m_sheets;
|
2020-06-04 16:06:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2021-03-08 11:22:18 +01:00
|
|
|
|
|
|
|
namespace Web::Bindings {
|
|
|
|
|
2022-08-22 18:31:08 +01:00
|
|
|
StyleSheetListWrapper* wrap(JS::Realm&, CSS::StyleSheetList&);
|
2021-03-08 11:22:18 +01:00
|
|
|
|
|
|
|
}
|