OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_H_ | 5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_H_ |
6 #define UI_NATIVE_THEME_NATIVE_THEME_H_ | 6 #define UI_NATIVE_THEME_NATIVE_THEME_H_ |
7 | 7 |
8 #include "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
9 #include "ui/gfx/native_widget_types.h" | 9 #include "ui/gfx/native_widget_types.h" |
10 #include "ui/native_theme/native_theme_export.h" | 10 #include "ui/native_theme/native_theme_export.h" |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 // TextButton | 233 // TextButton |
234 kColorId_TextButtonBackgroundColor, | 234 kColorId_TextButtonBackgroundColor, |
235 kColorId_TextButtonEnabledColor, | 235 kColorId_TextButtonEnabledColor, |
236 kColorId_TextButtonDisabledColor, | 236 kColorId_TextButtonDisabledColor, |
237 kColorId_TextButtonHighlightColor, | 237 kColorId_TextButtonHighlightColor, |
238 kColorId_TextButtonHoverColor, | 238 kColorId_TextButtonHoverColor, |
239 // MenuItem | 239 // MenuItem |
240 kColorId_EnabledMenuItemForegroundColor, | 240 kColorId_EnabledMenuItemForegroundColor, |
241 kColorId_DisabledMenuItemForegroundColor, | 241 kColorId_DisabledMenuItemForegroundColor, |
242 kColorId_FocusedMenuItemBackgroundColor, | 242 kColorId_FocusedMenuItemBackgroundColor, |
| 243 kColorId_HoverMenuItemBackgroundColor, |
243 kColorId_MenuSeparatorColor, | 244 kColorId_MenuSeparatorColor, |
244 kColorId_MenuBackgroundColor, | 245 kColorId_MenuBackgroundColor, |
245 kColorId_MenuBorderColor, | 246 kColorId_MenuBorderColor, |
| 247 // MenuButton - buttons in wrench menu |
| 248 kColorId_EnabledMenuButtonBorderColor, |
| 249 kColorId_FocusedMenuButtonBorderColor, |
| 250 kColorId_HoverMenuButtonBorderColor, |
246 // Label | 251 // Label |
247 kColorId_LabelEnabledColor, | 252 kColorId_LabelEnabledColor, |
248 kColorId_LabelDisabledColor, | 253 kColorId_LabelDisabledColor, |
249 kColorId_LabelBackgroundColor, | 254 kColorId_LabelBackgroundColor, |
250 // Textfield | 255 // Textfield |
251 kColorId_TextfieldDefaultColor, | 256 kColorId_TextfieldDefaultColor, |
252 kColorId_TextfieldDefaultBackground, | 257 kColorId_TextfieldDefaultBackground, |
253 kColorId_TextfieldReadOnlyColor, | 258 kColorId_TextfieldReadOnlyColor, |
254 kColorId_TextfieldReadOnlyBackground, | 259 kColorId_TextfieldReadOnlyBackground, |
255 kColorId_TextfieldSelectionColor, | 260 kColorId_TextfieldSelectionColor, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 unsigned int thumb_inactive_color_; | 298 unsigned int thumb_inactive_color_; |
294 unsigned int thumb_active_color_; | 299 unsigned int thumb_active_color_; |
295 unsigned int track_color_; | 300 unsigned int track_color_; |
296 | 301 |
297 DISALLOW_COPY_AND_ASSIGN(NativeTheme); | 302 DISALLOW_COPY_AND_ASSIGN(NativeTheme); |
298 }; | 303 }; |
299 | 304 |
300 } // namespace ui | 305 } // namespace ui |
301 | 306 |
302 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ | 307 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_ |
OLD | NEW |