OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:horizontalOverhangRect
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp
907
void ScrollView::calculateOverhangAreasForPainting(IntRect&
horizontalOverhangRect
, IntRect& verticalOverhangRect)
916
horizontalOverhangRect
= frameRect();
917
horizontalOverhangRect
.setHeight(-physicalScrollY);
918
horizontalOverhangRect
.setWidth(
horizontalOverhangRect
.width() - verticalScrollbarWidth)
[
all
...]
ScrollbarThemeMacCommon.mm
132
void ScrollbarThemeMacCommon::paintOverhangBackground(GraphicsContext* context, const IntRect&
horizontalOverhangRect
, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
134
const bool hasHorizontalOverhang = !
horizontalOverhangRect
.isEmpty();
146
context->fillRect(intersection(
horizontalOverhangRect
, dirtyRect));
151
void ScrollbarThemeMacCommon::paintOverhangShadows(GraphicsContext* context, const IntSize& scrollOffset, const IntRect&
horizontalOverhangRect
, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
170
const bool hasHorizontalOverhang = !
horizontalOverhangRect
.isEmpty();
184
IntRect shadowRect =
horizontalOverhangRect
;
188
toolbarShadowHeight = std::min(
horizontalOverhangRect
.height(), kShadowSize);
189
} else if (
horizontalOverhangRect
.height() < 2 * kShadowSize + kToolbarShadowOffset) {
191
shadowRect.setHeight((
horizontalOverhangRect
.height() + 1) / 2);
192
toolbarShadowHeight =
horizontalOverhangRect
.height() - shadowRect.height() - kToolbarShadowOffset
[
all
...]
ScrollbarTheme.cpp
217
void ScrollbarTheme::paintOverhangBackground(GraphicsContext* context, const IntRect&
horizontalOverhangRect
, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
220
if (!
horizontalOverhangRect
.isEmpty())
221
context->fillRect(intersection(
horizontalOverhangRect
, dirtyRect));
ScrollView.h
341
void calculateOverhangAreasForPainting(IntRect&
horizontalOverhangRect
, IntRect& verticalOverhangRect);
Completed in 67 milliseconds