summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/Text.h
blob: 8c7e9f38a9a904d5551138e6cc9a22bd28b4c682 (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
40
41
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/FlyString.h>
#include <AK/String.h>
#include <LibWeb/DOM/CharacterData.h>

namespace Web::DOM {

class Text final : public CharacterData {
public:
    using WrapperType = Bindings::TextWrapper;

    explicit Text(Document&, const String&);
    virtual ~Text() override = default;

    static NonnullRefPtr<Text> create_with_global_object(Bindings::WindowObject& window, String const& data);

    // ^Node
    virtual FlyString node_name() const override { return "#text"; }
    virtual bool is_editable() const override { return m_always_editable || CharacterData::is_editable(); }

    void set_always_editable(bool b) { m_always_editable = b; }

    void set_owner_input_element(Badge<HTML::HTMLInputElement>, HTML::HTMLInputElement&);
    HTML::HTMLInputElement* owner_input_element() { return m_owner_input_element; }

    ExceptionOr<NonnullRefPtr<Text>> split_text(size_t offset);

private:
    WeakPtr<HTML::HTMLInputElement> m_owner_input_element;

    bool m_always_editable { false };
};

}