Searched refs:printDC (Results 1 - 4 of 4) sorted by relevance
/external/webkit/Tools/WinLauncher/ |
H A D | WinLauncher.cpp | 328 HDC printDC = getPrinterDC(); local 329 if (!printDC) { 334 if (::SetAbortProc(printDC, AbortProc) == SP_ERROR) { 347 framePrivate->setInPrintingMode(TRUE, printDC); 350 framePrivate->getPrintedPageCount(printDC, &pageCount); 354 ::StartDoc(printDC, &di); 359 ::StartPage(printDC); 360 framePrivate->spoolPages(printDC, page, page, graphicsContext); 361 ::EndPage(printDC); 364 framePrivate->setInPrintingMode(FALSE, printDC); [all...] |
/external/webkit/Source/WebKit/win/Interfaces/ |
H A D | IWebFramePrivate.idl | 66 HRESULT setInPrintingMode([in] BOOL value, [in] HDC printDC); 67 HRESULT getPrintedPageCount([in] HDC printDC, [out, retval] UINT* pageCount); 68 [local] HRESULT spoolPages([in] HDC printDC, [in] UINT startPage, [in] UINT endPage, [out, retval] void* ctx);
|
/external/webkit/Source/WebKit/win/ |
H A D | WebFrame.cpp | 1970 static IntRect printerRect(HDC printDC) argument 1973 GetDeviceCaps(printDC, PHYSICALWIDTH) - 2 * GetDeviceCaps(printDC, PHYSICALOFFSETX), 1974 GetDeviceCaps(printDC, PHYSICALHEIGHT) - 2 * GetDeviceCaps(printDC, PHYSICALOFFSETY)); 1986 /* [in] */ HDC printDC) 2003 if (!printDC) { 2009 IntRect printRect = printerRect(printDC); 2010 int paperHorizontalPixelsPerInch = ::GetDeviceCaps(printDC, LOGPIXELSX); 2012 int paperVerticalPixelsPerInch = ::GetDeviceCaps(printDC, LOGPIXELS 1984 setInPrintingMode( BOOL value, HDC printDC) argument 2043 printerMarginRect(HDC printDC) argument 2063 computePageRects(HDC printDC) argument 2090 getPrintedPageCount( HDC printDC, UINT *pageCount) argument 2133 spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount) argument 2171 scaleFactor(HDC printDC, const IntRect& marginRect, const IntRect& pageRect) argument 2230 spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount) argument 2317 spoolPages( HDC printDC, UINT startPage, UINT endPage, void* ctx) argument [all...] |
H A D | WebFrame.h | 195 /* [in] */ HDC printDC); 198 /* [in] */ HDC printDC, 202 /* [in] */ HDC printDC, 389 const Vector<WebCore::IntRect>& computePageRects(HDC printDC); 393 void spoolPage (PlatformGraphicsContext* pctx, WebCore::GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate*, float headerHeight, float footerHeight, UINT page, UINT pageCount);
|
Completed in 110 milliseconds