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_WIN_H_ | 5 #ifndef UI_NATIVE_THEME_NATIVE_THEME_WIN_H_ |
6 #define UI_NATIVE_THEME_NATIVE_THEME_WIN_H_ | 6 #define UI_NATIVE_THEME_NATIVE_THEME_WIN_H_ |
7 | 7 |
8 // A wrapper class for working with custom XP/Vista themes provided in | 8 // A wrapper class for working with custom XP/Vista themes provided in |
9 // uxtheme.dll. This is a singleton class that can be grabbed using | 9 // uxtheme.dll. This is a singleton class that can be grabbed using |
10 // NativeThemeWin::instance(). | 10 // NativeThemeWin::instance(). |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 gfx::Size GetPartSize(Part part, | 102 gfx::Size GetPartSize(Part part, |
103 State state, | 103 State state, |
104 const ExtraParams& extra) const override; | 104 const ExtraParams& extra) const override; |
105 void Paint(SkCanvas* canvas, | 105 void Paint(SkCanvas* canvas, |
106 Part part, | 106 Part part, |
107 State state, | 107 State state, |
108 const gfx::Rect& rect, | 108 const gfx::Rect& rect, |
109 const ExtraParams& extra) const override; | 109 const ExtraParams& extra) const override; |
110 SkColor GetSystemColor(ColorId color_id) const override; | 110 SkColor GetSystemColor(ColorId color_id) const override; |
111 | 111 |
| 112 bool SupportsNinePatch(Part part) const override; |
| 113 gfx::Size GetNinePatchCanvasSize(Part part) const override; |
| 114 gfx::Rect GetNinePatchAperture(Part part) const override; |
| 115 |
112 protected: | 116 protected: |
113 friend class NativeTheme; | 117 friend class NativeTheme; |
114 // Gets our singleton instance. | 118 // Gets our singleton instance. |
115 static NativeThemeWin* instance(); | 119 static NativeThemeWin* instance(); |
116 | 120 |
117 NativeThemeWin(); | 121 NativeThemeWin(); |
118 ~NativeThemeWin() override; | 122 ~NativeThemeWin() override; |
119 | 123 |
120 private: | 124 private: |
121 bool IsUsingHighContrastThemeInternal(); | 125 bool IsUsingHighContrastThemeInternal(); |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 | 376 |
373 // Is |is_using_high_contrast_| valid? | 377 // Is |is_using_high_contrast_| valid? |
374 mutable bool is_using_high_contrast_valid_; | 378 mutable bool is_using_high_contrast_valid_; |
375 | 379 |
376 DISALLOW_COPY_AND_ASSIGN(NativeThemeWin); | 380 DISALLOW_COPY_AND_ASSIGN(NativeThemeWin); |
377 }; | 381 }; |
378 | 382 |
379 } // namespace ui | 383 } // namespace ui |
380 | 384 |
381 #endif // UI_NATIVE_THEME_NATIVE_THEME_WIN_H_ | 385 #endif // UI_NATIVE_THEME_NATIVE_THEME_WIN_H_ |
OLD | NEW |