Home | History | Annotate | Download | only in win

Lines Matching refs:footerHeight

2027 void WebFrame::headerAndFooterHeights(float* headerHeight, float* footerHeight)
2031 if (footerHeight)
2032 *footerHeight = 0;
2039 if (footerHeight && SUCCEEDED(ui->webViewFooterHeight(d->webView, &height)))
2040 *footerHeight = height;
2075 float headerHeight = 0, footerHeight = 0;
2076 headerAndFooterHeights(&headerHeight, &footerHeight);
2085 computePageRectsForFrame(coreFrame, adjustedRect, headerHeight, footerHeight, 1.0,m_pageRects, m_pageHeight);
2125 void WebFrame::drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight)
2128 int y = max((int)headerHeight+pageRect.height(), m_pageHeight-static_cast<int>(footerHeight));
2129 RECT footerRect = {x, y, x+pageRect.width(), y+static_cast<int>(footerHeight)};
2133 void WebFrame::spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount)
2164 if (footerHeight)
2165 drawFooter(pctx, ui, pageRect, page, pageCount, headerHeight, footerHeight);
2204 void WebFrame::drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight)
2209 int y = max(static_cast<int>(headerHeight) + pageRect.height(), m_pageHeight -static_cast<int>(footerHeight));
2210 RECT footerRect = {x, y, x + pageRect.width(), y + static_cast<int>(footerHeight)};
2230 void WebFrame::spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount)
2284 if (footerHeight)
2285 drawFooter(pctx, ui, pageRect, page, pageCount, headerHeight, footerHeight);
2391 float headerHeight = 0, footerHeight = 0;
2392 headerAndFooterHeights(&headerHeight, &footerHeight);
2397 spoolPage(pctx, &spoolCtx, printDC, ui.get(), headerHeight, footerHeight, ii, pageCount);