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_LINUX_UI_LINUX_UI_H_ | 5 #ifndef UI_LINUX_UI_LINUX_UI_H_ |
6 #define UI_LINUX_UI_LINUX_UI_H_ | 6 #define UI_LINUX_UI_LINUX_UI_H_ |
7 | 7 |
8 #include "third_party/skia/include/core/SkColor.h" | 8 #include "third_party/skia/include/core/SkColor.h" |
9 #include "ui/linux_ui/linux_ui_export.h" | 9 #include "ui/linux_ui/linux_ui_export.h" |
10 #include "ui/shell_dialogs/linux_shell_dialog.h" | 10 #include "ui/shell_dialogs/linux_shell_dialog.h" |
(...skipping 29 matching lines...) Expand all Loading... |
40 // environment. | 40 // environment. |
41 // | 41 // |
42 // Can return NULL, in case no toolkit has been set. (For example, if we're | 42 // Can return NULL, in case no toolkit has been set. (For example, if we're |
43 // running with the "--ash" flag.) | 43 // running with the "--ash" flag.) |
44 static const LinuxUI* instance(); | 44 static const LinuxUI* instance(); |
45 | 45 |
46 // Returns an themed image per theme_provider.h | 46 // Returns an themed image per theme_provider.h |
47 virtual bool UseNativeTheme() const = 0; | 47 virtual bool UseNativeTheme() const = 0; |
48 virtual gfx::Image GetThemeImageNamed(int id) const = 0; | 48 virtual gfx::Image GetThemeImageNamed(int id) const = 0; |
49 virtual bool GetColor(int id, SkColor* color) const = 0; | 49 virtual bool GetColor(int id, SkColor* color) const = 0; |
| 50 virtual bool HasCustomImage(int id) const = 0; |
50 | 51 |
51 // Returns a NativeTheme that will provide system colors and draw system | 52 // Returns a NativeTheme that will provide system colors and draw system |
52 // style widgets. | 53 // style widgets. |
53 virtual NativeTheme* GetNativeTheme() const = 0; | 54 virtual NativeTheme* GetNativeTheme() const = 0; |
| 55 |
| 56 // Returns whether we should be using the native theme provided by this |
| 57 // object by default. |
| 58 virtual bool GetDefaultUsesSystemTheme() const = 0; |
54 }; | 59 }; |
55 | 60 |
56 } // namespace ui | 61 } // namespace ui |
57 | 62 |
58 #endif // UI_LINUX_UI_LINUX_UI_H_ | 63 #endif // UI_LINUX_UI_LINUX_UI_H_ |
OLD | NEW |