blob: a91a8f6e5bc4d5f356f10461691ff1a1750b5cb6 [file] [log] [blame] [edit]
// Copyright 2014 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#include "xfa/fwl/theme/cfwl_pushbuttontp.h"
#include "xfa/fgas/graphics/cfgas_gecolor.h"
#include "xfa/fgas/graphics/cfgas_gegraphics.h"
#include "xfa/fgas/graphics/cfgas_gepath.h"
#include "xfa/fwl/cfwl_pushbutton.h"
#include "xfa/fwl/cfwl_themebackground.h"
#include "xfa/fwl/cfwl_widget.h"
#include "xfa/fwl/ifwl_themeprovider.h"
namespace pdfium {
namespace {
constexpr float kPushbuttonSizeCorner = 2.0f;
} // namespace
CFWL_PushButtonTP::CFWL_PushButtonTP() : theme_data_(new PBThemeData) {
SetThemeData();
}
CFWL_PushButtonTP::~CFWL_PushButtonTP() = default;
void CFWL_PushButtonTP::DrawBackground(const CFWL_ThemeBackground& pParams) {
switch (pParams.GetPart()) {
case CFWL_ThemePart::Part::kBorder: {
DrawBorder(pParams.GetGraphics(), pParams.part_rect_, pParams.matrix_);
break;
}
case CFWL_ThemePart::Part::kBackground: {
const CFX_RectF& rect = pParams.part_rect_;
float fRight = rect.right();
float fBottom = rect.bottom();
CFGAS_GEPath strokePath;
strokePath.MoveTo(
CFX_PointF(rect.left + kPushbuttonSizeCorner, rect.top));
strokePath.LineTo(CFX_PointF(fRight - kPushbuttonSizeCorner, rect.top));
strokePath.LineTo(CFX_PointF(fRight, rect.top + kPushbuttonSizeCorner));
strokePath.LineTo(CFX_PointF(fRight, fBottom - kPushbuttonSizeCorner));
strokePath.LineTo(CFX_PointF(fRight - kPushbuttonSizeCorner, fBottom));
strokePath.LineTo(CFX_PointF(rect.left + kPushbuttonSizeCorner, fBottom));
strokePath.LineTo(CFX_PointF(rect.left, fBottom - kPushbuttonSizeCorner));
strokePath.LineTo(
CFX_PointF(rect.left, rect.top + kPushbuttonSizeCorner));
strokePath.LineTo(
CFX_PointF(rect.left + kPushbuttonSizeCorner, rect.top));
CFGAS_GEPath fillPath;
fillPath.AddSubpath(strokePath);
CFGAS_GEGraphics* pGraphics = pParams.GetGraphics();
CFGAS_GEGraphics::StateRestorer restorer(pGraphics);
CFX_RectF rtInner(rect);
rtInner.Deflate(kPushbuttonSizeCorner + 1, kPushbuttonSizeCorner + 1,
kPushbuttonSizeCorner, kPushbuttonSizeCorner);
fillPath.AddRectangle(rtInner.left, rtInner.top, rtInner.width,
rtInner.height);
int32_t iColor = GetColorID(pParams.states_);
FillSolidRect(pGraphics, theme_data_->clrEnd[iColor], rect,
pParams.matrix_);
pGraphics->SetStrokeColor(CFGAS_GEColor(theme_data_->clrBorder[iColor]));
pGraphics->StrokePath(strokePath, pParams.matrix_);
fillPath.Clear();
fillPath.AddRectangle(rtInner.left, rtInner.top, rtInner.width,
rtInner.height);
pGraphics->SetFillColor(CFGAS_GEColor(theme_data_->clrFill[iColor]));
pGraphics->FillPath(fillPath, CFX_FillRenderOptions::FillType::kWinding,
pParams.matrix_);
if (pParams.states_ & CFWL_PartState::kFocused) {
rtInner.Inflate(1, 1, 0, 0);
DrawFocus(pGraphics, rtInner, pParams.matrix_);
}
break;
}
default:
break;
}
}
void CFWL_PushButtonTP::SetThemeData() {
theme_data_->clrBorder[0] = ArgbEncode(255, 0, 60, 116);
theme_data_->clrBorder[1] = ArgbEncode(255, 0, 60, 116);
theme_data_->clrBorder[2] = ArgbEncode(255, 0, 60, 116);
theme_data_->clrBorder[3] = ArgbEncode(255, 0, 60, 116);
theme_data_->clrBorder[4] = ArgbEncode(255, 201, 199, 186);
theme_data_->clrStart[0] = ArgbEncode(255, 255, 255, 255);
theme_data_->clrStart[1] = ArgbEncode(255, 209, 204, 193);
theme_data_->clrStart[2] = ArgbEncode(255, 255, 240, 207);
theme_data_->clrStart[3] = ArgbEncode(255, 206, 231, 255);
theme_data_->clrStart[4] = ArgbEncode(255, 245, 244, 234);
theme_data_->clrEnd[0] = ArgbEncode(255, 214, 208, 197);
theme_data_->clrEnd[1] = ArgbEncode(255, 242, 241, 238);
theme_data_->clrEnd[2] = ArgbEncode(255, 229, 151, 0);
theme_data_->clrEnd[3] = ArgbEncode(255, 105, 130, 238);
theme_data_->clrEnd[4] = ArgbEncode(255, 245, 244, 234);
theme_data_->clrFill[0] = ArgbEncode(255, 255, 255, 255);
theme_data_->clrFill[1] = ArgbEncode(255, 226, 225, 218);
theme_data_->clrFill[2] = ArgbEncode(255, 255, 255, 255);
theme_data_->clrFill[3] = ArgbEncode(255, 255, 255, 255);
theme_data_->clrFill[4] = ArgbEncode(255, 245, 244, 234);
}
int32_t CFWL_PushButtonTP::GetColorID(Mask<CFWL_PartState> dwStates) const {
int32_t color = 0;
if (dwStates & CFWL_PartState::kDisabled) {
color += 4;
}
if (dwStates & CFWL_PartState::kDefault) {
color += 3;
} else {
if (dwStates & CFWL_PartState::kHovered) {
color += 2;
}
if (dwStates & CFWL_PartState::kPressed) {
color += 1;
}
}
return color;
}
} // namespace pdfium