HomeSort by relevance Sort by last modified time
    Searched refs:Background (Results 1 - 25 of 131) sorted by null

1 2 3 4 5 6

  /external/chromium_org/ui/views/
background.cc 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() {
108 Background* background = CreateBackgroundPainter( local
121 Background* background = CreateBackgroundPainter( local
    [all...]
background.h 29 // Background class
31 // A background implements a way for views to paint a background. The
32 // background can be either solid or based on a gradient. Of course,
33 // Background can be subclassed to implement various effects.
35 // Any View can have a background. See View::SetBackground() and
39 class VIEWS_EXPORT Background {
41 Background();
42 virtual ~Background();
44 // Creates a background that fills the canvas in the specified color
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
rounded_rect_painter.h 12 class Background;
32 // Creates painter to paint view background with parameters specified.
35 // that actually draws both border and background.
38 // Creates simple round background.
39 views::Background* CreateRoundedBackground(int corner_radius,
shutdown_button.cc 17 #include "views/background.h"
39 class HoverBackground : public views::Background {
41 HoverBackground(views::Background* normal, views::Background* hover)
45 // views::Background implementation.
56 views::Background* normal_;
57 views::Background* hover_;
  /external/chromium_org/chrome/browser/ui/views/infobars/
translate_infobar_base.h 44 // Returns the background that should be displayed when not animating.
45 const views::Background& GetBackground();
47 // Paints |background| to |canvas| with the opacity level based on
51 const views::Background& background);
infobar_background.h 10 #include "ui/views/background.h"
12 class InfoBarBackground : public views::Background {
20 // views::Background:
translate_infobar_base.cc 88 // InfoBarView::Layout() does for the normal background.
93 // If we're not animating, simply paint the background for the current state.
100 *background());
113 const views::Background& TranslateInfoBarBase::GetBackground() {
114 return GetDelegate()->is_error() ? error_background_ : *background();
119 const views::Background& background) {
120 // Draw the background into an offscreen buffer with alpha value per animation
123 background.Paint(canvas, this);
  /external/chromium/chrome/browser/chromeos/views/
copy_background.h 9 #include "views/background.h"
17 // A background that copies the background renderer from
19 class CopyBackground : public views::Background {
24 // Overridden from views::Background.
copy_background.cc 9 #include "views/background.h"
17 DCHECK(background_owner_->background());
21 const Background* background = background_owner_->background(); local
22 DCHECK(background);
30 background->Paint(canvas, background_owner_);
  /external/chromium/chrome/browser/ui/views/
theme_background.h 9 #include "views/background.h"
21 // A ThemeBackground is used to paint the background theme image in a
27 class ThemeBackground : public views::Background {
32 // Overridden from views:;Background.
  /external/chromium_org/ui/app_list/views/
app_list_background.h 10 #include "ui/views/background.h"
20 // A class to paint bubble background.
21 class AppListBackground : public views::Background {
28 // views::Background overrides:
  /external/chromium/chrome/browser/ui/views/infobars/
translate_infobar_base.h 47 // Returns the background that should be displayed when not animating.
48 const views::Background& GetBackground();
50 // Paints |background| to |canvas| with the opacity level based on
54 const views::Background& background);
infobar_background.h 10 #include "views/background.h"
12 class InfoBarBackground : public views::Background {
22 // views::Background:
translate_infobar_base.cc 97 // InfoBarView::Layout() does for the normal background.
102 // If we're not animating, simply paint the background for the current state.
109 *background());
121 const views::Background& TranslateInfoBarBase::GetBackground() {
122 return GetDelegate()->IsError() ? error_background_ : *background();
127 const views::Background& background) {
128 // Draw the background into an offscreen buffer with alpha value per animation
132 background.Paint(canvas, this);
  /external/chromium_org/ui/views/examples/
widget_example.cc 8 #include "ui/views/background.h"
32 set_background(Background::CreateSolidBackground(SK_ColorGRAY));
99 contents->set_background(Background::CreateSolidBackground(SK_ColorGRAY));
double_split_view_example.cc 7 #include "ui/views/background.h"
16 // DoubleSplitViews's content, which draws gradient color on background.
39 set_background(Background::CreateVerticalGradientBackground(from, to));
single_split_view_example.cc 7 #include "ui/views/background.h"
15 // SingleSplitView's content, which draws gradient color on background.
40 set_background(Background::CreateVerticalGradientBackground(from, to));
  /external/chromium/chrome/browser/chromeos/
setting_level_bubble_view.cc 14 using views::Background;
  /external/chromium_org/ash/system/tray/
tray_empty.cc 8 #include "ui/views/background.h"
14 class EmptyBackground : public views::Background {
  /external/chromium_org/chrome/browser/resources/file_manager/background/js/
background.js 8 * Number of runtime errors catched in the background page.
29 * Root class of the background page.
32 function Background() {
46 * Progress center of the background page.
80 * Last time when the background page can close.
123 Background.CLOSE_DELAY_MS_ = 5000;
130 Background.makeGeometryKey = function(url) {
140 Background.prototype.ready = function(callback) {
148 * Checks the current condition of background page and closes it if possible.
150 Background.prototype.tryClose = function()
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
tree.css.js 32 * @param {string} backgroundColor Background color.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/
content.js 26 log("Background page responded: " + response);
42 log("Got message from background page: " + msg);
  /external/chromium_org/chrome/browser/resources/file_manager/common/js/
progress_center_common.js 14 * Background page notifies item update to application windows.
19 * Background page notifies all the items are cleared.
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_sync_promo_view.cc 13 #include "ui/views/background.h"
20 // Background color of the promo.
36 set_background(views::Background::CreateSolidBackground(kBackgroundColor));
  /external/chromium_org/chrome/browser/chromeos/input_method/
infolist_window_view.cc 21 #include "ui/views/background.h"
56 // Notifies labels of their new background colors. Called whenever the view's
57 // background color changes.
132 views::Background::CreateSolidBackground(GetNativeTheme()->GetSystemColor(
150 SkColor color = background() ?
151 background()->get_color() :
173 views::Background::CreateSolidBackground(GetNativeTheme()->GetSystemColor(
191 caption_label->set_background(views::Background::CreateSolidBackground(
196 caption_label->SetBackgroundColor(caption_label->background()->get_color());

Completed in 869 milliseconds

1 2 3 4 5 6