blob: ad8d2edca724aa079911ce207904450a07b16a65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/views/theme_background.h"
#include "app/resource_bundle.h"
#include "chrome/browser/profile.h"
#include "chrome/browser/themes/browser_theme_provider.h"
#include "chrome/browser/views/frame/browser_view.h"
#include "gfx/canvas.h"
#include "grit/app_resources.h"
#include "grit/generated_resources.h"
#include "grit/theme_resources.h"
#include "views/view.h"
ThemeBackground::ThemeBackground(BrowserView* browser_view)
: browser_view_(browser_view) {
}
void ThemeBackground::Paint(gfx::Canvas* canvas, views::View* view) const {
SkBitmap* background;
// Never theme app and popup windows.
if (!browser_view_->IsBrowserTypeNormal()) {
ResourceBundle& rb = ResourceBundle::GetSharedInstance();
if (browser_view_->IsActive())
background = rb.GetBitmapNamed(IDR_FRAME);
else
background = rb.GetBitmapNamed(IDR_THEME_FRAME_INACTIVE);
} else {
Profile* profile = browser_view_->browser()->profile();
ThemeProvider* theme = profile->GetThemeProvider();
if (browser_view_->IsActive()) {
background = theme->GetBitmapNamed(
profile->IsOffTheRecord() ?
IDR_THEME_FRAME_INCOGNITO : IDR_THEME_FRAME);
} else {
background = theme->GetBitmapNamed(
profile->IsOffTheRecord() ?
IDR_THEME_FRAME_INCOGNITO_INACTIVE : IDR_THEME_FRAME_INACTIVE);
}
}
gfx::Point origin(0, 0);
views::View::ConvertPointToView(view,
browser_view_->frame()->GetFrameView(),
&origin);
#if defined(OS_CHROMEOS)
const int kCustomFrameBackgroundVerticalOffset = 15;
// TODO(oshima): Remove this once we fully migrated to views.
// See http://crbug.com/28580.
if (browser_view_->IsMaximized()) {
origin.Offset(0, kCustomFrameBackgroundVerticalOffset + 1);
}
#endif
canvas->TileImageInt(*background,
origin.x(), origin.y(), 0, 0,
view->width(), view->height());
}
|