Lines Matching refs:rect
67 HRESULT PrintWebUIDelegate::webViewPrintingMarginRect(IWebView* view, RECT* rect) in webViewPrintingMarginRect() argument
69 if (!view || !rect) in webViewPrintingMarginRect()
82 privateFrame->frameBounds(rect); in webViewPrintingMarginRect()
84 rect->left += MARGIN; in webViewPrintingMarginRect()
85 rect->top += MARGIN; in webViewPrintingMarginRect()
87 rect->right = (::GetDeviceCaps(dc, LOGPIXELSX) * 6.5) - MARGIN; in webViewPrintingMarginRect()
88 rect->bottom = (::GetDeviceCaps(dc, LOGPIXELSY) * 11) - MARGIN; in webViewPrintingMarginRect()
131 /* [in] */ RECT* rect, in drawHeaderInRect() argument
134 if (!webView || !rect) in drawHeaderInRect()
146 … int rc = ::DrawTextW(dc, header, length, rect, DT_LEFT | DT_NOCLIP | DT_VCENTER | DT_SINGLELINE); in drawHeaderInRect()
152 ::MoveToEx(dc, rect->left, rect->bottom, 0); in drawHeaderInRect()
155 ::LineTo(dc, rect->right, rect->bottom); in drawHeaderInRect()
163 /* [in] */ RECT* rect, in drawFooterInRect() argument
168 if (!webView || !rect) in drawFooterInRect()
180 ::MoveToEx(dc, rect->left, rect->top, 0); in drawFooterInRect()
183 ::LineTo(dc, rect->right, rect->top); in drawFooterInRect()
186 … int rc = ::DrawTextW(dc, footer, length, rect, DT_LEFT | DT_NOCLIP | DT_VCENTER | DT_SINGLELINE); in drawFooterInRect()