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
82
83
84
85
|
#include "html.h"
#include "el_image.h"
#include "render_image.h"
litehtml::el_image::el_image(const document::ptr& doc) : html_tag(doc)
{
m_css.set_display(display_inline_block);
}
void litehtml::el_image::get_content_size( size& sz, int /*max_width*/ )
{
get_document()->container()->get_image_size(m_src.c_str(), nullptr, sz);
}
bool litehtml::el_image::is_replaced() const
{
return true;
}
void litehtml::el_image::parse_attributes()
{
m_src = get_attr("src", "");
// https://html.spec.whatwg.org/multipage/rendering.html#attributes-for-embedded-content-and-images:the-img-element-5
const char* str = get_attr("width");
if (str)
map_to_dimension_property(_width_, str);
str = get_attr("height");
if (str)
map_to_dimension_property(_height_, str);
}
void litehtml::el_image::draw(uint_ptr hdc, int x, int y, const position *clip, const std::shared_ptr<render_item> &ri)
{
html_tag::draw(hdc, x, y, clip, ri);
position pos = ri->pos();
pos.x += x;
pos.y += y;
// draw image as background
if(pos.does_intersect(clip))
{
if (pos.width > 0 && pos.height > 0)
{
background_layer layer;
layer.clip_box = pos;
layer.origin_box = pos;
layer.border_box = pos;
layer.border_box += ri->get_paddings();
layer.border_box += ri->get_borders();
layer.repeat = background_repeat_no_repeat;
layer.border_radius = css().get_borders().radius.calc_percents(layer.border_box.width, layer.border_box.height);
get_document()->container()->draw_image(hdc, layer, m_src, {});
}
}
}
void litehtml::el_image::compute_styles(bool recursive)
{
html_tag::compute_styles(recursive);
if(!m_src.empty())
{
if(!css().get_height().is_predefined() && !css().get_width().is_predefined())
{
get_document()->container()->load_image(m_src.c_str(), nullptr, true);
} else
{
get_document()->container()->load_image(m_src.c_str(), nullptr, false);
}
}
}
litehtml::string litehtml::el_image::dump_get_name()
{
return "img src=\"" + m_src + "\"";
}
std::shared_ptr<litehtml::render_item> litehtml::el_image::create_render_item(const std::shared_ptr<render_item>& parent_ri)
{
auto ret = std::make_shared<render_item_image>(shared_from_this());
ret->parent(parent_ri);
return ret;
}
|