2019-06-20 23:25:25 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-09-06 15:34:26 +02:00
|
|
|
#include <AK/String.h>
|
2019-06-20 23:25:25 +02:00
|
|
|
#include <LibHTML/CSS/StyleValue.h>
|
|
|
|
|
2019-09-30 20:06:17 +02:00
|
|
|
struct StyleProperty {
|
2019-10-08 15:34:19 +02:00
|
|
|
CSS::PropertyID property_id;
|
2019-09-30 20:06:17 +02:00
|
|
|
NonnullRefPtr<StyleValue> value;
|
2019-10-06 09:28:10 +02:00
|
|
|
bool important { false };
|
2019-09-30 20:06:17 +02:00
|
|
|
};
|
|
|
|
|
2019-06-21 19:19:49 +02:00
|
|
|
class StyleDeclaration : public RefCounted<StyleDeclaration> {
|
2019-06-20 23:25:25 +02:00
|
|
|
public:
|
2019-09-30 20:06:17 +02:00
|
|
|
static NonnullRefPtr<StyleDeclaration> create(Vector<StyleProperty>&& properties)
|
2019-06-21 19:19:49 +02:00
|
|
|
{
|
2019-09-30 20:06:17 +02:00
|
|
|
return adopt(*new StyleDeclaration(move(properties)));
|
2019-06-21 19:19:49 +02:00
|
|
|
}
|
|
|
|
|
2019-06-20 23:25:25 +02:00
|
|
|
~StyleDeclaration();
|
|
|
|
|
2019-09-30 20:06:17 +02:00
|
|
|
const Vector<StyleProperty>& properties() const { return m_properties; }
|
2019-06-20 23:25:25 +02:00
|
|
|
|
|
|
|
public:
|
2019-09-30 20:06:17 +02:00
|
|
|
explicit StyleDeclaration(Vector<StyleProperty>&&);
|
2019-06-21 19:19:49 +02:00
|
|
|
|
2019-09-30 20:06:17 +02:00
|
|
|
Vector<StyleProperty> m_properties;
|
2019-06-20 23:25:25 +02:00
|
|
|
};
|