Home | History | Annotate | Download | only in page

Lines Matching refs:pageHeight

76     float pageHeight;
80 pageHeight = floorf(pageWidth * ratio);
83 pageHeight = view->docHeight();
84 pageWidth = floorf(pageHeight * ratio);
87 outPageHeight = pageHeight; // this is the height of the page adjusted by margins
88 pageHeight -= headerHeight + footerHeight;
90 if (pageHeight <= 0) {
91 LOG_ERROR("pageHeight has bad value %.2f", pageHeight);
95 computePageRectsWithPageSizeInternal(FloatSize(pageWidth / userScaleFactor, pageHeight / userScaleFactor), allowHorizontalTiling);
114 int pageHeight = pageSizeInPixels.height();
119 int pageLogicalHeight = isHorizontal ? pageHeight : pageWidth;
120 int pageLogicalWidth = isHorizontal ? pageWidth : pageHeight;
338 float pageHeight;
339 printContext.computePageRects(FloatRect(FloatPoint(0, 0), pageSizeInPixels), 0, 0, 1, pageHeight);