Searched refs:headerHeight (Results 1 - 25 of 33) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/page/win/
H A DFrameWin.cpp42 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight) argument
46 printContext.computePageRects(printRect, headerHeight, footerHeight, userScaleFactor, pageHeight);
H A DFrameWin.h40 void computePageRectsForFrame(Frame*, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight);
/macosx-10.9.5/WebCore-7537.78.1/page/wince/
H A DFrameWinCE.cpp56 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& pages, int& outPageHeight) argument
78 pageHeight -= (headerHeight + footerHeight);
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DPrintContext.h47 void computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight, bool allowHorizontalTiling = false);
H A DPrintContext.cpp58 void PrintContext::computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight, bool allowHorizontalTiling) argument
78 pageHeight -= headerHeight + footerHeight;
H A DFrameView.h231 static IntSize scrollOffsetForFixedPosition(const IntRect& visibleContentRect, const IntSize& totalContentsSize, const IntPoint& scrollPosition, const IntPoint& scrollOrigin, float frameScaleFactor, bool fixedElementsLayoutRelativeToFrame, int headerHeight, int footerHeight);
414 virtual int headerHeight() const OVERRIDE { return m_headerHeight; }
H A DPage.h370 int headerHeight() const { return m_headerHeight; } function in class:WebCore::Page
/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/
H A DScrollingStateScrollingNode.cpp79 , m_headerHeight(stateNode.headerHeight())
235 void ScrollingStateScrollingNode::setHeaderHeight(int headerHeight) argument
237 if (m_headerHeight == headerHeight)
240 m_headerHeight = headerHeight;
H A DScrollingTreeScrollingNode.cpp92 m_headerHeight = state->headerHeight();
H A DScrollingTreeScrollingNode.h76 int headerHeight() const { return m_headerHeight; } function in class:WebCore::ScrollingTreeScrollingNode
H A DScrollingStateScrollingNode.h114 int headerHeight() const { return m_headerHeight; } function in class:WebCore::ScrollingStateScrollingNode
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DScrollableArea.cpp393 totalContentsSize.setHeight(totalContentsSize.height() + headerHeight() + footerHeight());
415 IntPoint ScrollableArea::constrainScrollPositionForOverhang(const IntRect& visibleContentRect, const IntSize& totalContentsSize, const IntPoint& scrollPosition, const IntPoint& scrollOrigin, int headerHeight, int footerHeight) argument
420 IntRect scrollRect(scrollPosition + scrollOrigin - IntSize(0, headerHeight), idealScrollRectSize);
421 IntRect documentRect(IntPoint(), IntSize(totalContentsSize.width(), totalContentsSize.height() - headerHeight - footerHeight));
443 return constrainScrollPositionForOverhang(visibleContentRect(), totalContentsSize(), scrollPosition, scrollOrigin(), headerHeight(), footerHeight());
H A DScrollableArea.h150 virtual int headerHeight() const { return 0; } function in class:WebCore::ScrollableArea
176 static IntPoint constrainScrollPositionForOverhang(const IntRect& visibleContentRect, const IntSize& totalContentsSize, const IntPoint& scrollPosition, const IntPoint& scrollOrigin, int headerHeight, int footetHeight);
H A DScrollView.cpp334 return IntSize(scrollOffset.width(), scrollOffset.height() - headerHeight());
340 return IntPoint(scrollPosition.x(), scrollPosition.y() - headerHeight());
723 IntPoint viewPoint = contentsPoint + IntSize(0, headerHeight()) - scrollOffset();
737 viewRect.move(-scrollOffset() + IntSize(0, headerHeight()));
761 IntPoint viewPoint = contentsPoint + IntSize(0, headerHeight()) - scrollOffset();
781 viewRect.move(-scrollOffset() + IntSize(0, headerHeight()));
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebFrame.cpp1533 void WebFrame::headerAndFooterHeights(float* headerHeight, float* footerHeight) argument
1535 if (headerHeight)
1536 *headerHeight = 0;
1543 if (headerHeight && SUCCEEDED(ui->webViewHeaderHeight(d->webView, &height)))
1544 *headerHeight = height;
1581 float headerHeight = 0, footerHeight = 0; local
1582 headerAndFooterHeights(&headerHeight, &footerHeight);
1591 computePageRectsForFrame(coreFrame, adjustedRect, headerHeight, footerHeight, 1.0,m_pageRects, m_pageHeight);
1623 void WebFrame::drawHeader(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, float headerHeight) argument
1627 RECT headerRect = {x, y, x+pageRect.width(), y+static_cast<int>(headerHeight)};
1631 drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight) argument
1639 spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount) argument
1699 drawHeader(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, float headerHeight) argument
1710 drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight) argument
1736 spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount) argument
1897 float headerHeight = 0, footerHeight = 0; local
[all...]
H A DWebFrame.h334 void spoolPage (PlatformGraphicsContext* pctx, WebCore::GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate*, float headerHeight, float footerHeight, UINT page, UINT pageCount);
335 void drawHeader(PlatformGraphicsContext* pctx, IWebUIDelegate*, const WebCore::IntRect& pageRect, float headerHeight);
336 void drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate*, const WebCore::IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight);
/macosx-10.9.5/WebCore-7537.78.1/page/scrolling/mac/
H A DScrollingCoordinatorMac.h120 int headerHeight; member in struct:WebCore::ScrollingCoordinatorMac::ScrollParameters
H A DScrollingCoordinatorMac.mm167 scrollParameters.headerHeight = frameView->headerHeight();
321 node->setHeaderHeight(scrollParameters.headerHeight);
H A DScrollingTreeScrollingNodeMac.mm328 IntSize scrollOffsetForFixedChildren = FrameView::scrollOffsetForFixedPosition(viewportRect(), totalContentsSize(), scrollOffset, scrollOrigin(), frameScaleFactor(), false, headerHeight(), footerHeight());
337 horizontalScrollOffsetForBanner = FrameView::scrollOffsetForFixedPosition(viewportRect(), totalContentsSize(), scrollOffset, scrollOrigin(), 1, false, headerHeight(), footerHeight()).width();
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebUIClient.h108 float headerHeight(WebPageProxy*, WebFrameProxy*);
H A DWebUIClient.cpp368 float WebUIClient::headerHeight(WebPageProxy* page, WebFrameProxy* frame) function in class:WebKit::WebUIClient
370 if (!m_client.headerHeight)
373 return m_client.headerHeight(toAPI(page), toAPI(frame), m_client.clientInfo);
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeColumn.c650 tree->headerHeight = -1;
2298 tree->headerHeight = -1;
2367 tree->headerHeight = tree->widthOfColumns = -1;
4034 tree->widthOfColumns = tree->headerHeight = -1;
4098 tree->widthOfColumns = tree->headerHeight = -1;
4403 int height = tree->headerHeight;
4528 int height = tree->headerHeight;
4679 int height = tree->headerHeight;
4755 x, y, 2, tree->headerHeight);
4768 int height = tree->headerHeight;
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitwebframe.cpp905 float headerHeight = 0; local
908 printContext->computePageRects(printRect, headerHeight, footerHeight, 1.0, pageHeight);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DTimelinePanel.js1042 var headerHeight = this._headerLineCount * WebInspector.TimelinePanel.rowHeight;
1043 this.sidebarElement.firstChild.style.height = headerHeight + "px";
1044 this._timelineGrid.dividersLabelBarElement.style.height = headerHeight + headerMargin + "px";
1045 this._itemsGraphsElement.style.top = headerHeight + headerBorderWidth + "px";
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKPrintingView.mm152 [info setTopMargin:originalTopMargin + _webFrame->page()->headerHeight(_webFrame.get()) * scale];
589 NSRect headerRect = NSMakeRect(headerFooterLeft, (paperSize.height - [printInfo topMargin]) / scale, headerFooterWidth, _webFrame->page()->headerHeight(_webFrame.get()));

Completed in 336 milliseconds

12