Searched defs:theme (Results 51 - 75 of 77) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollbar.cpp51 Scrollbar::Scrollbar(ScrollableArea* scrollableArea, ScrollbarOrientation orientation, ScrollbarControlSize controlSize, ScrollbarTheme* theme) argument
55 , m_theme(theme)
73 m_theme = ScrollbarTheme::theme();
140 int oldThumbPosition = theme()->thumbPosition(this);
144 setPressedPos(m_pressedPos + theme()->thumbPosition(this) - oldThumbPosition);
163 theme()->invalidateParts(this, ForwardTrackPart | BackTrackPart | ThumbPart);
182 if (!theme()->paint(this, context, damageRect))
188 autoscrollPressedPart(theme()->autoscrollTimerDelay());
193 int thumbPos = scrollbar->theme()->trackPosition(scrollbar) + scrollbar->theme()
[all...]
/external/chromium_org/ui/views/controls/button/
H A Dlabel_button.cc379 const ui::NativeTheme* theme = GetNativeTheme(); local
381 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonEnabledColor),
382 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonHoverColor),
383 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonHoverColor),
384 theme->GetSystemColor(ui::NativeTheme::kColorId_ButtonDisabledColor),
405 label_->SetBackgroundColor(theme->GetSystemColor(
469 void LabelButton::OnNativeThemeChanged(const ui::NativeTheme* theme) { argument
/external/chromium_org/ui/views/controls/
H A Dlabel.cc376 void Label::OnNativeThemeChanged(const ui::NativeTheme* theme) { argument
377 UpdateColorsFromTheme(theme);
511 void Label::UpdateColorsFromTheme(const ui::NativeTheme* theme) { argument
513 requested_enabled_color_ = theme->GetSystemColor(
517 requested_disabled_color_ = theme->GetSystemColor(
521 background_color_ = theme->GetSystemColor(
/external/chromium_org/ui/views/
H A Dview.h512 // Get the theme provider from the parent widget.
1159 // Called when the UI theme (not the NativeTheme) has changed, overriding
1161 // dropping resource caches). To dispatch a theme changed notification, call
1207 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) {} argument
1286 void PropagateNativeThemeChanged(const ui::NativeTheme* theme);
1427 // Used to propagate theme changed notifications from the root view to all
H A Dview.cc1883 void View::PropagateNativeThemeChanged(const ui::NativeTheme* theme) { argument
1885 child_at(i)->PropagateNativeThemeChanged(theme);
1886 OnNativeThemeChanged(theme);
/external/chromium_org/chrome/browser/profile_resetter/
H A Dprofile_resetter_unittest.cc581 scoped_refptr<Extension> theme = local
587 service_->FinishInstallationForTest(theme.get());
588 // Let ThemeService finish creating the theme pack.
635 EXPECT_FALSE(service_->extensions()->Contains(theme->id()));
684 // Let ThemeService finish creating the theme pack.
/external/chromium_org/chrome/browser/ui/views/omnibox/
H A Domnibox_view_views.cc330 void OmniboxViewViews::OnNativeThemeChanged(const ui::NativeTheme* theme) { argument
331 views::Textfield::OnNativeThemeChanged(theme);
/external/chromium_org/chrome/browser/ui/views/
H A Dstatus_bubble_views.cc184 // Holds the theme provider of the frame that created us.
858 const ui::NativeTheme* theme = base_view_->GetNativeTheme(); local
861 views::NativeScrollBar::GetVerticalScrollBarWidth(theme)));
/external/chromium_org/chrome/browser/ui/webui/
H A Dabout_ui.cc1098 // Set up the chrome://theme/ source.
1099 ThemeSource* theme = new ThemeSource(profile); local
1100 content::URLDataSource::Add(profile, theme);
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
H A DScrollingCoordinator.cpp240 ScrollbarTheme* theme = scrollbar->theme(); local
241 blink::WebScrollbarThemePainter painter(theme, scrollbar);
242 OwnPtr<blink::WebScrollbarThemeGeometry> geometry(blink::WebScrollbarThemeGeometryNative::create(theme));
330 webScrollbarLayer = createSolidColorScrollbarLayer(orientation, scrollbar->theme()->thumbThickness(scrollbar), scrollbar->theme()->trackPosition(scrollbar), scrollableArea->shouldPlaceVerticalScrollbarOnLeft());
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTheme.cpp2 * This file is part of the theme implementation for form controls in WebCore.
70 static WebFallbackThemeEngine::State getWebFallbackThemeState(const RenderTheme* theme, const RenderObject* o) argument
72 if (!theme->isEnabled(o))
74 if (theme->isPressed(o))
76 if (theme->isHovered(o))
483 // Use a blue color by default if the platform theme doesn't define anything.
489 // Use a white color by default if the platform theme doesn't define anything.
495 // Use a grey color by default if the platform theme doesn't define anything.
768 // border - honored by WinIE, but looks terrible (just paints in the control box and turns off the Windows XP theme)
783 // border - honored by WinIE, but looks terrible (just paints in the control box and turns off the Windows XP theme)
[all...]
/external/chromium_org/ui/native_theme/
H A Dnative_theme_win.cc60 // Windows system color IDs cached and updated by the native theme.
150 HRESULT NativeThemeWin::GetThemeColor(ThemeName theme, argument
155 HANDLE handle = GetThemeHandle(theme);
165 SkColor NativeThemeWin::GetThemeColorWithDefault(ThemeName theme, argument
171 return (GetThemeColor(theme, part_id, state_id, prop_id, &color) == S_OK) ?
175 gfx::Size NativeThemeWin::GetThemeBorderSize(ThemeName theme) const {
179 return (GetThemeInt(theme, 0, 0, TMT_BORDERSIZE, &border) == S_OK) ?
287 // Scrollbar components on Windows Classic theme (on all Windows versions)
290 // theme (available only on Windows XP) also need their alpha values
667 // Some of the Windows theme drawin
[all...]
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dgtk2_ui.cc66 // - Make sure to test with a light on dark theme, too.
120 // Default color for links on the NTP when the GTK+ theme doesn't define a
159 // current gtk theme selection color so they stand out against the GtkEntry's
208 // ResourceBundle. (i.e. in a light on dark theme, the dropdown arrow will be
231 // |accent_gdk_color| will usually be the same color through a theme, this
412 // broadcast new theme images and colors. Only realized widgets have style
595 GtkIconTheme* theme = gtk_icon_theme_get_default(); local
605 theme, icon.get(), size,
733 // Ask the theme if the theme specifie
[all...]
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dwrench_menu.cc172 ui::NativeTheme* theme = view->GetNativeTheme(); local
175 return theme->GetSystemColor(
178 return theme->GetSystemColor(
181 return theme->GetSystemColor(
188 const ui::NativeTheme* theme = view->GetNativeTheme(); local
193 return theme->GetSystemColor(
196 return theme->GetSystemColor(
199 return theme->GetSystemColor(
279 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) OVERRIDE {
280 const MenuConfig& menu_config = MenuConfig::instance(theme);
[all...]
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_view.cc1835 void BrowserView::OnNativeThemeChanged(const ui::NativeTheme* theme) { argument
1836 // Do not handle native theme changes before the browser view is initialized.
1839 ClientView::OnNativeThemeChanged(theme);
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_controller.cc1078 MenuController::MenuController(ui::NativeTheme* theme, argument
1099 menu_config_(theme),
/external/chromium_org/ui/views/controls/textfield/
H A Dtextfield.cc999 void Textfield::OnNativeThemeChanged(const ui::NativeTheme* theme) { argument
/external/chromium_org/chrome/browser/extensions/
H A Dextension_service_unittest.cc2207 // A theme.
2208 base::FilePath path = data_dir().AppendASCII("theme.crx");
2215 // A theme when extensions are disabled. Themes can be installed, even when
2224 // A theme with extension elements. Themes cannot have extension elements,
2238 // A theme with image resources missing (misspelt path).
2256 const Extension* theme = registry()->enabled_extensions().begin()->get(); local
2257 EXPECT_EQ("name", theme->name());
2258 EXPECT_EQ("description", theme->description());
2358 const Extension* theme = PackAndInstallCRX(theme_path, INSTALL_NEW); local
2362 EXPECT_EQ("name", theme
[all...]
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dautofill_dialog_views.cc426 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) OVERRIDE {
428 theme->GetSystemColor(ui::NativeTheme::kColorId_DialogBackground)));
694 const ui::NativeTheme* theme) {
696 theme->GetSystemColor(ui::NativeTheme::kColorId_DialogBackground)));
1513 const ui::NativeTheme* theme) {
1521 theme->GetSystemColor(ui::NativeTheme::kColorId_LabelDisabledColor);
693 OnNativeThemeChanged( const ui::NativeTheme* theme) argument
1512 OnNativeThemeChanged( const ui::NativeTheme* theme) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 435 milliseconds

1234