HomeSort by relevance Sort by last modified time
    Searched refs:NativeTheme (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/chromium_org/ui/views/
native_theme_delegate.h 26 virtual ui::NativeTheme::Part GetThemePart() const = 0;
32 virtual ui::NativeTheme::State GetThemeState(
33 ui::NativeTheme::ExtraParams* params) const = 0;
40 virtual ui::NativeTheme::State GetBackgroundThemeState(
41 ui::NativeTheme::ExtraParams* params) const = 0;
46 virtual ui::NativeTheme::State GetForegroundThemeState(
47 ui::NativeTheme::ExtraParams* params) const = 0;
  /external/chromium_org/ui/native_theme/
native_theme.cc 11 void NativeTheme::SetScrollbarColors(unsigned inactive_color,
19 // NativeTheme::instance() is implemented in the platform specific source files,
22 void NativeTheme::AddObserver(NativeThemeObserver* observer) {
26 void NativeTheme::RemoveObserver(NativeThemeObserver* observer) {
30 void NativeTheme::NotifyObservers() {
35 NativeTheme::NativeTheme()
41 NativeTheme::~NativeTheme() {}
native_theme_observer.h 12 class NativeTheme;
19 virtual void OnNativeThemeUpdated(ui::NativeTheme* observed_theme) = 0;
native_theme_mac_unittest.cc 16 NativeTheme* native_theme = NativeTheme::instance();
18 for (int i = 0; i < NativeTheme::kColorId_NumColors; ++i) {
23 native_theme->GetSystemColor(static_cast<NativeTheme::ColorId>(i)))
31 NativeTheme* native_theme = NativeTheme::instance();
35 native_theme->GetSystemColor(NativeTheme::kColorId_WindowBackground);
native_theme_aurawin.cc 15 bool IsScrollbarPart(NativeTheme::Part part) {
17 case NativeTheme::kScrollbarDownArrow:
18 case NativeTheme::kScrollbarLeftArrow:
19 case NativeTheme::kScrollbarRightArrow:
20 case NativeTheme::kScrollbarUpArrow:
21 case NativeTheme::kScrollbarHorizontalThumb:
22 case NativeTheme::kScrollbarVerticalThumb:
23 case NativeTheme::kScrollbarHorizontalTrack:
24 case NativeTheme::kScrollbarVerticalTrack:
25 case NativeTheme::kScrollbarHorizontalGripper
    [all...]
common_theme.h 23 NativeTheme::ColorId color_id,
27 NativeTheme::Part part,
28 NativeTheme::State state,
29 const NativeTheme::ExtraParams& extra);
38 const NativeTheme::MenuSeparatorExtraParams& extra);
48 NativeTheme::State state,
common_theme.cc 48 bool CommonThemeGetSystemColor(NativeTheme::ColorId color_id, SkColor* color) {
51 case NativeTheme::kColorId_MenuBorderColor:
54 case NativeTheme::kColorId_EnabledMenuButtonBorderColor:
57 case NativeTheme::kColorId_FocusedMenuButtonBorderColor:
60 case NativeTheme::kColorId_HoverMenuButtonBorderColor:
63 case NativeTheme::kColorId_MenuSeparatorColor:
66 case NativeTheme::kColorId_MenuBackgroundColor:
69 case NativeTheme::kColorId_FocusedMenuItemBackgroundColor:
72 case NativeTheme::kColorId_HoverMenuItemBackgroundColor:
75 case NativeTheme::kColorId_EnabledMenuItemForegroundColor
    [all...]
native_theme_android.cc 14 NativeTheme* NativeTheme::instance() {
  /external/chromium_org/ui/views/controls/menu/
menu_config_mac.cc 13 void MenuConfig::Init(const ui::NativeTheme* theme) {
18 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
20 MenuConfig, mac_instance, (theme ? theme : ui::NativeTheme::instance()));
menu_config.h 13 class NativeTheme;
21 explicit MenuConfig(const ui::NativeTheme* theme);
24 static const MenuConfig& instance(const ui::NativeTheme* theme);
120 const ui::NativeTheme* native_theme;
131 void Init(const ui::NativeTheme* theme);
134 void InitAura(const ui::NativeTheme* theme);
menu_config_win.cc 19 using ui::NativeTheme;
24 void MenuConfig::Init(const NativeTheme* theme) {
40 NativeTheme::ExtraParams extra;
44 NativeTheme::kMenuCheck, NativeTheme::kNormal, extra);
55 NativeTheme::kMenuCheck, NativeTheme::kNormal, extra);
62 NativeTheme::kMenuPopupArrow, NativeTheme::kNormal, extra);
82 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme)
    [all...]
menu_config_aura.cc 26 void MenuConfig::Init(const ui::NativeTheme* theme) {
32 void MenuConfig::InitAura(const ui::NativeTheme* theme) {
53 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) {
57 theme : ui::NativeTheme::instance());
menu_separator_win.cc 36 ui::NativeTheme::ExtraParams extra;
38 canvas->sk_canvas(), ui::NativeTheme::kMenuPopupGutter,
39 ui::NativeTheme::kNormal, gutter_bounds, extra);
43 ui::NativeTheme::ExtraParams extra;
56 canvas->sk_canvas(), ui::NativeTheme::kMenuPopupSeparator,
57 ui::NativeTheme::kNormal, separator_bounds, extra);
  /external/chromium_org/ui/views/controls/scrollbar/
native_scroll_bar_wrapper.h 11 class NativeTheme;
39 static int GetVerticalScrollBarWidth(const ui::NativeTheme* theme);
40 static int GetHorizontalScrollBarHeight(const ui::NativeTheme* theme);
native_scroll_bar_views.cc 44 ui::NativeTheme::ExtraParams GetNativeThemeParams() const;
45 ui::NativeTheme::Part GetNativeThemePart() const;
46 ui::NativeTheme::State GetNativeThemeState() const;
66 ui::NativeTheme::ExtraParams GetNativeThemeParams() const;
67 ui::NativeTheme::Part GetNativeThemePart() const;
68 ui::NativeTheme::State GetNativeThemeState() const;
99 ui::NativeTheme::ExtraParams
101 ui::NativeTheme::ExtraParams params;
115 ui::NativeTheme::Part
119 return ui::NativeTheme::kScrollbarUpArrow
    [all...]
native_scroll_bar.h 16 class NativeTheme;
35 static int GetHorizontalScrollBarHeight(const ui::NativeTheme* theme);
36 static int GetVerticalScrollBarWidth(const ui::NativeTheme* theme);
native_scroll_bar_views.h 71 ui::NativeTheme::ExtraParams params_;
72 ui::NativeTheme::Part part_;
73 ui::NativeTheme::State state_;
  /external/chromium_org/content/child/
webthemeengine_impl_default.cc 19 static ui::NativeTheme::Part NativeThemePart(
23 return ui::NativeTheme::kScrollbarDownArrow;
25 return ui::NativeTheme::kScrollbarLeftArrow;
27 return ui::NativeTheme::kScrollbarRightArrow;
29 return ui::NativeTheme::kScrollbarUpArrow;
31 return ui::NativeTheme::kScrollbarHorizontalThumb;
33 return ui::NativeTheme::kScrollbarVerticalThumb;
35 return ui::NativeTheme::kScrollbarHorizontalTrack;
37 return ui::NativeTheme::kScrollbarVerticalTrack;
39 return ui::NativeTheme::kScrollbarCorner
    [all...]
webfallbackthemeengine_impl.cc 19 static ui::NativeTheme::Part NativeThemePart(
23 return ui::NativeTheme::kScrollbarDownArrow;
25 return ui::NativeTheme::kScrollbarLeftArrow;
27 return ui::NativeTheme::kScrollbarRightArrow;
29 return ui::NativeTheme::kScrollbarUpArrow;
31 return ui::NativeTheme::kScrollbarHorizontalThumb;
33 return ui::NativeTheme::kScrollbarVerticalThumb;
35 return ui::NativeTheme::kScrollbarHorizontalTrack;
37 return ui::NativeTheme::kScrollbarVerticalTrack;
39 return ui::NativeTheme::kScrollbarCorner
    [all...]
webthemeengine_impl_android.cc 20 static ui::NativeTheme::Part NativeThemePart(
24 return ui::NativeTheme::kScrollbarDownArrow;
26 return ui::NativeTheme::kScrollbarLeftArrow;
28 return ui::NativeTheme::kScrollbarRightArrow;
30 return ui::NativeTheme::kScrollbarUpArrow;
38 return static_cast<ui::NativeTheme::Part>(0);
40 return ui::NativeTheme::kCheckbox;
42 return ui::NativeTheme::kRadio;
44 return ui::NativeTheme::kPushButton;
46 return ui::NativeTheme::kTextField
    [all...]
  /external/chromium_org/mojo/services/html_viewer/
webthemeengine_impl.cc 19 static ui::NativeTheme::Part NativeThemePart(
23 return ui::NativeTheme::kScrollbarDownArrow;
25 return ui::NativeTheme::kScrollbarLeftArrow;
27 return ui::NativeTheme::kScrollbarRightArrow;
29 return ui::NativeTheme::kScrollbarUpArrow;
31 return ui::NativeTheme::kScrollbarHorizontalThumb;
33 return ui::NativeTheme::kScrollbarVerticalThumb;
35 return ui::NativeTheme::kScrollbarHorizontalTrack;
37 return ui::NativeTheme::kScrollbarVerticalTrack;
39 return ui::NativeTheme::kScrollbarCorner
    [all...]
  /external/chromium_org/ui/views/controls/button/
button.cc 16 Button::ButtonState Button::GetButtonStateFrom(ui::NativeTheme::State state) {
18 case ui::NativeTheme::kDisabled: return Button::STATE_DISABLED;
19 case ui::NativeTheme::kHovered: return Button::STATE_HOVERED;
20 case ui::NativeTheme::kNormal: return Button::STATE_NORMAL;
21 case ui::NativeTheme::kPressed: return Button::STATE_PRESSED;
22 case ui::NativeTheme::kNumStates: NOTREACHED();
blue_button.cc 30 GetSystemColor(ui::NativeTheme::kColorId_BlueButtonEnabledColor));
32 GetSystemColor(ui::NativeTheme::kColorId_BlueButtonHoverColor));
34 GetSystemColor(ui::NativeTheme::kColorId_BlueButtonPressedColor));
36 GetSystemColor(ui::NativeTheme::kColorId_BlueButtonDisabledColor));
44 ui::NativeTheme::kColorId_BlueButtonShadowColor))));
label_button.h 107 virtual void OnNativeThemeChanged(const ui::NativeTheme* theme) OVERRIDE;
110 virtual void GetExtraParams(ui::NativeTheme::ExtraParams* params) const;
112 // Resets colors from the NativeTheme, explicitly set colors are unchanged.
122 // Updates the border as per the NativeTheme, unless a different border was
143 virtual ui::NativeTheme::Part GetThemePart() const OVERRIDE;
144 virtual ui::NativeTheme::State GetThemeState(
145 ui::NativeTheme::ExtraParams* params) const OVERRIDE;
147 virtual ui::NativeTheme::State GetBackgroundThemeState(
148 ui::NativeTheme::ExtraParams* params) const OVERRIDE;
149 virtual ui::NativeTheme::State GetForegroundThemeState
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_border.h 41 virtual void OnNativeThemeUpdated(ui::NativeTheme* observed_theme) OVERRIDE;
44 void PaintState(const ui::NativeTheme::State state,
45 const ui::NativeTheme::ExtraParams& extra,
61 ScopedObserver<ui::NativeTheme, ui::NativeThemeObserver> observer_manager_;

Completed in 810 milliseconds

1 2 3 4 5