OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:widgetRect
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/chromium/
PopupMenuChromium.cpp
345
IntRect
widgetRect
;
353
widgetRect
= chromeClient->windowToScreen(IntRect(popupInitialCoordinate.x() + rightOffset, popupInitialCoordinate.y(), targetSize.width(), targetSize.height()));
359
if (m_listBox->m_popupClient->menuStyle().textDirection() == RTL &&
widgetRect
.x() < screen.x()) {
360
widgetRect
.setWidth(
widgetRect
.maxX() - screen.x());
361
widgetRect
.setX(screen.x());
362
} else if (
widgetRect
.maxX() > screen.maxX())
363
widgetRect
.setWidth(screen.maxX() -
widgetRect
.x());
367
if (
widgetRect
.maxY() > static_cast<int>(screen.maxY()))
[
all
...]
/external/webkit/Source/WebCore/rendering/
RenderThemeWin.cpp
624
RECT
widgetRect
= r;
626
DrawThemeBackground(theme, windowsContext.hdc(), themeData.m_part, themeData.m_state, &
widgetRect
, 0);
630
::DrawEdge(hdc, &
widgetRect
, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
632
::FillRect(hdc, &
widgetRect
, (HBRUSH)(COLOR_BTNFACE+1));
634
::FillRect(hdc, &
widgetRect
, (HBRUSH)(COLOR_WINDOW+1));
636
::DrawEdge(hdc, &
widgetRect
, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
637
::FillRect(hdc, &
widgetRect
, (HBRUSH)GetStockObject(GRAY_BRUSH));
642
::DrawEdge(hdc, &
widgetRect
, EDGE_RAISED, BF_RECT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
652
::SetBrushOrgEx(hdc, p.x +
widgetRect
.left, p.y +
widgetRect
.top, NULL)
[
all
...]
/external/webkit/Source/WebKit/mac/Plugins/
WebBaseNetscapePluginView.mm
981
IntRect
widgetRect
= renderer->absoluteClippedOverflowRect();
982
widgetRect
= frameView->contentsToWindow(
widgetRect
);
983
return intersection(toRenderWidget(renderer)->windowClipRect(),
widgetRect
);
Completed in 1835 milliseconds