HomeSort by relevance Sort by last modified time
    Searched refs:buttonRect (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebCore/platform/wx/wxcode/win/
scrollbar_render.cpp 166 RECT buttonRect = r;
167 buttonRect.bottom = buttonRect.top + buttonSize;
168 buttonRect.right = buttonRect.left + buttonSize;
169 engine->DrawThemeBackground(hTheme, GraphicsHDC(&dc), part, xpState, &buttonRect, 0);
173 buttonRect = r;
174 buttonRect.top = buttonRect.bottom - buttonSize;
175 buttonRect.left = buttonRect.right - buttonSize
    [all...]
  /external/webkit/WebCore/platform/wx/wxcode/gtk/
scrollbar_render.cpp 145 wxRect buttonRect = rect;
153 buttonRect.x = x + thumbStart + buttonLength;
154 buttonRect.y = y;
155 buttonRect.width = thumbLength;
157 buttonRect.x = x;
158 buttonRect.y = y + thumbStart + buttonLength;
159 buttonRect.height = thumbLength;
162 renderer.DrawPushButton(window, dc, buttonRect, wxStyleForPart(wxSCROLLPART_THUMB, focusPart, hoverPart, flags));
  /external/webkit/WebCore/platform/win/
ScrollbarThemeSafari.cpp 121 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start)
123 IntRect paintRect(buttonRect);
127 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
131 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));
219 void ScrollbarThemeSafari::paintButton(GraphicsContext* graphicsContext, Scrollbar* scrollbar, const IntRect& buttonRect, ScrollbarPart part)
233 buttonRect, size, state);
236 buttonRect, size, state);
  /external/webkit/WebCore/rendering/
RenderScrollbar.h 55 IntRect buttonRect(ScrollbarPart);
RenderScrollbarTheme.cpp 74 return toRenderScrollbar(scrollbar)->buttonRect(partType);
79 return toRenderScrollbar(scrollbar)->buttonRect(partType);
RenderThemeWin.cpp 704 IntRect buttonRect(r);
705 buttonRect.inflate(-borderThickness);
707 buttonRect.setX(buttonRect.right() - dropDownButtonWidth);
708 buttonRect.setWidth(dropDownButtonWidth);
712 buttonRect.setY(buttonRect.y() - vistaMenuListButtonOutset);
713 buttonRect.setHeight(buttonRect.height() + 2 * vistaMenuListButtonOutset);
714 buttonRect.setWidth(buttonRect.width() + vistaMenuListButtonOutset)
    [all...]
RenderScrollbar.cpp 251 IntRect RenderScrollbar::buttonRect(ScrollbarPart partType)
270 IntRect previousButton = buttonRect(BackButtonStartPart);
277 IntRect followingButton = buttonRect(ForwardButtonEndPart);
RenderThemeWince.cpp 252 IntRect buttonRect(r.right() - dropDownButtonWidth - 1, r.y(), dropDownButtonWidth, r.height());
253 buttonRect.inflateY(-1);
254 i.context->drawFrameControl(buttonRect, DFC_SCROLL, DFCS_SCROLLCOMBOBOX | determineClassicState(o));
  /external/webkit/WebCore/platform/haiku/
ScrollbarThemeHaiku.cpp 83 IntRect buttonRect(buttonOrigin, buttonSize);
85 return buttonRect;
  /external/webkit/WebCore/platform/chromium/
ScrollbarThemeChromiumMac.mm 210 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start)
212 IntRect paintRect(buttonRect);
216 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
220 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));
  /external/webkit/WebCore/platform/mac/
ScrollbarThemeMac.mm 197 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start)
199 IntRect paintRect(buttonRect);
203 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
207 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));

Completed in 622 milliseconds