43 lines
981 B
C++
43 lines
981 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <LibWeb/CSS/CSSStyleSheet.h>
|
|
#include <LibWeb/DOM/Document.h>
|
|
#include <LibWeb/DOM/DocumentLoadEventDelayer.h>
|
|
#include <LibWeb/Loader/Resource.h>
|
|
|
|
namespace Web {
|
|
|
|
class CSSLoader : public ResourceClient {
|
|
public:
|
|
explicit CSSLoader(DOM::Element& owner_element);
|
|
|
|
void load_from_text(const String&);
|
|
void load_from_url(const AK::URL&);
|
|
|
|
void load_next_import_if_needed();
|
|
|
|
RefPtr<CSS::CSSStyleSheet> style_sheet() const { return m_style_sheet; };
|
|
|
|
Function<void()> on_load;
|
|
Function<void()> on_fail;
|
|
|
|
private:
|
|
// ^ResourceClient
|
|
virtual void resource_did_load() override;
|
|
virtual void resource_did_fail() override;
|
|
|
|
DOM::Element& m_owner_element;
|
|
|
|
RefPtr<CSS::CSSStyleSheet> m_style_sheet;
|
|
|
|
Optional<DOM::DocumentLoadEventDelayer> m_document_load_event_delayer;
|
|
};
|
|
|
|
}
|