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
3 // found in the LICENSE file.
5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_H_
6 #define UI_NATIVE_THEME_NATIVE_THEME_H_
8 #include "base/observer_list.h"
9 #include "third_party/skia/include/core/SkColor.h"
10 #include "ui/gfx/native_widget_types.h"
11 #include "ui/native_theme/native_theme_export.h"
22 class NativeThemeObserver
;
24 // This class supports drawing UI controls (like buttons, text fields, lists,
25 // comboboxes, etc) that look like the native UI controls of the underlying
26 // platform, such as Windows or Linux. It also supplies default colors for
27 // dialog box backgrounds, etc., which are obtained from the system theme where
30 // The supported control types are listed in the Part enum. These parts can be
31 // in any state given by the State enum, where the actual definition of the
32 // state is part-specific. The supported colors are listed in the ColorId enum.
34 // Some parts require more information than simply the state in order to be
35 // drawn correctly, and this information is given to the Paint() method via the
36 // ExtraParams union. Each part that requires more information has its own
37 // field in the union.
39 // NativeTheme also supports getting the default size of a given part with
40 // the GetPartSize() method.
41 class NATIVE_THEME_EXPORT NativeTheme
{
43 // The part to be painted / sized.
59 // The order of the arrow enums is important, do not change without also
60 // changing the code in platform implementations.
66 kScrollbarHorizontalThumb
,
67 kScrollbarVerticalThumb
,
68 kScrollbarHorizontalTrack
,
69 kScrollbarVerticalTrack
,
70 kScrollbarHorizontalGripper
,
71 kScrollbarVerticalGripper
,
72 // The corner is drawn when there is both a horizontal and vertical
85 // The state of the part.
87 // IDs defined as specific values for use in arrays.
95 // Each structure below holds extra information needed when painting a given
98 struct ButtonExtraParams
{
100 bool indeterminate
; // Whether the button state is indeterminate.
101 bool is_default
; // Whether the button is default button.
104 int classic_state
; // Used on Windows when uxtheme is not available.
105 SkColor background_color
;
108 struct InnerSpinButtonExtraParams
{
111 int classic_state
; // Used on Windows when uxtheme is not available.
114 struct MenuArrowExtraParams
{
116 // Used for the disabled state to indicate if the item is both disabled and
121 struct MenuCheckExtraParams
{
123 // Used for the disabled state to indicate if the item is both disabled and
128 struct MenuItemExtraParams
{
132 struct MenuListExtraParams
{
134 bool has_border_radius
;
137 SkColor background_color
;
138 int classic_state
; // Used on Windows when uxtheme is not available.
141 struct MenuSeparatorExtraParams
{
145 struct MenuBackgroundExtraParams
{
149 struct ProgressBarExtraParams
{
150 double animated_seconds
;
154 int value_rect_width
;
155 int value_rect_height
;
158 struct ScrollbarArrowExtraParams
{
162 struct ScrollbarTrackExtraParams
{
168 int classic_state
; // Used on Windows when uxtheme is not available.
171 struct ScrollbarThumbExtraParams
{
175 struct SliderExtraParams
{
180 struct TextFieldExtraParams
{
183 SkColor background_color
;
186 bool fill_content_area
;
188 int classic_state
; // Used on Windows when uxtheme is not available.
191 struct TrackbarExtraParams
{
193 int classic_state
; // Used on Windows when uxtheme is not available.
197 ButtonExtraParams button
;
198 InnerSpinButtonExtraParams inner_spin
;
199 MenuArrowExtraParams menu_arrow
;
200 MenuCheckExtraParams menu_check
;
201 MenuItemExtraParams menu_item
;
202 MenuListExtraParams menu_list
;
203 MenuSeparatorExtraParams menu_separator
;
204 MenuBackgroundExtraParams menu_background
;
205 ProgressBarExtraParams progress_bar
;
206 ScrollbarArrowExtraParams scrollbar_arrow
;
207 ScrollbarTrackExtraParams scrollbar_track
;
208 ScrollbarThumbExtraParams scrollbar_thumb
;
209 SliderExtraParams slider
;
210 TextFieldExtraParams text_field
;
211 TrackbarExtraParams trackbar
;
214 // Return the size of the part.
215 virtual gfx::Size
GetPartSize(Part part
,
217 const ExtraParams
& extra
) const = 0;
219 // Paint the part to the canvas.
220 virtual void Paint(SkCanvas
* canvas
,
223 const gfx::Rect
& rect
,
224 const ExtraParams
& extra
) const = 0;
226 // Supports theme specific colors.
227 void SetScrollbarColors(unsigned inactive_color
,
228 unsigned active_color
,
229 unsigned track_color
);
231 // Colors for GetSystemColor().
234 kColorId_WindowBackground
,
236 kColorId_DialogBackground
,
238 kColorId_FocusedBorderColor
,
239 kColorId_UnfocusedBorderColor
,
241 kColorId_ButtonBackgroundColor
,
242 kColorId_ButtonEnabledColor
,
243 kColorId_ButtonDisabledColor
,
244 kColorId_ButtonHighlightColor
,
245 kColorId_ButtonHoverColor
,
246 kColorId_ButtonHoverBackgroundColor
,
248 kColorId_EnabledMenuItemForegroundColor
,
249 kColorId_DisabledMenuItemForegroundColor
,
250 kColorId_DisabledEmphasizedMenuItemForegroundColor
,
251 kColorId_SelectedMenuItemForegroundColor
,
252 kColorId_FocusedMenuItemBackgroundColor
,
253 kColorId_HoverMenuItemBackgroundColor
,
254 kColorId_MenuSeparatorColor
,
255 kColorId_MenuBackgroundColor
,
256 kColorId_MenuBorderColor
,
257 // MenuButton - buttons in wrench menu
258 kColorId_EnabledMenuButtonBorderColor
,
259 kColorId_FocusedMenuButtonBorderColor
,
260 kColorId_HoverMenuButtonBorderColor
,
262 kColorId_LabelEnabledColor
,
263 kColorId_LabelDisabledColor
,
264 kColorId_LabelBackgroundColor
,
266 kColorId_TextfieldDefaultColor
,
267 kColorId_TextfieldDefaultBackground
,
268 kColorId_TextfieldReadOnlyColor
,
269 kColorId_TextfieldReadOnlyBackground
,
270 kColorId_TextfieldSelectionColor
,
271 kColorId_TextfieldSelectionBackgroundFocused
,
273 kColorId_TreeBackground
,
275 kColorId_TreeSelectedText
,
276 kColorId_TreeSelectedTextUnfocused
,
277 kColorId_TreeSelectionBackgroundFocused
,
278 kColorId_TreeSelectionBackgroundUnfocused
,
281 kColorId_TableBackground
,
283 kColorId_TableSelectedText
,
284 kColorId_TableSelectedTextUnfocused
,
285 kColorId_TableSelectionBackgroundFocused
,
286 kColorId_TableSelectionBackgroundUnfocused
,
287 kColorId_TableGroupingIndicatorColor
,
288 // Results Tables, such as the chrome omnibox.
289 kColorId_ResultsTableNormalBackground
,
290 kColorId_ResultsTableHoveredBackground
,
291 kColorId_ResultsTableSelectedBackground
,
292 kColorId_ResultsTableNormalText
,
293 kColorId_ResultsTableHoveredText
,
294 kColorId_ResultsTableSelectedText
,
295 kColorId_ResultsTableNormalDimmedText
,
296 kColorId_ResultsTableHoveredDimmedText
,
297 kColorId_ResultsTableSelectedDimmedText
,
298 kColorId_ResultsTableNormalUrl
,
299 kColorId_ResultsTableHoveredUrl
,
300 kColorId_ResultsTableSelectedUrl
,
301 kColorId_ResultsTableNormalDivider
,
302 kColorId_ResultsTableHoveredDivider
,
303 kColorId_ResultsTableSelectedDivider
,
304 // TODO(benrg): move other hardcoded colors here.
307 // Return a color from the system theme.
308 virtual SkColor
GetSystemColor(ColorId color_id
) const = 0;
310 // Returns a shared instance of the native theme.
311 // The returned object should not be deleted by the caller. This function
312 // is not thread safe and should only be called from the UI thread.
313 // Each port of NativeTheme should provide its own implementation of this
314 // function, returning the port's subclass.
315 static NativeTheme
* instance();
317 // Add or remove observers to be notified when the native theme changes.
318 void AddObserver(NativeThemeObserver
* observer
);
319 void RemoveObserver(NativeThemeObserver
* observer
);
322 // Notify observers of native theme changes.
323 void NotifyObservers();
326 virtual ~NativeTheme();
328 unsigned int thumb_inactive_color_
;
329 unsigned int thumb_active_color_
;
330 unsigned int track_color_
;
333 // Observers to notify when the native theme changes.
334 ObserverList
<NativeThemeObserver
> native_theme_observers_
;
336 DISALLOW_COPY_AND_ASSIGN(NativeTheme
);
341 #endif // UI_NATIVE_THEME_NATIVE_THEME_H_