blob: 0ace94b7d3aa3d19eb6ef8eb79a0322b23eb6585 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
* Copyright (c) 2022, kleines Filmröllchen <filmroellchen@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibGfx/Color.h>
#include <LibGfx/Font/FontDatabase.h>
#include <LibGfx/Rect.h>
class Presentation;
struct HTMLElement {
StringView tag_name;
HashMap<StringView, DeprecatedString> attributes;
HashMap<StringView, DeprecatedString> style;
DeprecatedString inner_text;
Vector<HTMLElement> children;
ErrorOr<void> serialize(StringBuilder&) const;
};
// Anything that can be on a slide.
class SlideObject : public RefCounted<SlideObject> {
public:
virtual ~SlideObject() = default;
static ErrorOr<NonnullRefPtr<SlideObject>> parse_slide_object(JsonObject const& slide_object_json);
virtual ErrorOr<HTMLElement> render(Presentation const&) const = 0;
protected:
SlideObject() = default;
virtual void set_property(StringView name, JsonValue);
HashMap<DeprecatedString, JsonValue> m_properties;
Gfx::IntRect m_rect;
};
// Objects with a foreground color.
class GraphicsObject : public SlideObject {
public:
virtual ~GraphicsObject() = default;
protected:
GraphicsObject() = default;
virtual void set_property(StringView name, JsonValue) override;
// FIXME: Change the default color based on the color scheme
Gfx::Color m_color { Gfx::Color::Black };
};
class Text final : public GraphicsObject {
public:
Text() = default;
virtual ~Text() = default;
private:
virtual ErrorOr<HTMLElement> render(Presentation const&) const override;
virtual void set_property(StringView name, JsonValue) override;
DeprecatedString m_text;
DeprecatedString m_font_family;
DeprecatedString m_text_align;
float m_font_size_in_pt { 18 };
unsigned m_font_weight { Gfx::FontWeight::Regular };
};
class Image final : public SlideObject {
public:
Image() = default;
virtual ~Image() = default;
private:
DeprecatedString m_src;
StringView m_image_rendering;
virtual ErrorOr<HTMLElement> render(Presentation const&) const override;
virtual void set_property(StringView name, JsonValue) override;
};
|