Home | History | Annotate | Download | only in win

Lines Matching refs:pageCount

2092     /* [retval][out] */ UINT *pageCount)
2094 if (!pageCount || !printDC) {
2099 *pageCount = 0;
2111 *pageCount = (UINT) pages.size();
2125 void WebFrame::drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight)
2130 ui->drawFooterInRect(d->webView, &footerRect, static_cast<OLE_HANDLE>(reinterpret_cast<LONG64>(pctx)), page+1, pageCount);
2133 void WebFrame::spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount)
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)
2212 ui->drawFooterInRect(d->webView, &footerRect, static_cast<OLE_HANDLE>(reinterpret_cast<LONG64>(hdc)), page+1, pageCount);
2230 void WebFrame::spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount)
2285 drawFooter(pctx, ui, pageRect, page, pageCount, headerHeight, footerHeight);
2371 UINT pageCount = (UINT) m_pageRects.size();
2376 if (!pageCount || startPage > pageCount) {
2385 endPage = pageCount;
2397 spoolPage(pctx, &spoolCtx, printDC, ui.get(), headerHeight, footerHeight, ii, pageCount);