int ysizeup = 0, ysizedown = 0;
/*
-
+
WIDTH ADJUSTING :
-
+
*/
if (m_WidthFloatUnits == HTML_UNITS_PERCENT) {
/*
LAYOUTING :
-
+
*/
// adjust indentation:
s_width = m_Width - s_indent - ((m_IndentRight < 0) ? (-m_IndentRight * m_Width / 100) : m_IndentRight);
m_MaxLineWidth = 0;
-
+
// my own layouting:
while (cell != NULL) {
switch (m_AlignVer) {
const wxHtmlCell* wxHtmlContainerCell::Find(int condition, const void* param) const
{
const wxHtmlCell *r = NULL;
-
+
if (m_Cells) {
r = m_Cells -> Find(condition, param);
if (r) return r;
c = c -> GetParent();
}
-/*
+#ifdef __WXMSW__
((wxScrolledWindow*)(m_Wnd -> GetParent())) -> ViewStart(&stx, &sty);
m_Wnd -> SetSize(absx - HTML_SCROLL_STEP * stx, absy - HTML_SCROLL_STEP * sty, m_Width, m_Height);
-*/
+#else
m_Wnd -> SetSize(absx, absy, m_Width, m_Height);
+#endif
wxHtmlCell::Draw(dc, x, y, view_y1, view_y2);
}
absy += c -> GetPosY();
c = c -> GetParent();
}
-
-/*
+
+#ifdef __WXMSW__
((wxScrolledWindow*)(m_Wnd -> GetParent())) -> ViewStart(&stx, &sty);
m_Wnd -> SetSize(absx - HTML_SCROLL_STEP * stx, absy - HTML_SCROLL_STEP * sty, m_Width, m_Height);
-*/
+#else
m_Wnd -> SetSize(absx, absy, m_Width, m_Height);
-
+#endif
wxHtmlCell::DrawInvisible(dc, x, y);
}