2021-02-21 18:36:34 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
2021-11-18 17:34:53 +00:00
|
|
|
* Copyright (c) 2021, Sam Atkins <atkinssj@serenityos.org>
|
2021-02-21 18:36:34 +02:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-02-21 18:36:34 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/URL.h>
|
|
|
|
#include <LibWeb/CSS/CSSRule.h>
|
2021-09-30 22:57:35 +02:00
|
|
|
#include <LibWeb/CSS/CSSStyleSheet.h>
|
2021-11-18 17:34:53 +00:00
|
|
|
#include <LibWeb/DOM/DocumentLoadEventDelayer.h>
|
2021-02-21 18:36:34 +02:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
2021-11-18 17:34:53 +00:00
|
|
|
class CSSImportRule
|
|
|
|
: public CSSRule
|
|
|
|
, public ResourceClient {
|
2021-02-21 18:36:34 +02:00
|
|
|
AK_MAKE_NONCOPYABLE(CSSImportRule);
|
|
|
|
AK_MAKE_NONMOVABLE(CSSImportRule);
|
|
|
|
|
|
|
|
public:
|
2021-11-18 17:34:53 +00:00
|
|
|
static NonnullRefPtr<CSSImportRule> create(AK::URL url, DOM::Document& document)
|
2021-02-21 18:36:34 +02:00
|
|
|
{
|
2021-11-18 17:34:53 +00:00
|
|
|
return adopt_ref(*new CSSImportRule(move(url), document));
|
2021-02-21 18:36:34 +02:00
|
|
|
}
|
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
~CSSImportRule() = default;
|
2021-02-21 18:36:34 +02:00
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
const AK::URL& url() const { return m_url; }
|
2021-02-21 18:36:34 +02:00
|
|
|
|
2021-02-21 18:44:17 +02:00
|
|
|
bool has_import_result() const { return !m_style_sheet.is_null(); }
|
2021-03-07 16:14:04 +01:00
|
|
|
RefPtr<CSSStyleSheet> loaded_style_sheet() { return m_style_sheet; }
|
|
|
|
const RefPtr<CSSStyleSheet> loaded_style_sheet() const { return m_style_sheet; }
|
2021-04-03 11:55:37 +02:00
|
|
|
void set_style_sheet(const RefPtr<CSSStyleSheet>& style_sheet) { m_style_sheet = style_sheet; }
|
2021-02-21 18:44:17 +02:00
|
|
|
|
2021-12-04 10:09:09 +01:00
|
|
|
virtual StringView class_name() const override { return "CSSImportRule"; };
|
|
|
|
virtual Type type() const override { return Type::Import; };
|
2021-02-21 18:36:34 +02:00
|
|
|
|
|
|
|
private:
|
2021-11-18 17:34:53 +00:00
|
|
|
explicit CSSImportRule(AK::URL, DOM::Document&);
|
2021-02-21 18:36:34 +02:00
|
|
|
|
2021-10-01 19:57:45 +02:00
|
|
|
virtual String serialized() const override;
|
|
|
|
|
2021-11-18 17:34:53 +00:00
|
|
|
// ^ResourceClient
|
|
|
|
virtual void resource_did_fail() override;
|
|
|
|
virtual void resource_did_load() override;
|
|
|
|
|
2021-09-13 00:33:23 +03:00
|
|
|
AK::URL m_url;
|
2021-12-05 15:28:38 +01:00
|
|
|
WeakPtr<DOM::Document> m_document;
|
2021-11-18 17:34:53 +00:00
|
|
|
Optional<DOM::DocumentLoadEventDelayer> m_document_load_event_delayer;
|
2021-03-07 16:14:04 +01:00
|
|
|
RefPtr<CSSStyleSheet> m_style_sheet;
|
2021-02-21 18:36:34 +02:00
|
|
|
};
|
|
|
|
|
2021-03-18 21:50:52 +01:00
|
|
|
template<>
|
|
|
|
inline bool CSSRule::fast_is<CSSImportRule>() const { return type() == CSSRule::Type::Import; }
|
|
|
|
|
2021-02-21 18:36:34 +02:00
|
|
|
}
|