/external/webkit/WebCore/platform/ |
D | Scrollbar.cpp | 52 ScrollbarTheme* theme) in Scrollbar() argument 56 , m_theme(theme) in Scrollbar() 160 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart); in updateThumbPosition() 165 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart); in updateThumbProportion() 170 if (context->updatingControlTints() && theme()->supportsControlTints()) { in paint() 178 if (!theme()->paint(this, context, damageRect)) in paint() 184 autoscrollPressedPart(theme()->autoscrollTimerDelay()); in autoscrollTimerFired() 189 …int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()->thumbPosition(sc… in thumbUnderMouse() 190 int thumbLength = scrollbar->theme()->thumbLength(scrollbar); in thumbUnderMouse() 202 theme()->invalidatePart(this, m_pressedPart); in autoscrollPressedPart() [all …]
|
D | Scrollbar.h | 117 ScrollbarTheme* theme() const { return m_theme; } in theme() function
|
/external/webkit/WebCore/rendering/ |
D | RenderThemeChromiumGtk.cpp | 133 static void setMozState(RenderTheme* theme, GtkWidgetState* state, RenderObject* o) in setMozState() argument 135 state->active = theme->isPressed(o); in setMozState() 136 state->focused = theme->isFocused(o); in setMozState() 137 state->inHover = theme->isHovered(o); in setMozState() 139 state->disabled = !theme->isEnabled(o) || theme->isReadOnlyControl(o); in setMozState() 145 static bool paintMozWidget(RenderTheme* theme, GtkThemeWidgetType type, RenderObject* o, const Rend… in paintMozWidget() argument 152 setMozState(theme, &mozState, o); in paintMozWidget() 163 flags = theme->isChecked(o); in paintMozWidget() 224 RenderTheme* theme() in theme() function 481 g_signal_connect(m_gtkEntry, "style-set", G_CALLBACK(gtkStyleSetCallback), theme()); in gtkEntry() [all …]
|
D | RenderButton.cpp | 94 if (!m_default && theme()->isDefault(this)) { in styleDidChange() 99 } else if (m_default && !theme()->isDefault(this)) { in styleDidChange() 112 theme()->adjustButtonInnerStyle(innerStyle); in setupInnerStyle()
|
D | RenderMenuList.cpp | 89 … m_innerBlock->style()->setPaddingLeft(Length(theme()->popupInternalPaddingLeft(style()), Fixed)); in adjustInnerStyle() 90 …m_innerBlock->style()->setPaddingRight(Length(theme()->popupInternalPaddingRight(style()), Fixed)); in adjustInnerStyle() 91 m_innerBlock->style()->setPaddingTop(Length(theme()->popupInternalPaddingTop(style()), Fixed)); in adjustInnerStyle() 92 …m_innerBlock->style()->setPaddingBottom(Length(theme()->popupInternalPaddingBottom(style()), Fixed… in adjustInnerStyle() 242 …m_maxPrefWidth = max(m_optionsWidth, theme()->minimumMenuListSize(style())) + m_innerBlock->paddin… in calcPrefWidths()
|
D | RenderScrollbarTheme.cpp | 35 DEFINE_STATIC_LOCAL(RenderScrollbarTheme, theme, ()); in renderScrollbarTheme() 36 return &theme; in renderScrollbarTheme()
|
D | RenderScrollbarPart.cpp | 139 m_scrollbar->theme()->invalidatePart(m_scrollbar, m_part); in styleDidChange() 145 m_scrollbar->theme()->invalidatePart(m_scrollbar, m_part); in imageChanged()
|
D | RenderThemeChromiumMac.mm | 69 - (id)initWithTheme:(WebCore::RenderTheme *)theme; 76 - (id)initWithTheme:(WebCore::RenderTheme *)theme 79 _theme = theme; 128 RenderTheme* theme() 347 // Use theme independent default 456 // FIXME: Use the code from the old upstream version, before it was converted to the new theme API … 573 // FIXME: This used to be in the upstream version until it was converted to the new theme API in r3… 680 // FIXME: This used to be in the upstream version until it was converted to the new theme API in r3… 714 // FIXME: This used to be in the upstream version until it was converted to the new theme API in r3… 721 // FIXME: This used to be in the upstream version until it was converted to the new theme API in r3… [all …]
|
D | RenderThemeWin.cpp | 123 RenderTheme* theme() in theme() function 530 static void drawControl(GraphicsContext* context, RenderObject* o, HANDLE theme, const ThemeData& t… in drawControl() argument 533 if (theme) in drawControl() 534 … alphaBlend = IsThemeBackgroundPartiallyTransparent(theme, themeData.m_part, themeData.m_state); in drawControl() 537 if (theme) in drawControl() 538 DrawThemeBackground(theme, hdc, themeData.m_part, themeData.m_state, &widgetRect, NULL); in drawControl()
|
D | RenderListBox.cpp | 318 textColor = theme()->activeListBoxSelectionForegroundColor(); in paintItemForeground() 321 textColor = theme()->inactiveListBoxSelectionForegroundColor(); in paintItemForeground() 353 backColor = theme()->activeListBoxSelectionBackgroundColor(); in paintItemBackground() 355 backColor = theme()->inactiveListBoxSelectionBackgroundColor(); in paintItemBackground()
|
D | RenderThemeChromiumWin.cpp | 207 RenderTheme* theme() in theme() function 611 theme()->platformColorsDidChange(); in setFindInPageMode()
|
D | MediaControlElements.cpp | 137 return theme()->hitTestMediaControlPart(renderer(), absPoint); in hitTest()
|
D | RenderTheme.h | 255 RenderTheme* theme();
|
D | RenderFileUploadControl.cpp | 137 m_button->setDisabled(!theme()->isEnabled(this)); in updateFromElement()
|
/external/webkit/WebCore/platform/gtk/ |
D | RenderThemeGtk.cpp | 37 RenderTheme* theme() in theme() function 130 static void setMozState(RenderTheme* theme, GtkWidgetState* state, RenderObject* o) in setMozState() argument 132 state->active = theme->isPressed(o); in setMozState() 133 state->focused = theme->isFocused(o); in setMozState() 134 state->inHover = theme->isHovered(o); in setMozState() 136 state->disabled = !theme->isEnabled(o) || theme->isReadOnlyControl(o); in setMozState() 142 static bool paintMozWidget(RenderTheme* theme, GtkThemeWidgetType type, RenderObject* o, const Rend… in paintMozWidget() argument 153 setMozState(theme, &mozState, o); in paintMozWidget() 164 flags = theme->isChecked(o); in paintMozWidget() 465 g_signal_connect(m_gtkEntry, "style-set", G_CALLBACK(gtkStyleSetCallback), theme()); in gtkEntry() [all …]
|
D | ScrollbarThemeGtk.cpp | 36 static ScrollbarThemeGtk theme; in nativeTheme() local 37 return &theme; in nativeTheme()
|
/external/webkit/WebCore/platform/win/ |
D | PlatformScrollBarWin.cpp | 37 ScrollbarTheme* theme) in PlatformScrollbar() argument 38 : Scrollbar(client, orientation, size, theme) in PlatformScrollbar()
|
D | PopupMenuWin.cpp | 491 optionBackgroundColor = theme()->activeListBoxSelectionBackgroundColor(); in paint() 492 optionTextColor = theme()->activeListBoxSelectionForegroundColor(); in paint()
|
/external/webkit/WebCore/platform/chromium/ |
D | ScrollbarThemeChromium.cpp | 45 static ScrollbarThemeChromium theme; in nativeTheme() local 46 return &theme; in nativeTheme()
|
/external/webkit/WebCore/html/ |
D | HTMLFormControlElement.cpp | 72 theme()->stateChanged(renderer(), EnabledState); in parseMappedAttribute() 80 theme()->stateChanged(renderer(), ReadOnlyState); in parseMappedAttribute()
|
/external/webkit/WebCore/platform/wx/ |
D | TemporaryLinkStubs.cpp | 130 …me* ScrollbarTheme::nativeTheme() { notImplemented(); static ScrollbarTheme theme; return &theme; } in nativeTheme() local
|
/external/webkit/WebCore/platform/qt/ |
D | ScrollbarThemeQt.cpp | 48 static ScrollbarThemeQt theme; in nativeTheme() local 49 return &theme; in nativeTheme()
|
/external/webkit/WebCore/platform/android/ |
D | TemporaryLinkStubs.cpp | 790 static ScrollbarTheme theme; in nativeTheme() local 791 return &theme; in nativeTheme()
|
D | RenderThemeAndroid.cpp | 57 RenderTheme* theme() in theme() function
|
/external/webkit/WebCore/platform/mac/ |
D | ScrollbarThemeMac.mm | 94 DEFINE_STATIC_LOCAL(ScrollbarThemeMac, theme, ()); 95 return &theme;
|