summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/FormAssociatedElement.h
blob: 4571f3008bbad1b8f52e4b79f57256410300e534 (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
/*
 * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/WeakPtr.h>
#include <LibWeb/Forward.h>
#include <LibWeb/HTML/HTMLElement.h>

namespace Web::HTML {

class FormAssociatedElement : public HTMLElement {
public:
    HTMLFormElement* form() { return m_form; }
    HTMLFormElement const* form() const { return m_form; }

    void set_form(HTMLFormElement*);

protected:
    FormAssociatedElement(DOM::Document& document, DOM::QualifiedName qualified_name)
        : HTMLElement(document, move(qualified_name))
    {
    }

    virtual ~FormAssociatedElement() = default;

private:
    WeakPtr<HTMLFormElement> m_form;
};

}