blob: b683cdfb78807d3a1b7c63442997f9b11f780912 [file] [log] [blame]
// Copyright (c) 2012 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 "ui/native_theme/native_theme_win.h"
#include <windows.h>
#include <stddef.h>
#include <uxtheme.h>
#include <vsstyle.h>
#include <vssym32.h>
#include "base/logging.h"
#include "base/macros.h"
#include "base/win/scoped_gdi_object.h"
#include "base/win/scoped_hdc.h"
#include "base/win/scoped_select_object.h"
#include "base/win/windows_version.h"
#include "skia/ext/bitmap_platform_device.h"
#include "skia/ext/platform_canvas.h"
#include "skia/ext/skia_utils_win.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "third_party/skia/include/core/SkColor.h"
#include "third_party/skia/include/core/SkShader.h"
#include "ui/base/material_design/material_design_controller.h"
#include "ui/display/win/dpi.h"
#include "ui/gfx/color_palette.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/gdi_util.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/gfx/geometry/rect_conversions.h"
#include "ui/gfx/skia_util.h"
#include "ui/native_theme/common_theme.h"
// This was removed from Winvers.h but is still used.
#if !defined(COLOR_MENUHIGHLIGHT)
#define COLOR_MENUHIGHLIGHT 29
#endif
namespace {
// Windows system color IDs cached and updated by the native theme.
const int kSystemColors[] = {
COLOR_3DFACE,
COLOR_BTNFACE,
COLOR_BTNTEXT,
COLOR_GRAYTEXT,
COLOR_HIGHLIGHT,
COLOR_HIGHLIGHTTEXT,
COLOR_HOTLIGHT,
COLOR_MENUHIGHLIGHT,
COLOR_SCROLLBAR,
COLOR_WINDOW,
COLOR_WINDOWTEXT,
};
void SetCheckerboardShader(SkPaint* paint, const RECT& align_rect) {
// Create a 2x2 checkerboard pattern using the 3D face and highlight colors.
const SkColor face = color_utils::GetSysSkColor(COLOR_3DFACE);
const SkColor highlight = color_utils::GetSysSkColor(COLOR_3DHILIGHT);
SkColor buffer[] = { face, highlight, highlight, face };
// Confusing bit: we first create a temporary bitmap with our desired pattern,
// then copy it to another bitmap. The temporary bitmap doesn't take
// ownership of the pixel data, and so will point to garbage when this
// function returns. The copy will copy the pixel data into a place owned by
// the bitmap, which is in turn owned by the shader, etc., so it will live
// until we're done using it.
SkImageInfo info = SkImageInfo::MakeN32Premul(2, 2);
SkBitmap temp_bitmap;
temp_bitmap.installPixels(info, buffer, info.minRowBytes());
SkBitmap bitmap;
temp_bitmap.copyTo(&bitmap);
// Align the pattern with the upper corner of |align_rect|.
SkMatrix local_matrix;
local_matrix.setTranslate(SkIntToScalar(align_rect.left),
SkIntToScalar(align_rect.top));
paint->setShader(
SkShader::MakeBitmapShader(bitmap, SkShader::kRepeat_TileMode,
SkShader::kRepeat_TileMode, &local_matrix));
}
// <-a->
// [ ***** ]
// ____ | |
// <-a-> <------b----->
// a: object_width
// b: frame_width
// *: animating object
//
// - the animation goes from "[" to "]" repeatedly.
// - the animation offset is at first "|"
//
int ComputeAnimationProgress(int frame_width,
int object_width,
int pixels_per_second,
double animated_seconds) {
int animation_width = frame_width + object_width;
double interval = static_cast<double>(animation_width) / pixels_per_second;
double ratio = fmod(animated_seconds, interval) / interval;
return static_cast<int>(animation_width * ratio) - object_width;
}
RECT InsetRect(const RECT* rect, int size) {
gfx::Rect result(*rect);
result.Inset(size, size);
return result.ToRECT();
}
} // namespace
namespace ui {
bool NativeThemeWin::IsThemingActive() const {
return is_theme_active_ && is_theme_active_();
}
bool NativeThemeWin::IsUsingHighContrastTheme() const {
if (is_using_high_contrast_valid_)
return is_using_high_contrast_;
HIGHCONTRAST result;
result.cbSize = sizeof(HIGHCONTRAST);
is_using_high_contrast_ =
SystemParametersInfo(SPI_GETHIGHCONTRAST, result.cbSize, &result, 0) &&
(result.dwFlags & HCF_HIGHCONTRASTON) == HCF_HIGHCONTRASTON;
is_using_high_contrast_valid_ = true;
return is_using_high_contrast_;
}
HRESULT NativeThemeWin::GetThemeColor(ThemeName theme,
int part_id,
int state_id,
int prop_id,
SkColor* color) const {
HANDLE handle = GetThemeHandle(theme);
if (!handle || !get_theme_color_)
return E_NOTIMPL;
COLORREF color_ref;
if (get_theme_color_(handle, part_id, state_id, prop_id, &color_ref) != S_OK)
return E_NOTIMPL;
*color = skia::COLORREFToSkColor(color_ref);
return S_OK;
}
SkColor NativeThemeWin::GetThemeColorWithDefault(ThemeName theme,
int part_id,
int state_id,
int prop_id,
int default_sys_color) const {
SkColor color;
return (GetThemeColor(theme, part_id, state_id, prop_id, &color) == S_OK) ?
color : color_utils::GetSysSkColor(default_sys_color);
}
gfx::Size NativeThemeWin::GetThemeBorderSize(ThemeName theme) const {
// For simplicity use the wildcard state==0, part==0, since it works
// for the cases we currently depend on.
int border;
return (GetThemeInt(theme, 0, 0, TMT_BORDERSIZE, &border) == S_OK) ?
gfx::Size(border, border) :
gfx::Size(GetSystemMetrics(SM_CXEDGE), GetSystemMetrics(SM_CYEDGE));
}
void NativeThemeWin::DisableTheming() const {
if (set_theme_properties_)
set_theme_properties_(0);
}
void NativeThemeWin::CloseHandles() const {
if (!close_theme_)
return;
for (int i = 0; i < LAST; ++i) {
if (theme_handles_[i]) {
close_theme_(theme_handles_[i]);
theme_handles_[i] = NULL;
}
}
}
bool NativeThemeWin::IsClassicTheme(ThemeName name) const {
return !theme_dll_ || !GetThemeHandle(name);
}
// static
NativeThemeWin* NativeThemeWin::instance() {
CR_DEFINE_STATIC_LOCAL(NativeThemeWin, s_native_theme, ());
return &s_native_theme;
}
gfx::Size NativeThemeWin::GetPartSize(Part part,
State state,
const ExtraParams& extra) const {
// The GetThemePartSize call below returns the default size without
// accounting for user customization (crbug/218291).
switch (part) {
case kScrollbarDownArrow:
case kScrollbarLeftArrow:
case kScrollbarRightArrow:
case kScrollbarUpArrow:
case kScrollbarHorizontalThumb:
case kScrollbarVerticalThumb:
case kScrollbarHorizontalTrack:
case kScrollbarVerticalTrack: {
int size = display::win::GetSystemMetricsInDIP(SM_CXVSCROLL);
if (size == 0)
size = 17;
return gfx::Size(size, size);
}
default:
break;
}
int part_id = GetWindowsPart(part, state, extra);
int state_id = GetWindowsState(part, state, extra);
base::win::ScopedGetDC screen_dc(NULL);
SIZE size;
if (SUCCEEDED(GetThemePartSize(GetThemeName(part), screen_dc, part_id,
state_id, NULL, TS_TRUE, &size)))
return gfx::Size(size.cx, size.cy);
// TODO(rogerta): For now, we need to support radio buttons and checkboxes
// when theming is not enabled. Support for other parts can be added
// if/when needed.
return (part == kCheckbox || part == kRadio) ?
gfx::Size(13, 13) : gfx::Size();
}
void NativeThemeWin::Paint(SkCanvas* canvas,
Part part,
State state,
const gfx::Rect& rect,
const ExtraParams& extra) const {
if (rect.IsEmpty())
return;
switch (part) {
case kMenuPopupGutter:
PaintMenuGutter(canvas, rect);
return;
case kMenuPopupSeparator:
PaintMenuSeparator(canvas, rect);
return;
case kMenuPopupBackground:
PaintMenuBackground(canvas, rect);
return;
case kMenuItemBackground:
CommonThemePaintMenuItemBackground(this, canvas, state, rect,
extra.menu_item);
return;
case kScrollbarCorner:
canvas->drawColor(SK_ColorWHITE, SkXfermode::kSrc_Mode);
return;
default:
break;
}
skia::ScopedPlatformPaint scoped_platform_paint(canvas);
HDC hdc = scoped_platform_paint.GetPlatformSurface();
switch (part) {
case kCheckbox:
PaintCheckbox(hdc, part, state, rect, extra.button);
return;
case kInnerSpinButton:
PaintSpinButton(hdc, part, state, rect, extra.inner_spin);
return;
case kMenuList:
PaintMenuList(hdc, state, rect, extra.menu_list);
return;
case kMenuCheck:
PaintMenuCheck(hdc, state, rect, extra.menu_check);
return;
case kMenuCheckBackground:
PaintMenuCheckBackground(hdc, state, rect);
return;
case kMenuPopupArrow:
PaintMenuArrow(hdc, state, rect, extra.menu_arrow);
return;
case kProgressBar:
PaintProgressBar(hdc, rect, extra.progress_bar);
return;
case kPushButton:
PaintPushButton(hdc, part, state, rect, extra.button);
return;
case kRadio:
PaintRadioButton(hdc, part, state, rect, extra.button);
return;
case kScrollbarDownArrow:
case kScrollbarUpArrow:
case kScrollbarLeftArrow:
case kScrollbarRightArrow:
PaintScrollbarArrow(hdc, part, state, rect, extra.scrollbar_arrow);
return;
case kScrollbarHorizontalThumb:
case kScrollbarVerticalThumb:
case kScrollbarHorizontalGripper:
case kScrollbarVerticalGripper:
PaintScrollbarThumb(hdc, part, state, rect, extra.scrollbar_thumb);
return;
case kScrollbarHorizontalTrack:
case kScrollbarVerticalTrack:
PaintScrollbarTrack(canvas, hdc, part, state, rect,
extra.scrollbar_track);
return;
case kTabPanelBackground:
PaintTabPanelBackground(hdc, rect);
return;
case kTextField:
PaintTextField(hdc, part, state, rect, extra.text_field);
return;
case kTrackbarThumb:
case kTrackbarTrack:
PaintTrackbar(canvas, hdc, part, state, rect, extra.trackbar);
return;
case kWindowResizeGripper:
PaintWindowResizeGripper(hdc, rect);
return;
default:
NOTREACHED();
}
}
NativeThemeWin::NativeThemeWin()
: draw_theme_(NULL),
draw_theme_ex_(NULL),
get_theme_color_(NULL),
get_theme_content_rect_(NULL),
get_theme_part_size_(NULL),
open_theme_(NULL),
close_theme_(NULL),
set_theme_properties_(NULL),
is_theme_active_(NULL),
get_theme_int_(NULL),
theme_dll_(LoadLibrary(L"uxtheme.dll")),
color_change_listener_(this),
is_using_high_contrast_(false),
is_using_high_contrast_valid_(false) {
if (theme_dll_) {
draw_theme_ = reinterpret_cast<DrawThemeBackgroundPtr>(
GetProcAddress(theme_dll_, "DrawThemeBackground"));
draw_theme_ex_ = reinterpret_cast<DrawThemeBackgroundExPtr>(
GetProcAddress(theme_dll_, "DrawThemeBackgroundEx"));
get_theme_color_ = reinterpret_cast<GetThemeColorPtr>(
GetProcAddress(theme_dll_, "GetThemeColor"));
get_theme_content_rect_ = reinterpret_cast<GetThemeContentRectPtr>(
GetProcAddress(theme_dll_, "GetThemeBackgroundContentRect"));
get_theme_part_size_ = reinterpret_cast<GetThemePartSizePtr>(
GetProcAddress(theme_dll_, "GetThemePartSize"));
open_theme_ = reinterpret_cast<OpenThemeDataPtr>(
GetProcAddress(theme_dll_, "OpenThemeData"));
close_theme_ = reinterpret_cast<CloseThemeDataPtr>(
GetProcAddress(theme_dll_, "CloseThemeData"));
set_theme_properties_ = reinterpret_cast<SetThemeAppPropertiesPtr>(
GetProcAddress(theme_dll_, "SetThemeAppProperties"));
is_theme_active_ = reinterpret_cast<IsThemeActivePtr>(
GetProcAddress(theme_dll_, "IsThemeActive"));
get_theme_int_ = reinterpret_cast<GetThemeIntPtr>(
GetProcAddress(theme_dll_, "GetThemeInt"));
}
memset(theme_handles_, 0, sizeof(theme_handles_));
// Initialize the cached system colors.
UpdateSystemColors();
}
NativeThemeWin::~NativeThemeWin() {
if (theme_dll_) {
// todo (cpu): fix this soon. Making a call to CloseHandles() here breaks
// certain tests and the reliability bots.
// CloseHandles();
FreeLibrary(theme_dll_);
}
}
void NativeThemeWin::OnSysColorChange() {
UpdateSystemColors();
is_using_high_contrast_valid_ = false;
NotifyObservers();
}
void NativeThemeWin::UpdateSystemColors() {
for (int kSystemColor : kSystemColors)
system_colors_[kSystemColor] = color_utils::GetSysSkColor(kSystemColor);
}
void NativeThemeWin::PaintMenuSeparator(SkCanvas* canvas,
const gfx::Rect& rect) const {
SkPaint paint;
paint.setColor(GetSystemColor(NativeTheme::kColorId_MenuSeparatorColor));
int position_y = rect.y() + rect.height() / 2;
canvas->drawLine(rect.x(), position_y, rect.right(), position_y, paint);
}
void NativeThemeWin::PaintMenuGutter(SkCanvas* canvas,
const gfx::Rect& rect) const {
SkPaint paint;
paint.setColor(GetSystemColor(NativeTheme::kColorId_MenuSeparatorColor));
int position_x = rect.x() + rect.width() / 2;
canvas->drawLine(position_x, rect.y(), position_x, rect.bottom(), paint);
}
void NativeThemeWin::PaintMenuBackground(SkCanvas* canvas,
const gfx::Rect& rect) const {
SkPaint paint;
paint.setColor(GetSystemColor(NativeTheme::kColorId_MenuBackgroundColor));
canvas->drawRect(gfx::RectToSkRect(rect), paint);
}
SkColor NativeThemeWin::GetSystemColor(ColorId color_id) const {
const bool md = ui::MaterialDesignController::IsModeMaterial();
if (!md) {
// Link:
const SkColor kLinkPressedColor = SkColorSetRGB(200, 0, 0);
switch (color_id) {
// Link
case kColorId_LinkDisabled:
return system_colors_[COLOR_WINDOWTEXT];
case kColorId_LinkEnabled:
return system_colors_[COLOR_HOTLIGHT];
case kColorId_LinkPressed:
return kLinkPressedColor;
default:
break;
}
}
// TODO: Obtain the correct colors using GetSysColor.
// Dialogs:
const SkColor kDialogBackgroundColor = SkColorSetRGB(251, 251, 251);
// FocusableBorder:
const SkColor kFocusedBorderColor = SkColorSetRGB(0x4d, 0x90, 0xfe);
const SkColor kUnfocusedBorderColor = SkColorSetRGB(0xd9, 0xd9, 0xd9);
// Button:
const SkColor kButtonBackgroundColor = SkColorSetRGB(0xde, 0xde, 0xde);
const SkColor kButtonHighlightColor = SkColorSetARGB(200, 255, 255, 255);
const SkColor kButtonHoverColor = SkColorSetRGB(6, 45, 117);
const SkColor kCallToActionColorInvert = gfx::kGoogleBlue300;
// MenuItem:
const SkColor kMenuSchemeHighlightBackgroundColorInvert =
SkColorSetRGB(0x30, 0x30, 0x30);
// Table:
const SkColor kPositiveTextColor = SkColorSetRGB(0x0b, 0x80, 0x43);
const SkColor kNegativeTextColor = SkColorSetRGB(0xc5, 0x39, 0x29);
// Results Tables:
const SkColor kResultsTableUrlColor =
md ? gfx::kGoogleBlue700 : SkColorSetRGB(0x0b, 0x80, 0x43);
const SkColor kResultsTableSelectedUrlColor = SK_ColorWHITE;
switch (color_id) {
// Windows
case kColorId_WindowBackground:
return system_colors_[COLOR_WINDOW];
// Dialogs
case kColorId_DialogBackground:
case kColorId_BubbleBackground:
return color_utils::IsInvertedColorScheme() ?
color_utils::InvertColor(kDialogBackgroundColor) :
kDialogBackgroundColor;
// FocusableBorder
case kColorId_FocusedBorderColor:
return kFocusedBorderColor;
case kColorId_UnfocusedBorderColor:
return kUnfocusedBorderColor;
// Button
case kColorId_ButtonBackgroundColor:
return kButtonBackgroundColor;
case kColorId_ButtonEnabledColor:
return system_colors_[COLOR_BTNTEXT];
case kColorId_ButtonHighlightColor:
return kButtonHighlightColor;
case kColorId_ButtonHoverColor:
return kButtonHoverColor;
// Label
case kColorId_LabelEnabledColor:
return system_colors_[COLOR_BTNTEXT];
case kColorId_LabelDisabledColor:
return system_colors_[COLOR_GRAYTEXT];
case kColorId_LabelBackgroundColor:
return system_colors_[COLOR_WINDOW];
// Textfield
case kColorId_TextfieldDefaultColor:
return system_colors_[COLOR_WINDOWTEXT];
case kColorId_TextfieldDefaultBackground:
return system_colors_[COLOR_WINDOW];
case kColorId_TextfieldReadOnlyColor:
return system_colors_[COLOR_GRAYTEXT];
case kColorId_TextfieldReadOnlyBackground:
return system_colors_[COLOR_3DFACE];
case kColorId_TextfieldSelectionColor:
return system_colors_[COLOR_HIGHLIGHTTEXT];
case kColorId_TextfieldSelectionBackgroundFocused:
return system_colors_[COLOR_HIGHLIGHT];
// Tooltip
case kColorId_TooltipBackground:
case kColorId_TooltipText:
NOTREACHED();
return gfx::kPlaceholderColor;
// Tree
// NOTE: these aren't right for all themes, but as close as I could get.
case kColorId_TreeBackground:
return system_colors_[COLOR_WINDOW];
case kColorId_TreeText:
return system_colors_[COLOR_WINDOWTEXT];
case kColorId_TreeSelectedText:
return system_colors_[COLOR_HIGHLIGHTTEXT];
case kColorId_TreeSelectedTextUnfocused:
return system_colors_[COLOR_BTNTEXT];
case kColorId_TreeSelectionBackgroundFocused:
return system_colors_[COLOR_HIGHLIGHT];
case kColorId_TreeSelectionBackgroundUnfocused:
return system_colors_[IsUsingHighContrastTheme() ?
COLOR_MENUHIGHLIGHT : COLOR_BTNFACE];
case kColorId_TreeArrow:
return system_colors_[COLOR_WINDOWTEXT];
// Table
case kColorId_TableBackground:
return system_colors_[COLOR_WINDOW];
case kColorId_TableText:
return system_colors_[COLOR_WINDOWTEXT];
case kColorId_TableSelectedText:
return system_colors_[COLOR_HIGHLIGHTTEXT];
case kColorId_TableSelectedTextUnfocused:
return system_colors_[COLOR_BTNTEXT];
case kColorId_TableSelectionBackgroundFocused:
return system_colors_[COLOR_HIGHLIGHT];
case kColorId_TableSelectionBackgroundUnfocused:
return system_colors_[IsUsingHighContrastTheme() ?
COLOR_MENUHIGHLIGHT : COLOR_BTNFACE];
case kColorId_TableGroupingIndicatorColor:
return system_colors_[COLOR_GRAYTEXT];
// Results Tables
case kColorId_ResultsTableNormalBackground:
return system_colors_[COLOR_WINDOW];
case kColorId_ResultsTableHoveredBackground:
return color_utils::AlphaBlend(system_colors_[COLOR_HIGHLIGHT],
system_colors_[COLOR_WINDOW], 0x40);
case kColorId_ResultsTableSelectedBackground:
return system_colors_[COLOR_HIGHLIGHT];
case kColorId_ResultsTableNormalText:
return system_colors_[COLOR_WINDOWTEXT];
case kColorId_ResultsTableHoveredText:
return color_utils::GetReadableColor(
system_colors_[COLOR_WINDOWTEXT],
GetSystemColor(kColorId_ResultsTableHoveredBackground));
case kColorId_ResultsTableSelectedText:
return system_colors_[COLOR_HIGHLIGHTTEXT];
case kColorId_ResultsTableNormalDimmedText:
return color_utils::AlphaBlend(system_colors_[COLOR_WINDOWTEXT],
system_colors_[COLOR_WINDOW], 0x80);
case kColorId_ResultsTableHoveredDimmedText:
return color_utils::AlphaBlend(
system_colors_[COLOR_WINDOWTEXT],
GetSystemColor(kColorId_ResultsTableHoveredBackground), 0x80);
case kColorId_ResultsTableSelectedDimmedText:
return color_utils::AlphaBlend(system_colors_[COLOR_HIGHLIGHTTEXT],
system_colors_[COLOR_HIGHLIGHT], 0x80);
case kColorId_ResultsTableNormalUrl:
return color_utils::GetReadableColor(kResultsTableUrlColor,
system_colors_[COLOR_WINDOW]);
case kColorId_ResultsTableHoveredUrl:
return color_utils::PickContrastingColor(
kResultsTableUrlColor, kResultsTableSelectedUrlColor,
GetSystemColor(kColorId_ResultsTableHoveredBackground));
case kColorId_ResultsTableSelectedUrl:
return color_utils::PickContrastingColor(
kResultsTableUrlColor, kResultsTableSelectedUrlColor,
system_colors_[COLOR_HIGHLIGHT]);
case kColorId_ResultsTablePositiveText:
return color_utils::GetReadableColor(kPositiveTextColor,
system_colors_[COLOR_WINDOW]);
case kColorId_ResultsTablePositiveHoveredText:
return color_utils::GetReadableColor(
kPositiveTextColor,
GetSystemColor(kColorId_ResultsTableHoveredBackground));
case kColorId_ResultsTablePositiveSelectedText:
return color_utils::GetReadableColor(kPositiveTextColor,
system_colors_[COLOR_HIGHLIGHT]);
case kColorId_ResultsTableNegativeText:
return color_utils::GetReadableColor(kNegativeTextColor,
system_colors_[COLOR_WINDOW]);
case kColorId_ResultsTableNegativeHoveredText:
return color_utils::GetReadableColor(
kNegativeTextColor,
GetSystemColor(kColorId_ResultsTableHoveredBackground));
case kColorId_ResultsTableNegativeSelectedText:
return color_utils::GetReadableColor(kNegativeTextColor,
system_colors_[COLOR_HIGHLIGHT]);
default:
break;
}
if (color_utils::IsInvertedColorScheme()) {
switch (color_id) {
case NativeTheme::kColorId_FocusedMenuItemBackgroundColor:
return kMenuSchemeHighlightBackgroundColorInvert;
case NativeTheme::kColorId_CallToActionColor:
return kCallToActionColorInvert;
default:
return color_utils::InvertColor(GetAuraColor(color_id, this));
}
}
return GetAuraColor(color_id, this);
}
HRESULT NativeThemeWin::GetThemePartSize(ThemeName theme_name,
HDC hdc,
int part_id,
int state_id,
RECT* rect,
int ts,
SIZE* size) const {
HANDLE handle = GetThemeHandle(theme_name);
return (handle && get_theme_part_size_) ?
get_theme_part_size_(handle, hdc, part_id, state_id, rect, ts, size) :
E_NOTIMPL;
}
HRESULT NativeThemeWin::PaintButton(HDC hdc,
State state,
const ButtonExtraParams& extra,
int part_id,
int state_id,
RECT* rect) const {
HANDLE handle = GetThemeHandle(BUTTON);
if (handle && draw_theme_)
return draw_theme_(handle, hdc, part_id, state_id, rect, NULL);
// Adjust classic_state based on part, state, and extras.
int classic_state = extra.classic_state;
switch (part_id) {
case BP_CHECKBOX:
classic_state |= DFCS_BUTTONCHECK;
break;
case BP_RADIOBUTTON:
classic_state |= DFCS_BUTTONRADIO;
break;
case BP_PUSHBUTTON:
classic_state |= DFCS_BUTTONPUSH;
break;
default:
NOTREACHED();
break;
}
switch (state) {
case kDisabled:
classic_state |= DFCS_INACTIVE;
break;
case kHovered:
case kNormal:
break;
case kPressed:
classic_state |= DFCS_PUSHED;
break;
case kNumStates:
NOTREACHED();
break;
}
if (extra.checked)
classic_state |= DFCS_CHECKED;
// Draw it manually.
// All pressed states have both low bits set, and no other states do.
const bool focused = ((state_id & ETS_FOCUSED) == ETS_FOCUSED);
const bool pressed = ((state_id & PBS_PRESSED) == PBS_PRESSED);
if ((BP_PUSHBUTTON == part_id) && (pressed || focused)) {
// BP_PUSHBUTTON has a focus rect drawn around the outer edge, and the
// button itself is shrunk by 1 pixel.
HBRUSH brush = GetSysColorBrush(COLOR_3DDKSHADOW);
if (brush) {
FrameRect(hdc, rect, brush);
InflateRect(rect, -1, -1);
}
}
DrawFrameControl(hdc, rect, DFC_BUTTON, classic_state);
// Draw the focus rectangle (the dotted line box) only on buttons. For radio
// and checkboxes, we let webkit draw the focus rectangle (orange glow).
if ((BP_PUSHBUTTON == part_id) && focused) {
// The focus rect is inside the button. The exact number of pixels depends
// on whether we're in classic mode or using uxtheme.
if (handle && get_theme_content_rect_) {
get_theme_content_rect_(handle, hdc, part_id, state_id, rect, rect);
} else {
InflateRect(rect, -GetSystemMetrics(SM_CXEDGE),
-GetSystemMetrics(SM_CYEDGE));
}
DrawFocusRect(hdc, rect);
}
// Classic theme doesn't support indeterminate checkboxes. We draw
// a recangle inside a checkbox like IE10 does.
if (part_id == BP_CHECKBOX && extra.indeterminate) {
RECT inner_rect = *rect;
// "4 / 13" is same as IE10 in classic theme.
int padding = (inner_rect.right - inner_rect.left) * 4 / 13;
InflateRect(&inner_rect, -padding, -padding);
int color_index = state == kDisabled ? COLOR_GRAYTEXT : COLOR_WINDOWTEXT;
FillRect(hdc, &inner_rect, GetSysColorBrush(color_index));
}
return S_OK;
}
HRESULT NativeThemeWin::PaintMenuArrow(
HDC hdc,
State state,
const gfx::Rect& rect,
const MenuArrowExtraParams& extra) const {
int state_id = MSM_NORMAL;
if (state == kDisabled)
state_id = MSM_DISABLED;
HANDLE handle = GetThemeHandle(MENU);
RECT rect_win = rect.ToRECT();
if (handle && draw_theme_) {
if (extra.pointing_right) {
return draw_theme_(handle, hdc, MENU_POPUPSUBMENU, state_id, &rect_win,
NULL);
}
// There is no way to tell the uxtheme API to draw a left pointing arrow; it
// doesn't have a flag equivalent to DFCS_MENUARROWRIGHT. But they are
// needed for RTL locales on Vista. So use a memory DC and mirror the
// region with GDI's StretchBlt.
gfx::Rect r(rect);
base::win::ScopedCreateDC mem_dc(CreateCompatibleDC(hdc));
base::win::ScopedBitmap mem_bitmap(CreateCompatibleBitmap(hdc, r.width(),
r.height()));
base::win::ScopedSelectObject select_bitmap(mem_dc.Get(), mem_bitmap.get());
// Copy and horizontally mirror the background from hdc into mem_dc. Use
// a negative-width source rect, starting at the rightmost pixel.
StretchBlt(mem_dc.Get(), 0, 0, r.width(), r.height(),
hdc, r.right()-1, r.y(), -r.width(), r.height(), SRCCOPY);
// Draw the arrow.
RECT theme_rect = {0, 0, r.width(), r.height()};
HRESULT result = draw_theme_(handle, mem_dc.Get(), MENU_POPUPSUBMENU,
state_id, &theme_rect, NULL);
// Copy and mirror the result back into mem_dc.
StretchBlt(hdc, r.x(), r.y(), r.width(), r.height(),
mem_dc.Get(), r.width()-1, 0, -r.width(), r.height(), SRCCOPY);
return result;
}
// For some reason, Windows uses the name DFCS_MENUARROWRIGHT to indicate a
// left pointing arrow. This makes the following statement counterintuitive.
UINT pfc_state = extra.pointing_right ? DFCS_MENUARROW : DFCS_MENUARROWRIGHT;
return PaintFrameControl(hdc, rect, DFC_MENU, pfc_state, extra.is_selected,
state);
}
HRESULT NativeThemeWin::PaintMenuCheck(
HDC hdc,
State state,
const gfx::Rect& rect,
const MenuCheckExtraParams& extra) const {
HANDLE handle = GetThemeHandle(MENU);
if (handle && draw_theme_) {
const int state_id = extra.is_radio ?
((state == kDisabled) ? MC_BULLETDISABLED : MC_BULLETNORMAL) :
((state == kDisabled) ? MC_CHECKMARKDISABLED : MC_CHECKMARKNORMAL);
RECT rect_win = rect.ToRECT();
return draw_theme_(handle, hdc, MENU_POPUPCHECK, state_id, &rect_win, NULL);
}
return PaintFrameControl(hdc, rect, DFC_MENU,
extra.is_radio ? DFCS_MENUBULLET : DFCS_MENUCHECK,
extra.is_selected, state);
}
HRESULT NativeThemeWin::PaintMenuCheckBackground(HDC hdc,
State state,
const gfx::Rect& rect) const {
HANDLE handle = GetThemeHandle(MENU);
if (!handle || !draw_theme_)
return S_OK; // Nothing to do for background.
int state_id = state == kDisabled ? MCB_DISABLED : MCB_NORMAL;
RECT rect_win = rect.ToRECT();
return draw_theme_(handle, hdc, MENU_POPUPCHECKBACKGROUND, state_id,
&rect_win, NULL);
}
HRESULT NativeThemeWin::PaintPushButton(HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const ButtonExtraParams& extra) const {
int state_id = extra.is_default ? PBS_DEFAULTED : PBS_NORMAL;
switch (state) {
case kDisabled:
state_id = PBS_DISABLED;
break;
case kHovered:
state_id = PBS_HOT;
break;
case kNormal:
break;
case kPressed:
state_id = PBS_PRESSED;
break;
case kNumStates:
NOTREACHED();
break;
}
RECT rect_win = rect.ToRECT();
return PaintButton(hdc, state, extra, BP_PUSHBUTTON, state_id, &rect_win);
}
HRESULT NativeThemeWin::PaintRadioButton(HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const ButtonExtraParams& extra) const {
int state_id = extra.checked ? RBS_CHECKEDNORMAL : RBS_UNCHECKEDNORMAL;
switch (state) {
case kDisabled:
state_id = extra.checked ? RBS_CHECKEDDISABLED : RBS_UNCHECKEDDISABLED;
break;
case kHovered:
state_id = extra.checked ? RBS_CHECKEDHOT : RBS_UNCHECKEDHOT;
break;
case kNormal:
break;
case kPressed:
state_id = extra.checked ? RBS_CHECKEDPRESSED : RBS_UNCHECKEDPRESSED;
break;
case kNumStates:
NOTREACHED();
break;
}
RECT rect_win = rect.ToRECT();
return PaintButton(hdc, state, extra, BP_RADIOBUTTON, state_id, &rect_win);
}
HRESULT NativeThemeWin::PaintCheckbox(HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const ButtonExtraParams& extra) const {
int state_id = extra.checked ?
CBS_CHECKEDNORMAL :
(extra.indeterminate ? CBS_MIXEDNORMAL : CBS_UNCHECKEDNORMAL);
switch (state) {
case kDisabled:
state_id = extra.checked ?
CBS_CHECKEDDISABLED :
(extra.indeterminate ? CBS_MIXEDDISABLED : CBS_UNCHECKEDDISABLED);
break;
case kHovered:
state_id = extra.checked ?
CBS_CHECKEDHOT :
(extra.indeterminate ? CBS_MIXEDHOT : CBS_UNCHECKEDHOT);
break;
case kNormal:
break;
case kPressed:
state_id = extra.checked ?
CBS_CHECKEDPRESSED :
(extra.indeterminate ? CBS_MIXEDPRESSED : CBS_UNCHECKEDPRESSED);
break;
case kNumStates:
NOTREACHED();
break;
}
RECT rect_win = rect.ToRECT();
return PaintButton(hdc, state, extra, BP_CHECKBOX, state_id, &rect_win);
}
HRESULT NativeThemeWin::PaintMenuList(HDC hdc,
State state,
const gfx::Rect& rect,
const MenuListExtraParams& extra) const {
HANDLE handle = GetThemeHandle(MENULIST);
RECT rect_win = rect.ToRECT();
int state_id = CBXS_NORMAL;
switch (state) {
case kDisabled:
state_id = CBXS_DISABLED;
break;
case kHovered:
state_id = CBXS_HOT;
break;
case kNormal:
break;
case kPressed:
state_id = CBXS_PRESSED;
break;
case kNumStates:
NOTREACHED();
break;
}
if (handle && draw_theme_)
return draw_theme_(handle, hdc, CP_DROPDOWNBUTTON, state_id, &rect_win,
NULL);
// Draw it manually.
DrawFrameControl(hdc, &rect_win, DFC_SCROLL,
DFCS_SCROLLCOMBOBOX | extra.classic_state);
return S_OK;
}
HRESULT NativeThemeWin::PaintScrollbarArrow(
HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const ScrollbarArrowExtraParams& extra) const {
static const int state_id_matrix[4][kNumStates] = {
{ABS_DOWNDISABLED, ABS_DOWNHOT, ABS_DOWNNORMAL, ABS_DOWNPRESSED},
{ABS_LEFTDISABLED, ABS_LEFTHOT, ABS_LEFTNORMAL, ABS_LEFTPRESSED},
{ABS_RIGHTDISABLED, ABS_RIGHTHOT, ABS_RIGHTNORMAL, ABS_RIGHTPRESSED},
{ABS_UPDISABLED, ABS_UPHOT, ABS_UPNORMAL, ABS_UPPRESSED},
};
HANDLE handle = GetThemeHandle(SCROLLBAR);
RECT rect_win = rect.ToRECT();
if (handle && draw_theme_) {
int index = part - kScrollbarDownArrow;
DCHECK_GE(index, 0);
DCHECK_LT(static_cast<size_t>(index), arraysize(state_id_matrix));
int state_id = state_id_matrix[index][state];
// Hovering means that the cursor is over the scroolbar, but not over the
// specific arrow itself. We don't want to show it "hot" mode, but only
// in "hover" mode.
if (state == kHovered && extra.is_hovering) {
switch (part) {
case kScrollbarDownArrow:
state_id = ABS_DOWNHOVER;
break;
case kScrollbarLeftArrow:
state_id = ABS_LEFTHOVER;
break;
case kScrollbarRightArrow:
state_id = ABS_RIGHTHOVER;
break;
case kScrollbarUpArrow:
state_id = ABS_UPHOVER;
break;
default:
NOTREACHED();
break;
}
}
return PaintScaledTheme(handle, hdc, SBP_ARROWBTN, state_id, rect);
}
int classic_state = DFCS_SCROLLDOWN;
switch (part) {
case kScrollbarDownArrow:
break;
case kScrollbarLeftArrow:
classic_state = DFCS_SCROLLLEFT;
break;
case kScrollbarRightArrow:
classic_state = DFCS_SCROLLRIGHT;
break;
case kScrollbarUpArrow:
classic_state = DFCS_SCROLLUP;
break;
default:
NOTREACHED();
break;
}
switch (state) {
case kDisabled:
classic_state |= DFCS_INACTIVE;
break;
case kHovered:
classic_state |= DFCS_HOT;
break;
case kNormal:
break;
case kPressed:
classic_state |= DFCS_PUSHED;
break;
case kNumStates:
NOTREACHED();
break;
}
DrawFrameControl(hdc, &rect_win, DFC_SCROLL, classic_state);
return S_OK;
}
HRESULT NativeThemeWin::PaintScrollbarThumb(
HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const ScrollbarThumbExtraParams& extra) const {
HANDLE handle = GetThemeHandle(SCROLLBAR);
RECT rect_win = rect.ToRECT();
int part_id = SBP_THUMBBTNVERT;
switch (part) {
case kScrollbarHorizontalThumb:
part_id = SBP_THUMBBTNHORZ;
break;
case kScrollbarVerticalThumb:
break;
case kScrollbarHorizontalGripper:
part_id = SBP_GRIPPERHORZ;
break;
case kScrollbarVerticalGripper:
part_id = SBP_GRIPPERVERT;
break;
default:
NOTREACHED();
break;
}
int state_id = SCRBS_NORMAL;
switch (state) {
case kDisabled:
state_id = SCRBS_DISABLED;
break;
case kHovered:
state_id = extra.is_hovering ? SCRBS_HOVER : SCRBS_HOT;
break;
case kNormal:
break;
case kPressed:
state_id = SCRBS_PRESSED;
break;
case kNumStates:
NOTREACHED();
break;
}
if (handle && draw_theme_)
return PaintScaledTheme(handle, hdc, part_id, state_id, rect);
// Draw it manually.
if ((part_id == SBP_THUMBBTNHORZ) || (part_id == SBP_THUMBBTNVERT))
DrawEdge(hdc, &rect_win, EDGE_RAISED, BF_RECT | BF_MIDDLE);
// Classic mode doesn't have a gripper.
return S_OK;
}
HRESULT NativeThemeWin::PaintScrollbarTrack(
SkCanvas* canvas,
HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const ScrollbarTrackExtraParams& extra) const {
HANDLE handle = GetThemeHandle(SCROLLBAR);
RECT rect_win = rect.ToRECT();
const int part_id = extra.is_upper ?
((part == kScrollbarHorizontalTrack) ?
SBP_UPPERTRACKHORZ : SBP_UPPERTRACKVERT) :
((part == kScrollbarHorizontalTrack) ?
SBP_LOWERTRACKHORZ : SBP_LOWERTRACKVERT);
int state_id = SCRBS_NORMAL;
switch (state) {
case kDisabled:
state_id = SCRBS_DISABLED;
break;
case kHovered:
state_id = SCRBS_HOVER;
break;
case kNormal:
break;
case kPressed:
state_id = SCRBS_PRESSED;
break;
case kNumStates:
NOTREACHED();
break;
}
if (handle && draw_theme_)
return draw_theme_(handle, hdc, part_id, state_id, &rect_win, NULL);
// Draw it manually.
if ((system_colors_[COLOR_SCROLLBAR] != system_colors_[COLOR_3DFACE]) &&
(system_colors_[COLOR_SCROLLBAR] != system_colors_[COLOR_WINDOW])) {
FillRect(hdc, &rect_win, reinterpret_cast<HBRUSH>(COLOR_SCROLLBAR + 1));
} else {
SkPaint paint;
RECT align_rect = gfx::Rect(extra.track_x, extra.track_y, extra.track_width,
extra.track_height).ToRECT();
SetCheckerboardShader(&paint, align_rect);
canvas->drawIRect(skia::RECTToSkIRect(rect_win), paint);
}
if (extra.classic_state & DFCS_PUSHED)
InvertRect(hdc, &rect_win);
return S_OK;
}
HRESULT NativeThemeWin::PaintSpinButton(
HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const InnerSpinButtonExtraParams& extra) const {
HANDLE handle = GetThemeHandle(SPIN);
RECT rect_win = rect.ToRECT();
int part_id = extra.spin_up ? SPNP_UP : SPNP_DOWN;
int state_id = extra.spin_up ? UPS_NORMAL : DNS_NORMAL;
switch (state) {
case kDisabled:
state_id = extra.spin_up ? UPS_DISABLED : DNS_DISABLED;
break;
case kHovered:
state_id = extra.spin_up ? UPS_HOT : DNS_HOT;
break;
case kNormal:
break;
case kPressed:
state_id = extra.spin_up ? UPS_PRESSED : DNS_PRESSED;
break;
case kNumStates:
NOTREACHED();
break;
}
if (handle && draw_theme_)
return draw_theme_(handle, hdc, part_id, state_id, &rect_win, NULL);
DrawFrameControl(hdc, &rect_win, DFC_SCROLL, extra.classic_state);
return S_OK;
}
HRESULT NativeThemeWin::PaintTrackbar(
SkCanvas* canvas,
HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const TrackbarExtraParams& extra) const {
const int part_id = extra.vertical ?
((part == kTrackbarTrack) ? TKP_TRACKVERT : TKP_THUMBVERT) :
((part == kTrackbarTrack) ? TKP_TRACK : TKP_THUMBBOTTOM);
int state_id = TUS_NORMAL;
switch (state) {
case kDisabled:
state_id = TUS_DISABLED;
break;
case kHovered:
state_id = TUS_HOT;
break;
case kNormal:
break;
case kPressed:
state_id = TUS_PRESSED;
break;
case kNumStates:
NOTREACHED();
break;
}
// Make the channel be 4 px thick in the center of the supplied rect. (4 px
// matches what XP does in various menus; GetThemePartSize() doesn't seem to
// return good values here.)
RECT rect_win = rect.ToRECT();
RECT channel_rect = rect.ToRECT();
const int channel_thickness = 4;
if (part_id == TKP_TRACK) {
channel_rect.top +=
((channel_rect.bottom - channel_rect.top - channel_thickness) / 2);
channel_rect.bottom = channel_rect.top + channel_thickness;
} else if (part_id == TKP_TRACKVERT) {
channel_rect.left +=
((channel_rect.right - channel_rect.left - channel_thickness) / 2);
channel_rect.right = channel_rect.left + channel_thickness;
} // else this isn't actually a channel, so |channel_rect| == |rect|.
HANDLE handle = GetThemeHandle(TRACKBAR);
if (handle && draw_theme_)
return draw_theme_(handle, hdc, part_id, state_id, &channel_rect, NULL);
// Classic mode, draw it manually.
if ((part_id == TKP_TRACK) || (part_id == TKP_TRACKVERT)) {
DrawEdge(hdc, &channel_rect, EDGE_SUNKEN, BF_RECT);
} else if (part_id == TKP_THUMBVERT) {
DrawEdge(hdc, &rect_win, EDGE_RAISED, BF_RECT | BF_SOFT | BF_MIDDLE);
} else {
// Split rect into top and bottom pieces.
RECT top_section = rect.ToRECT();
RECT bottom_section = rect.ToRECT();
top_section.bottom -= ((bottom_section.right - bottom_section.left) / 2);
bottom_section.top = top_section.bottom;
DrawEdge(hdc, &top_section, EDGE_RAISED,
BF_LEFT | BF_TOP | BF_RIGHT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
// Split triangular piece into two diagonals.
RECT& left_half = bottom_section;
RECT right_half = bottom_section;
right_half.left += ((bottom_section.right - bottom_section.left) / 2);
left_half.right = right_half.left;
DrawEdge(hdc, &left_half, EDGE_RAISED,
BF_DIAGONAL_ENDTOPLEFT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
DrawEdge(hdc, &right_half, EDGE_RAISED,
BF_DIAGONAL_ENDBOTTOMLEFT | BF_SOFT | BF_MIDDLE | BF_ADJUST);
// If the button is pressed, draw hatching.
if (extra.classic_state & DFCS_PUSHED) {
SkPaint paint;
SetCheckerboardShader(&paint, rect_win);
// Fill all three pieces with the pattern.
canvas->drawIRect(skia::RECTToSkIRect(top_section), paint);
SkScalar left_triangle_top = SkIntToScalar(left_half.top);
SkScalar left_triangle_right = SkIntToScalar(left_half.right);
SkPath left_triangle;
left_triangle.moveTo(SkIntToScalar(left_half.left), left_triangle_top);
left_triangle.lineTo(left_triangle_right, left_triangle_top);
left_triangle.lineTo(left_triangle_right,
SkIntToScalar(left_half.bottom));
left_triangle.close();
canvas->drawPath(left_triangle, paint);
SkScalar right_triangle_left = SkIntToScalar(right_half.left);
SkScalar right_triangle_top = SkIntToScalar(right_half.top);
SkPath right_triangle;
right_triangle.moveTo(right_triangle_left, right_triangle_top);
right_triangle.lineTo(SkIntToScalar(right_half.right),
right_triangle_top);
right_triangle.lineTo(right_triangle_left,
SkIntToScalar(right_half.bottom));
right_triangle.close();
canvas->drawPath(right_triangle, paint);
}
}
return S_OK;
}
HRESULT NativeThemeWin::PaintProgressBar(
HDC hdc,
const gfx::Rect& rect,
const ProgressBarExtraParams& extra) const {
// There is no documentation about the animation speed, frame-rate, nor
// size of moving overlay of the indeterminate progress bar.
// So we just observed real-world programs and guessed following parameters.
const int kDeterminateOverlayPixelsPerSecond = 300;
const int kDeterminateOverlayWidth = 120;
const int kIndeterminateOverlayPixelsPerSecond = 175;
const int kVistaIndeterminateOverlayWidth = 120;
const int kXPIndeterminateOverlayWidth = 55;
// The thickness of the bar frame inside |value_rect|
const int kXPBarPadding = 3;
RECT bar_rect = rect.ToRECT();
RECT value_rect = gfx::Rect(extra.value_rect_x,
extra.value_rect_y,
extra.value_rect_width,
extra.value_rect_height).ToRECT();
HANDLE handle = GetThemeHandle(PROGRESS);
if (!handle || !draw_theme_ || !draw_theme_ex_) {
FillRect(hdc, &bar_rect, GetSysColorBrush(COLOR_BTNFACE));
FillRect(hdc, &value_rect, GetSysColorBrush(COLOR_BTNSHADOW));
DrawEdge(hdc, &bar_rect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
return S_OK;
}
draw_theme_(handle, hdc, PP_BAR, 0, &bar_rect, NULL);
bool pre_vista = base::win::GetVersion() < base::win::VERSION_VISTA;
int bar_width = bar_rect.right - bar_rect.left;
if (!extra.determinate) {
// The glossy overlay for the indeterminate progress bar has a small pause
// after each animation. We emulate this by adding an invisible margin the
// animation has to traverse.
int width_with_margin = bar_width + kIndeterminateOverlayPixelsPerSecond;
int overlay_width = pre_vista ?
kXPIndeterminateOverlayWidth : kVistaIndeterminateOverlayWidth;
RECT overlay_rect = bar_rect;
overlay_rect.left += ComputeAnimationProgress(
width_with_margin, overlay_width, kIndeterminateOverlayPixelsPerSecond,
extra.animated_seconds);
overlay_rect.right = overlay_rect.left + overlay_width;
if (pre_vista) {
RECT shrunk_rect = InsetRect(&overlay_rect, kXPBarPadding);
RECT shrunk_bar_rect = InsetRect(&bar_rect, kXPBarPadding);
draw_theme_(handle, hdc, PP_CHUNK, 0, &shrunk_rect, &shrunk_bar_rect);
} else {
draw_theme_(handle, hdc, PP_MOVEOVERLAY, 0, &overlay_rect, &bar_rect);
}
return S_OK;
}
// We care about the direction here because PP_CHUNK painting is asymmetric.
// TODO(morrita): This RTL guess can be wrong. We should pass in the
// direction from WebKit.
const DTBGOPTS value_draw_options = {
sizeof(DTBGOPTS),
(bar_rect.right == value_rect.right && bar_rect.left != value_rect.left) ?
DTBG_MIRRORDC : 0u,
bar_rect
};
if (pre_vista) {
// On XP, the progress bar is chunk-style and has no glossy effect. We need
// to shrink the destination rect to fit the part inside the bar with an
// appropriate margin.
RECT shrunk_value_rect = InsetRect(&value_rect, kXPBarPadding);
draw_theme_ex_(handle, hdc, PP_CHUNK, 0, &shrunk_value_rect,
&value_draw_options);
} else {
// On Vista or later, the progress bar part has a single-block value part
// and a glossy effect. The value part has exactly same height as the bar
// part, so we don't need to shrink the rect.
draw_theme_ex_(handle, hdc, PP_FILL, 0, &value_rect, &value_draw_options);
RECT overlay_rect = value_rect;
overlay_rect.left += ComputeAnimationProgress(
bar_width, kDeterminateOverlayWidth, kDeterminateOverlayPixelsPerSecond,
extra.animated_seconds);
overlay_rect.right = overlay_rect.left + kDeterminateOverlayWidth;
draw_theme_(handle, hdc, PP_MOVEOVERLAY, 0, &overlay_rect, &value_rect);
}
return S_OK;
}
HRESULT NativeThemeWin::PaintWindowResizeGripper(HDC hdc,
const gfx::Rect& rect) const {
HANDLE handle = GetThemeHandle(STATUS);
RECT rect_win = rect.ToRECT();
if (handle && draw_theme_) {
// Paint the status bar gripper. There doesn't seem to be a standard
// gripper in Windows for the space between scrollbars. This is pretty
// close, but it's supposed to be painted over a status bar.
return draw_theme_(handle, hdc, SP_GRIPPER, 0, &rect_win, NULL);
}
// Draw a windows classic scrollbar gripper.
DrawFrameControl(hdc, &rect_win, DFC_SCROLL, DFCS_SCROLLSIZEGRIP);
return S_OK;
}
HRESULT NativeThemeWin::PaintTabPanelBackground(HDC hdc,
const gfx::Rect& rect) const {
HANDLE handle = GetThemeHandle(TAB);
RECT rect_win = rect.ToRECT();
if (handle && draw_theme_)
return draw_theme_(handle, hdc, TABP_BODY, 0, &rect_win, NULL);
// Classic just renders a flat color background.
FillRect(hdc, &rect_win, reinterpret_cast<HBRUSH>(COLOR_3DFACE + 1));
return S_OK;
}
HRESULT NativeThemeWin::PaintTextField(
HDC hdc,
Part part,
State state,
const gfx::Rect& rect,
const TextFieldExtraParams& extra) const {
int state_id = ETS_NORMAL;
switch (state) {
case kDisabled:
state_id = ETS_DISABLED;
break;
case kHovered:
state_id = ETS_HOT;
break;
case kNormal:
if (extra.is_read_only)
state_id = ETS_READONLY;
else if (extra.is_focused)
state_id = ETS_FOCUSED;
break;
case kPressed:
state_id = ETS_SELECTED;
break;
case kNumStates:
NOTREACHED();
break;
}
RECT rect_win = rect.ToRECT();
return PaintTextField(hdc, EP_EDITTEXT, state_id, extra.classic_state,
&rect_win,
skia::SkColorToCOLORREF(extra.background_color),
extra.fill_content_area, extra.draw_edges);
}
HRESULT NativeThemeWin::PaintTextField(HDC hdc,
int part_id,
int state_id,
int classic_state,
RECT* rect,
COLORREF color,
bool fill_content_area,
bool draw_edges) const {
// TODO(ojan): http://b/1210017 Figure out how to give the ability to
// exclude individual edges from being drawn.
HANDLE handle = GetThemeHandle(TEXTFIELD);
// TODO(mpcomplete): can we detect if the color is specified by the user,
// and if not, just use the system color?
// CreateSolidBrush() accepts a RGB value but alpha must be 0.
base::win::ScopedGDIObject<HBRUSH> bg_brush(CreateSolidBrush(color));
// DrawThemeBackgroundEx was introduced in XP SP2, so that it's possible
// draw_theme_ex_ is NULL and draw_theme_ is non-null.
if (!handle || (!draw_theme_ex_ && (!draw_theme_ || !draw_edges))) {
// Draw it manually.
if (draw_edges)
DrawEdge(hdc, rect, EDGE_SUNKEN, BF_RECT | BF_ADJUST);
if (fill_content_area) {
FillRect(hdc, rect, (classic_state & DFCS_INACTIVE)
? reinterpret_cast<HBRUSH>(COLOR_BTNFACE + 1)
: bg_brush.get());
}
return S_OK;
}
static const DTBGOPTS omit_border_options = {
sizeof(DTBGOPTS),
DTBG_OMITBORDER,
{ 0, 0, 0, 0 }
};
HRESULT hr = draw_theme_ex_ ?
draw_theme_ex_(handle, hdc, part_id, state_id, rect,
draw_edges ? NULL : &omit_border_options) :
draw_theme_(handle, hdc, part_id, state_id, rect, NULL);
// TODO(maruel): Need to be fixed if get_theme_content_rect_ is NULL.
if (fill_content_area && get_theme_content_rect_) {
RECT content_rect;
hr = get_theme_content_rect_(handle, hdc, part_id, state_id, rect,
&content_rect);
FillRect(hdc, &content_rect, bg_brush.get());
}
return hr;
}
HRESULT NativeThemeWin::PaintScaledTheme(HANDLE theme,
HDC hdc,
int part_id,
int state_id,
const gfx::Rect& rect) const {
// Correct the scaling and positioning of sub-components such as scrollbar
// arrows and thumb grippers in the event that the world transform applies
// scaling (e.g. in high-DPI mode).
XFORM save_transform;
if (GetWorldTransform(hdc, &save_transform)) {
float scale = save_transform.eM11;
if (scale != 1 && save_transform.eM12 == 0) {
ModifyWorldTransform(hdc, NULL, MWT_IDENTITY);
gfx::Rect scaled_rect = gfx::ScaleToEnclosedRect(rect, scale);
scaled_rect.Offset(save_transform.eDx, save_transform.eDy);
RECT bounds = scaled_rect.ToRECT();
HRESULT result = draw_theme_(theme, hdc, part_id, state_id, &bounds,
NULL);
SetWorldTransform(hdc, &save_transform);
return result;
}
}
RECT bounds = rect.ToRECT();
return draw_theme_(theme, hdc, part_id, state_id, &bounds, NULL);
}
// static
NativeThemeWin::ThemeName NativeThemeWin::GetThemeName(Part part) {
switch (part) {
case kCheckbox:
case kPushButton:
case kRadio:
return BUTTON;
case kInnerSpinButton:
return SPIN;
case kMenuList:
case kMenuCheck:
case kMenuPopupArrow:
case kMenuPopupGutter:
case kMenuPopupSeparator:
return MENU;
case kProgressBar:
return PROGRESS;
case kScrollbarDownArrow:
case kScrollbarLeftArrow:
case kScrollbarRightArrow:
case kScrollbarUpArrow:
case kScrollbarHorizontalThumb:
case kScrollbarVerticalThumb:
case kScrollbarHorizontalTrack:
case kScrollbarVerticalTrack:
return SCROLLBAR;
case kSliderTrack:
case kSliderThumb:
return TRACKBAR;
case kTextField:
return TEXTFIELD;
case kWindowResizeGripper:
return STATUS;
case kMenuCheckBackground:
case kMenuPopupBackground:
case kMenuItemBackground:
case kScrollbarHorizontalGripper:
case kScrollbarVerticalGripper:
case kScrollbarCorner:
case kTabPanelBackground:
case kTrackbarThumb:
case kTrackbarTrack:
case kMaxPart:
NOTREACHED();
}
return LAST;
}
// static
int NativeThemeWin::GetWindowsPart(Part part,
State state,
const ExtraParams& extra) {
switch (part) {
case kCheckbox:
return BP_CHECKBOX;
case kMenuCheck:
return MENU_POPUPCHECK;
case kMenuPopupArrow:
return MENU_POPUPSUBMENU;
case kMenuPopupGutter:
return MENU_POPUPGUTTER;
case kMenuPopupSeparator:
return MENU_POPUPSEPARATOR;
case kPushButton:
return BP_PUSHBUTTON;
case kRadio:
return BP_RADIOBUTTON;
case kScrollbarDownArrow:
case kScrollbarLeftArrow:
case kScrollbarRightArrow:
case kScrollbarUpArrow:
return SBP_ARROWBTN;
case kScrollbarHorizontalThumb:
return SBP_THUMBBTNHORZ;
case kScrollbarVerticalThumb:
return SBP_THUMBBTNVERT;
case kWindowResizeGripper:
return SP_GRIPPER;
case kInnerSpinButton:
case kMenuList:
case kMenuCheckBackground:
case kMenuPopupBackground:
case kMenuItemBackground:
case kProgressBar:
case kScrollbarHorizontalTrack:
case kScrollbarVerticalTrack:
case kScrollbarHorizontalGripper:
case kScrollbarVerticalGripper:
case kScrollbarCorner:
case kSliderTrack:
case kSliderThumb:
case kTabPanelBackground:
case kTextField:
case kTrackbarThumb:
case kTrackbarTrack:
case kMaxPart:
NOTREACHED();
}
return 0;
}
int NativeThemeWin::GetWindowsState(Part part,
State state,
const ExtraParams& extra) {
switch (part) {
case kCheckbox:
switch (state) {
case kDisabled:
return CBS_UNCHECKEDDISABLED;
case kHovered:
return CBS_UNCHECKEDHOT;
case kNormal:
return CBS_UNCHECKEDNORMAL;
case kPressed:
return CBS_UNCHECKEDPRESSED;
case kNumStates:
NOTREACHED();
return 0;
}
case kMenuCheck:
switch (state) {
case kDisabled:
return extra.menu_check.is_radio ?
MC_BULLETDISABLED : MC_CHECKMARKDISABLED;
case kHovered:
case kNormal:
case kPressed:
return extra.menu_check.is_radio ?
MC_BULLETNORMAL : MC_CHECKMARKNORMAL;
case kNumStates:
NOTREACHED();
return 0;
}
case kMenuPopupArrow:
case kMenuPopupGutter:
case kMenuPopupSeparator:
switch (state) {
case kDisabled:
return MBI_DISABLED;
case kHovered:
return MBI_HOT;
case kNormal:
return MBI_NORMAL;
case kPressed:
return MBI_PUSHED;
case kNumStates:
NOTREACHED();
return 0;
}
case kPushButton:
switch (state) {
case kDisabled:
return PBS_DISABLED;
case kHovered:
return PBS_HOT;
case kNormal:
return PBS_NORMAL;
case kPressed:
return PBS_PRESSED;
case kNumStates:
NOTREACHED();
return 0;
}
case kRadio:
switch (state) {
case kDisabled:
return RBS_UNCHECKEDDISABLED;
case kHovered:
return RBS_UNCHECKEDHOT;
case kNormal:
return RBS_UNCHECKEDNORMAL;
case kPressed:
return RBS_UNCHECKEDPRESSED;
case kNumStates:
NOTREACHED();
return 0;
}
case kScrollbarDownArrow:
switch (state) {
case kDisabled:
return ABS_DOWNDISABLED;
case kHovered:
// Mimic ScrollbarThemeChromiumWin.cpp in WebKit.
return base::win::GetVersion() < base::win::VERSION_VISTA ?
ABS_DOWNHOT : ABS_DOWNHOVER;
case kNormal:
return ABS_DOWNNORMAL;
case kPressed:
return ABS_DOWNPRESSED;
case kNumStates:
NOTREACHED();
return 0;
}
case kScrollbarLeftArrow:
switch (state) {
case kDisabled:
return ABS_LEFTDISABLED;
case kHovered:
// Mimic ScrollbarThemeChromiumWin.cpp in WebKit.
return base::win::GetVersion() < base::win::VERSION_VISTA ?
ABS_LEFTHOT : ABS_LEFTHOVER;
case kNormal:
return ABS_LEFTNORMAL;
case kPressed:
return ABS_LEFTPRESSED;
case kNumStates:
NOTREACHED();
return 0;
}
case kScrollbarRightArrow:
switch (state) {
case kDisabled:
return ABS_RIGHTDISABLED;
case kHovered:
// Mimic ScrollbarThemeChromiumWin.cpp in WebKit.
return base::win::GetVersion() < base::win::VERSION_VISTA ?
ABS_RIGHTHOT : ABS_RIGHTHOVER;
case kNormal:
return ABS_RIGHTNORMAL;
case kPressed:
return ABS_RIGHTPRESSED;
case kNumStates:
NOTREACHED();
return 0;
}
break;
case kScrollbarUpArrow:
switch (state) {
case kDisabled:
return ABS_UPDISABLED;
case kHovered:
// Mimic ScrollbarThemeChromiumWin.cpp in WebKit.
return base::win::GetVersion() < base::win::VERSION_VISTA ?
ABS_UPHOT : ABS_UPHOVER;
case kNormal:
return ABS_UPNORMAL;
case kPressed:
return ABS_UPPRESSED;
case kNumStates:
NOTREACHED();
return 0;
}
break;
case kScrollbarHorizontalThumb:
case kScrollbarVerticalThumb:
switch (state) {
case kDisabled:
return SCRBS_DISABLED;
case kHovered:
// Mimic WebKit's behaviour in ScrollbarThemeChromiumWin.cpp.
return base::win::GetVersion() < base::win::VERSION_VISTA ?
SCRBS_HOT : SCRBS_HOVER;
case kNormal:
return SCRBS_NORMAL;
case kPressed:
return SCRBS_PRESSED;
case kNumStates:
NOTREACHED();
return 0;
}
case kWindowResizeGripper:
switch (state) {
case kDisabled:
case kHovered:
case kNormal:
case kPressed:
return 1; // gripper has no windows state
case kNumStates:
NOTREACHED();
return 0;
}
case kInnerSpinButton:
case kMenuList:
case kMenuCheckBackground:
case kMenuPopupBackground:
case kMenuItemBackground:
case kProgressBar:
case kScrollbarHorizontalTrack:
case kScrollbarVerticalTrack:
case kScrollbarHorizontalGripper:
case kScrollbarVerticalGripper:
case kScrollbarCorner:
case kSliderTrack:
case kSliderThumb:
case kTabPanelBackground:
case kTextField:
case kTrackbarThumb:
case kTrackbarTrack:
case kMaxPart:
NOTREACHED();
}
return 0;
}
HRESULT NativeThemeWin::GetThemeInt(ThemeName theme,
int part_id,
int state_id,
int prop_id,
int *value) const {
HANDLE handle = GetThemeHandle(theme);
return (handle && get_theme_int_) ?
get_theme_int_(handle, part_id, state_id, prop_id, value) : E_NOTIMPL;
}
HRESULT NativeThemeWin::PaintFrameControl(HDC hdc,
const gfx::Rect& rect,
UINT type,
UINT state,
bool is_selected,
State control_state) const {
const int width = rect.width();
const int height = rect.height();
// DrawFrameControl for menu arrow/check wants a monochrome bitmap.
base::win::ScopedBitmap mask_bitmap(CreateBitmap(width, height, 1, 1, NULL));
if (mask_bitmap == NULL)
return E_OUTOFMEMORY;
base::win::ScopedCreateDC bitmap_dc(CreateCompatibleDC(NULL));
base::win::ScopedSelectObject select_bitmap(bitmap_dc.Get(),
mask_bitmap.get());
RECT local_rect = { 0, 0, width, height };
DrawFrameControl(bitmap_dc.Get(), &local_rect, type, state);
// We're going to use BitBlt with a b&w mask. This results in using the dest
// dc's text color for the black bits in the mask, and the dest dc's
// background color for the white bits in the mask. DrawFrameControl draws the
// check in black, and the background in white.
int bg_color_key = COLOR_MENU;
int text_color_key = COLOR_MENUTEXT;
switch (control_state) {
case kDisabled:
bg_color_key = is_selected ? COLOR_HIGHLIGHT : COLOR_MENU;
text_color_key = COLOR_GRAYTEXT;
break;
case kHovered:
bg_color_key = COLOR_HIGHLIGHT;
text_color_key = COLOR_HIGHLIGHTTEXT;
break;
case kNormal:
break;
case kPressed:
case kNumStates:
NOTREACHED();
break;
}
COLORREF old_bg_color = SetBkColor(hdc, GetSysColor(bg_color_key));
COLORREF old_text_color = SetTextColor(hdc, GetSysColor(text_color_key));
BitBlt(hdc, rect.x(), rect.y(), width, height, bitmap_dc.Get(), 0, 0,
SRCCOPY);
SetBkColor(hdc, old_bg_color);
SetTextColor(hdc, old_text_color);
return S_OK;
}
HANDLE NativeThemeWin::GetThemeHandle(ThemeName theme_name) const {
if (!open_theme_ || theme_name < 0 || theme_name >= LAST)
return 0;
if (theme_handles_[theme_name])
return theme_handles_[theme_name];
// Not found, try to load it.
HANDLE handle = 0;
switch (theme_name) {
case BUTTON:
handle = open_theme_(NULL, L"Button");
break;
case LIST:
handle = open_theme_(NULL, L"Listview");
break;
case MENU:
handle = open_theme_(NULL, L"Menu");
break;
case MENULIST:
handle = open_theme_(NULL, L"Combobox");
break;
case SCROLLBAR:
handle = open_theme_(NULL, L"Scrollbar");
break;
case STATUS:
handle = open_theme_(NULL, L"Status");
break;
case TAB:
handle = open_theme_(NULL, L"Tab");
break;
case TEXTFIELD:
handle = open_theme_(NULL, L"Edit");
break;
case TRACKBAR:
handle = open_theme_(NULL, L"Trackbar");
break;
case WINDOW:
handle = open_theme_(NULL, L"Window");
break;
case PROGRESS:
handle = open_theme_(NULL, L"Progress");
break;
case SPIN:
handle = open_theme_(NULL, L"Spin");
break;
case LAST:
NOTREACHED();
break;
}
theme_handles_[theme_name] = handle;
return handle;
}
} // namespace ui