summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Loader/CSSLoader.h
blob: b7ec77c4afe032bc8534b5266e898321b5cce6ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * 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/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 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;
};

}