Searched refs:buttonRect (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/platform/wx/wxcode/win/
H A Dscrollbar_render.cpp166 RECT buttonRect = r; local
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
[all...]
/external/webkit/Source/WebCore/platform/wx/wxcode/gtk/
H A Dscrollbar_render.cpp145 wxRect buttonRect = rect; local
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/Source/WebCore/rendering/
H A DRenderInputSpeech.cpp76 IntRect buttonRect(object->offsetFromAncestorContainer(inputRenderBox).width(),
83 buttonRect.move(offsetFromInputRenderer);
85 buttonRect.move(rect.x(), rect.y());
97 paintInfo.context->drawImage(image, object->style()->colorSpace(), buttonRect);
H A DRenderScrollbar.h57 IntRect buttonRect(ScrollbarPart);
H A DRenderScrollbarTheme.cpp74 return toRenderScrollbar(scrollbar)->buttonRect(partType);
79 return toRenderScrollbar(scrollbar)->buttonRect(partType);
H A DRenderScrollbar.cpp281 IntRect RenderScrollbar::buttonRect(ScrollbarPart partType) function in class:WebCore::RenderScrollbar
300 IntRect previousButton = buttonRect(BackButtonStartPart);
307 IntRect followingButton = buttonRect(ForwardButtonEndPart);
H A DRenderThemeWin.cpp791 IntRect buttonRect(r);
792 buttonRect.inflate(-borderThickness);
794 buttonRect.setX(buttonRect.maxX() - dropDownButtonWidth);
795 buttonRect.setWidth(dropDownButtonWidth);
799 buttonRect.setY(buttonRect.y() - vistaMenuListButtonOutset);
800 buttonRect.setHeight(buttonRect.height() + 2 * vistaMenuListButtonOutset);
801 buttonRect
[all...]
H A DRenderThemeWinCE.cpp253 IntRect buttonRect(r.maxX() - dropDownButtonWidth - 1, r.y(), dropDownButtonWidth, r.height());
254 buttonRect.inflateY(-1);
255 i.context->drawFrameControl(buttonRect, DFC_SCROLL, DFCS_SCROLLCOMBOBOX | determineClassicState(o));
/external/webkit/Source/WebCore/platform/win/
H A DScrollbarThemeSafari.cpp121 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start) argument
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) argument
233 buttonRect, size, state);
236 buttonRect, size, state);
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk3.cpp260 IntRect buttonRect(rect);
281 buttonRect.move(border.left, border.top);
282 buttonRect.setWidth(buttonRect.width() - (border.left + border.right));
283 buttonRect.setHeight(buttonRect.height() - (border.top + border.bottom));
288 gtk_render_background(context, paintInfo.context->platformContext()->cr(), buttonRect.x(), buttonRect.y(), buttonRect.width(), buttonRect
[all...]
H A DScrollbarThemeGtk2.cpp183 IntRect buttonRect(IntPoint(), rect.size());
184 widgetContext.gtkPaintBox(buttonRect, widget, stateType, shadowType, detail);
190 IntRect arrowRect(IntPoint(buttonRect.x() + (buttonRect.width() - arrowSize.width()) / 2,
191 buttonRect.y() + (buttonRect.height() - arrowSize.height()) / 2),
H A DRenderThemeGtk2.cpp177 IntRect buttonRect(IntPoint(), rect.size());
182 widgetContext.gtkPaintOption(buttonRect, widget, toggleState, shadowType, detail);
185 widgetContext.gtkPaintCheck(buttonRect, widget, toggleState, shadowType, detail);
189 IntRect focusRect(buttonRect);
235 IntRect buttonRect(IntPoint(), rect.size());
236 IntRect focusRect(buttonRect);
258 buttonRect.inflateX(-focusWidth - focusPadding);
259 buttonRect.inflateY(-focusPadding - focusPadding);
265 widgetContext.gtkPaintBox(buttonRect, widget, state, shadowType, "button");
/external/webkit/Source/WebCore/platform/haiku/
H A DScrollbarThemeHaiku.cpp83 IntRect buttonRect(buttonOrigin, buttonSize);
85 return buttonRect;
/external/webkit/Source/WebCore/platform/chromium/
H A DScrollbarThemeChromiumMac.mm214 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start)
216 IntRect paintRect(buttonRect);
220 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
224 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));
/external/webkit/Source/WebCore/platform/mac/
H A DScrollbarThemeMac.mm262 static IntRect buttonRepaintRect(const IntRect& buttonRect, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, bool start)
266 IntRect paintRect(buttonRect);
270 paintRect.setX(buttonRect.x() - (cRealButtonLength[controlSize] - buttonRect.width()));
274 paintRect.setY(buttonRect.y() - (cRealButtonLength[controlSize] - buttonRect.height()));

Completed in 163 milliseconds