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

  /external/webkit/Source/WebCore/platform/wx/wxcode/gtk/
scrollbar_render.cpp 139 GtkArrowType arrowType = GTK_ARROW_UP;
141 arrowType = GTK_ARROW_LEFT;
143 gtk_paint_arrow( button->style, gdk_window, GTK_STATE_NORMAL, GTK_SHADOW_OUT, NULL, button, "arrow", arrowType, false, x + 4, y + 4, 8, 8);
172 arrowType = GTK_ARROW_RIGHT;
174 arrowType = GTK_ARROW_DOWN;
176 gtk_paint_arrow( button->style, gdk_window, GTK_STATE_NORMAL, GTK_SHADOW_OUT, NULL, button, "arrow", arrowType, false, x + 4, y + 4, 8, 8);
  /external/webkit/Source/WebCore/platform/gtk/
ScrollbarThemeGtk2.cpp 202 GtkArrowType arrowType = GTK_ARROW_DOWN;
205 arrowType = GTK_ARROW_UP;
207 arrowType = GTK_ARROW_RIGHT;
209 arrowType = GTK_ARROW_LEFT;
211 widgetContext.gtkPaintArrow(arrowRect, widget, stateType, shadowType, arrowType, detail);
RenderThemeGtk3.cpp 747 static void paintSpinArrowButton(RenderTheme* theme, GtkStyleContext* context, RenderObject* renderObject, const PaintInfo& paintInfo, const IntRect& rect, GtkArrowType arrowType)
749 ASSERT(arrowType == GTK_ARROW_UP || arrowType == GTK_ARROW_DOWN);
758 if ((arrowType == GTK_ARROW_UP && theme->isSpinUpButtonPartPressed(renderObject))
759 || (arrowType == GTK_ARROW_DOWN && !theme->isSpinUpButtonPartPressed(renderObject)))
762 if ((arrowType == GTK_ARROW_UP && theme->isSpinUpButtonPartHovered(renderObject))
763 || (arrowType == GTK_ARROW_DOWN && !theme->isSpinUpButtonPartHovered(renderObject)))
772 if (arrowType == GTK_ARROW_UP)
788 if (arrowType == GTK_ARROW_UP) {
    [all...]

Completed in 81 milliseconds