Home | History | Annotate | Download | only in views

Lines Matching refs:Background

5 #include "ui/views/background.h"
17 // SolidBackground is a trivial Background implementation that fills the
18 // background in a solid color.
19 class SolidBackground : public Background {
26 // Fill the background. Note that we don't constrain to the bounds as
35 class BackgroundPainter : public Background {
59 Background::Background()
67 Background::~Background() {
73 void Background::SetNativeControlColor(SkColor color) {
82 HBRUSH Background::GetNativeControlBrush() const {
90 Background* Background::CreateSolidBackground(SkColor color) {
95 Background* Background::CreateStandardPanelBackground() {
106 Background* Background::CreateVerticalGradientBackground(SkColor color1,
108 Background* background = CreateBackgroundPainter(
110 background->SetNativeControlColor(
113 return background;
117 Background* Background::CreateVerticalMultiColorGradientBackground(
121 Background* background = CreateBackgroundPainter(
123 background->SetNativeControlColor(
126 return background;
130 Background* Background::CreateBackgroundPainter(bool owns_painter,