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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
|
#include "html.h"
#include "render_image.h"
#include "document.h"
int litehtml::render_item_image::_render(int x, int y, const containing_block_context &containing_block_size, formatting_context* fmt_ctx, bool second_pass)
{
int parent_width = containing_block_size.width;
containing_block_context self_size = calculate_containing_block_context(containing_block_size);
calc_outlines(parent_width);
m_pos.move_to(x, y);
document::ptr doc = src_el()->get_document();
litehtml::size sz;
src_el()->get_content_size(sz, containing_block_size.width);
m_pos.width = sz.width;
m_pos.height = sz.height;
src_el()->css_w().set_line_height(height());
if(src_el()->css().get_height().is_predefined() && src_el()->css().get_width().is_predefined())
{
m_pos.height = sz.height;
m_pos.width = sz.width;
// check for max-width
if(!src_el()->css().get_max_width().is_predefined())
{
int max_width = doc->to_pixels(src_el()->css().get_max_width(), src_el()->css().get_font_size(), parent_width);
if(m_pos.width > max_width)
{
m_pos.width = max_width;
}
if(sz.width)
{
m_pos.height = (int) ((float) m_pos.width * (float) sz.height / (float)sz.width);
} else
{
m_pos.height = sz.height;
}
}
// check for max-height
if(!src_el()->css().get_max_height().is_predefined())
{
int max_height = calc_max_height(sz.height, containing_block_size.height);
if(m_pos.height > max_height)
{
m_pos.height = max_height;
}
if(sz.height)
{
m_pos.width = (int) ((float )m_pos.height * (float)sz.width / (float)sz.height);
} else
{
m_pos.width = sz.width;
}
}
} else if(!src_el()->css().get_height().is_predefined() && src_el()->css().get_width().is_predefined())
{
if(self_size.height.type != containing_block_context::cbc_value_type_auto && self_size.height > 0)
{
m_pos.height = self_size.height;
}
// check for max-height
if(!src_el()->css().get_max_height().is_predefined())
{
int max_height = calc_max_height(sz.height, containing_block_size.height);
if(m_pos.height > max_height)
{
m_pos.height = max_height;
}
}
if(sz.height)
{
m_pos.width = (int) ((float )m_pos.height * (float)sz.width / (float)sz.height);
} else
{
m_pos.width = sz.width;
}
} else if(src_el()->css().get_height().is_predefined() && !src_el()->css().get_width().is_predefined())
{
m_pos.width = (int) src_el()->css().get_width().calc_percent(parent_width);
// check for max-width
if(!src_el()->css().get_max_width().is_predefined())
{
int max_width = doc->to_pixels(src_el()->css().get_max_width(), src_el()->css().get_font_size(), parent_width);
if(m_pos.width > max_width)
{
m_pos.width = max_width;
}
}
if(sz.width)
{
m_pos.height = (int) ((float) m_pos.width * (float) sz.height / (float)sz.width);
} else
{
m_pos.height = sz.height;
}
} else
{
m_pos.width = (int) src_el()->css().get_width().calc_percent(parent_width);
m_pos.height = 0;
if(self_size.height.type != containing_block_context::cbc_value_type_auto && self_size.height > 0)
{
m_pos.height = self_size.height;
}
// check for max-height
if(!src_el()->css().get_max_height().is_predefined())
{
int max_height = calc_max_height(sz.height, containing_block_size.height);
if(m_pos.height > max_height)
{
m_pos.height = max_height;
}
}
// check for max-height
if(!src_el()->css().get_max_width().is_predefined())
{
int max_width = doc->to_pixels(src_el()->css().get_max_width(), src_el()->css().get_font_size(), parent_width);
if(m_pos.width > max_width)
{
m_pos.width = max_width;
}
}
}
m_pos.x += content_offset_left();
m_pos.y += content_offset_top();
return m_pos.width + content_offset_left() + content_offset_right();
}
int litehtml::render_item_image::calc_max_height(int image_height, int containing_block_height)
{
document::ptr doc = src_el()->get_document();
return doc->to_pixels(src_el()->css().get_max_height(), src_el()->css().get_font_size(),
containing_block_height == 0 ? image_height : containing_block_height);
}
|