4litehtml::background::background(
void)
6 m_attachment = background_attachment_scroll;
7 m_repeat = background_repeat_repeat;
8 m_clip = background_box_border;
9 m_origin = background_box_padding;
16litehtml::background::background(
const background& val )
18 m_image = val.m_image;
19 m_baseurl = val.m_baseurl;
20 m_color = val.m_color;
21 m_attachment = val.m_attachment;
22 m_position = val.m_position;
23 m_repeat = val.m_repeat;
25 m_origin = val.m_origin;
28litehtml::background::~background(
void)
34 m_image = val.m_image;
35 m_baseurl = val.m_baseurl;
36 m_color = val.m_color;
37 m_attachment = val.m_attachment;
38 m_position = val.m_position;
39 m_repeat = val.m_repeat;
41 m_origin = val.m_origin;
46litehtml::background_paint::background_paint() : color(0, 0, 0, 0)
50 attachment = background_attachment_scroll;
51 repeat = background_repeat_repeat;
55litehtml::background_paint::background_paint(
const background_paint& val )
58 baseurl = val.baseurl;
59 attachment = val.attachment;
62 clip_box = val.clip_box;
63 origin_box = val.origin_box;
64 border_box = val.border_box;
65 border_radius = val.border_radius;
66 image_size = val.image_size;
67 position_x = val.position_x;
68 position_y = val.position_y;
69 is_root = val.is_root;
72void litehtml::background_paint::operator=(
const background& val )
74 attachment = val.m_attachment;
75 baseurl = val.m_baseurl;
77 repeat = val.m_repeat;