Home
last modified time | relevance | path

Searched refs:background_image_ (Results 1 – 6 of 6) sorted by relevance

/external/chromium/chrome/browser/ui/views/
Dfirst_run_search_engine_view.cc150 : background_image_(NULL), in FirstRunSearchEngineView()
190 background_image_->height()); in OnPaint()
192 DCHECK(height() > background_image_->height()); in OnPaint()
193 canvas->FillRectInt(SK_ColorWHITE, 0, background_image_->height(), width(), in OnPaint()
194 height() - background_image_->height()); in OnPaint()
315 background_image_ = new views::ImageView(); in SetupControls()
316 background_image_->SetImage(rb.GetBitmapNamed(IDR_SEARCH_ENGINE_DIALOG_TOP)); in SetupControls()
317 background_image_->EnableCanvasFlippingForRTLUI(true); in SetupControls()
319 background_image_->SetHorizontalAlignment(ImageView::LEADING); in SetupControls()
321 background_image_->SetHorizontalAlignment(ImageView::TRAILING); in SetupControls()
[all …]
Ddefault_search_view.cc130 background_image_->height()); in OnPaint()
132 DCHECK(height() > background_image_->height()); in OnPaint()
133 canvas->FillRectInt(SK_ColorWHITE, 0, background_image_->height(), width(), in OnPaint()
134 height() - background_image_->height()); in OnPaint()
177 : background_image_(NULL), in DefaultSearchView()
257 background_image_ = new ImageView(); in SetupControls()
258 background_image_->SetImage(rb.GetBitmapNamed(IDR_SEARCH_ENGINE_DIALOG_TOP)); in SetupControls()
259 background_image_->EnableCanvasFlippingForRTLUI(true); in SetupControls()
262 background_image_->SetHorizontalAlignment(horizontal_alignment); in SetupControls()
263 layout->AddView(background_image_); in SetupControls()
Ddefault_search_view.h74 views::ImageView* background_image_; variable
Dfirst_run_search_engine_view.h136 views::ImageView* background_image_; variable
/external/chromium/chrome/browser/ui/gtk/
Dcustom_button.cc24 : background_image_(NULL), in CustomDrawButtonBase()
34 background_image_.reset(new CairoCachedSurface); in CustomDrawButtonBase()
105 if (background_image_->valid()) { in OnExpose()
106 background_image_->SetSource(cairo_context, x, y); in OnExpose()
130 if (background_image_->valid()) { in SetBackground()
131 background_image_->UsePixbuf(NULL); in SetBackground()
138 background_image_->UsePixbuf(pixbuf); in SetBackground()
Dcustom_button.h73 scoped_ptr<CairoCachedSurface> background_image_; variable