Home
last modified time | relevance | path

Searched refs:theme (Results 1 – 25 of 61) sorted by relevance

123

/external/webkit/WebCore/platform/
DScrollbar.cpp52 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 …]
DScrollbar.h117 ScrollbarTheme* theme() const { return m_theme; } in theme() function
/external/webkit/WebCore/rendering/
DRenderThemeChromiumGtk.cpp133 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 …]
DRenderButton.cpp94 if (!m_default && theme()->isDefault(this)) { in styleDidChange()
99 } else if (m_default && !theme()->isDefault(this)) { in styleDidChange()
112 theme()->adjustButtonInnerStyle(innerStyle); in setupInnerStyle()
DRenderMenuList.cpp89 … 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()
DRenderScrollbarTheme.cpp35 DEFINE_STATIC_LOCAL(RenderScrollbarTheme, theme, ()); in renderScrollbarTheme()
36 return &theme; in renderScrollbarTheme()
DRenderScrollbarPart.cpp139 m_scrollbar->theme()->invalidatePart(m_scrollbar, m_part); in styleDidChange()
145 m_scrollbar->theme()->invalidatePart(m_scrollbar, m_part); in imageChanged()
DRenderThemeChromiumMac.mm69 - (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 …]
DRenderThemeWin.cpp123 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()
DRenderListBox.cpp318 textColor = theme()->activeListBoxSelectionForegroundColor(); in paintItemForeground()
321 textColor = theme()->inactiveListBoxSelectionForegroundColor(); in paintItemForeground()
353 backColor = theme()->activeListBoxSelectionBackgroundColor(); in paintItemBackground()
355 backColor = theme()->inactiveListBoxSelectionBackgroundColor(); in paintItemBackground()
DRenderThemeChromiumWin.cpp207 RenderTheme* theme() in theme() function
611 theme()->platformColorsDidChange(); in setFindInPageMode()
DMediaControlElements.cpp137 return theme()->hitTestMediaControlPart(renderer(), absPoint); in hitTest()
DRenderTheme.h255 RenderTheme* theme();
DRenderFileUploadControl.cpp137 m_button->setDisabled(!theme()->isEnabled(this)); in updateFromElement()
/external/webkit/WebCore/platform/gtk/
DRenderThemeGtk.cpp37 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 …]
DScrollbarThemeGtk.cpp36 static ScrollbarThemeGtk theme; in nativeTheme() local
37 return &theme; in nativeTheme()
/external/webkit/WebCore/platform/win/
DPlatformScrollBarWin.cpp37 ScrollbarTheme* theme) in PlatformScrollbar() argument
38 : Scrollbar(client, orientation, size, theme) in PlatformScrollbar()
DPopupMenuWin.cpp491 optionBackgroundColor = theme()->activeListBoxSelectionBackgroundColor(); in paint()
492 optionTextColor = theme()->activeListBoxSelectionForegroundColor(); in paint()
/external/webkit/WebCore/platform/chromium/
DScrollbarThemeChromium.cpp45 static ScrollbarThemeChromium theme; in nativeTheme() local
46 return &theme; in nativeTheme()
/external/webkit/WebCore/html/
DHTMLFormControlElement.cpp72 theme()->stateChanged(renderer(), EnabledState); in parseMappedAttribute()
80 theme()->stateChanged(renderer(), ReadOnlyState); in parseMappedAttribute()
/external/webkit/WebCore/platform/wx/
DTemporaryLinkStubs.cpp130 …me* ScrollbarTheme::nativeTheme() { notImplemented(); static ScrollbarTheme theme; return &theme; } in nativeTheme() local
/external/webkit/WebCore/platform/qt/
DScrollbarThemeQt.cpp48 static ScrollbarThemeQt theme; in nativeTheme() local
49 return &theme; in nativeTheme()
/external/webkit/WebCore/platform/android/
DTemporaryLinkStubs.cpp790 static ScrollbarTheme theme; in nativeTheme() local
791 return &theme; in nativeTheme()
DRenderThemeAndroid.cpp57 RenderTheme* theme() in theme() function
/external/webkit/WebCore/platform/mac/
DScrollbarThemeMac.mm94 DEFINE_STATIC_LOCAL(ScrollbarThemeMac, theme, ());
95 return &theme;

123