| // 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/fxfa/cxfa_fwltheme.h" |
| |
| #include "core/fxcrt/fx_codepage.h" |
| #include "xfa/fde/cfde_textout.h" |
| #include "xfa/fgas/font/cfgas_fontmgr.h" |
| #include "xfa/fgas/font/cfgas_gefont.h" |
| #include "xfa/fgas/font/cfgas_gemodule.h" |
| #include "xfa/fgas/graphics/cfgas_gecolor.h" |
| #include "xfa/fwl/cfwl_barcode.h" |
| #include "xfa/fwl/cfwl_caret.h" |
| #include "xfa/fwl/cfwl_checkbox.h" |
| #include "xfa/fwl/cfwl_combobox.h" |
| #include "xfa/fwl/cfwl_datetimepicker.h" |
| #include "xfa/fwl/cfwl_edit.h" |
| #include "xfa/fwl/cfwl_listbox.h" |
| #include "xfa/fwl/cfwl_monthcalendar.h" |
| #include "xfa/fwl/cfwl_picturebox.h" |
| #include "xfa/fwl/cfwl_pushbutton.h" |
| #include "xfa/fwl/cfwl_scrollbar.h" |
| #include "xfa/fwl/cfwl_themebackground.h" |
| #include "xfa/fwl/cfwl_themetext.h" |
| #include "xfa/fwl/theme/cfwl_widgettp.h" |
| #include "xfa/fxfa/cxfa_ffapp.h" |
| #include "xfa/fxfa/cxfa_ffwidget.h" |
| #include "xfa/fxfa/cxfa_fontmgr.h" |
| #include "xfa/fxfa/parser/cxfa_para.h" |
| |
| namespace pdfium { |
| |
| namespace { |
| |
| constexpr const wchar_t* kFWLThemeCalFonts[] = { |
| L"Arial", |
| L"Courier New", |
| L"DejaVu Sans", |
| }; |
| |
| const float kLineHeight = 12.0f; |
| |
| CXFA_FFWidget* GetOutmostFFWidget(CFWL_Widget* pWidget) { |
| CFWL_Widget* pOuter = pWidget ? pWidget->GetOutmost() : nullptr; |
| return pOuter ? static_cast<CXFA_FFWidget*>(pOuter->GetAdapterIface()) |
| : nullptr; |
| } |
| |
| } // namespace |
| |
| CXFA_FWLTheme::CXFA_FWLTheme(cppgc::Heap* pHeap, CXFA_FFApp* pApp) |
| : IFWL_ThemeProvider(pHeap), |
| text_out_(std::make_unique<CFDE_TextOut>()), |
| app_(pApp) {} |
| |
| CXFA_FWLTheme::~CXFA_FWLTheme() = default; |
| |
| void CXFA_FWLTheme::PreFinalize() { |
| text_out_.reset(); |
| } |
| |
| void CXFA_FWLTheme::Trace(cppgc::Visitor* visitor) const { |
| IFWL_ThemeProvider::Trace(visitor); |
| visitor->Trace(app_); |
| } |
| |
| bool CXFA_FWLTheme::LoadCalendarFont(CXFA_FFDoc* doc) { |
| if (calendar_font_) { |
| return true; |
| } |
| |
| for (const wchar_t* font : kFWLThemeCalFonts) { |
| calendar_font_ = app_->GetXFAFontMgr()->GetFont(doc, font, 0); |
| if (calendar_font_) { |
| return true; |
| } |
| } |
| |
| calendar_font_ = CFGAS_GEModule::Get()->GetFontMgr()->GetFontByCodePage( |
| FX_CodePage::kMSWin_WesternEuropean, 0, nullptr); |
| return !!calendar_font_; |
| } |
| |
| void CXFA_FWLTheme::DrawBackground(const CFWL_ThemeBackground& pParams) { |
| GetTheme(pParams.GetWidget())->DrawBackground(pParams); |
| } |
| |
| void CXFA_FWLTheme::DrawText(const CFWL_ThemeText& pParams) { |
| if (pParams.text_.IsEmpty()) { |
| return; |
| } |
| |
| if (pParams.GetWidget()->GetClassID() == FWL_Type::MonthCalendar) { |
| CXFA_FFWidget* pWidget = GetOutmostFFWidget(pParams.GetWidget()); |
| if (!pWidget) { |
| return; |
| } |
| |
| text_out_->SetStyles(pParams.tto_styles_); |
| text_out_->SetAlignment(pParams.tto_align_); |
| text_out_->SetFont(calendar_font_); |
| text_out_->SetFontSize(FWLTHEME_CAPACITY_FontSize); |
| text_out_->SetTextColor(FWLTHEME_CAPACITY_TextColor); |
| if ((pParams.GetPart() == CFWL_ThemePart::Part::kDatesIn) && |
| !(pParams.states_ & CFWL_PartState::kFlagged) && |
| (pParams.states_ & Mask<CFWL_PartState>{CFWL_PartState::kHovered, |
| CFWL_PartState::kSelected})) { |
| text_out_->SetTextColor(0xFF888888); |
| } |
| if (pParams.GetPart() == CFWL_ThemePart::Part::kCaption) { |
| text_out_->SetTextColor(ArgbEncode(0xff, 0, 153, 255)); |
| } |
| |
| CFGAS_GEGraphics* pGraphics = pParams.GetGraphics(); |
| CFX_RenderDevice* pRenderDevice = pGraphics->GetRenderDevice(); |
| CFX_Matrix mtPart = pParams.matrix_; |
| const CFX_Matrix* pMatrix = pGraphics->GetMatrix(); |
| if (pMatrix) { |
| mtPart.Concat(*pMatrix); |
| } |
| |
| text_out_->SetMatrix(mtPart); |
| text_out_->DrawLogicText(pRenderDevice, pParams.text_, pParams.part_rect_); |
| return; |
| } |
| CXFA_FFWidget* pWidget = GetOutmostFFWidget(pParams.GetWidget()); |
| if (!pWidget) { |
| return; |
| } |
| |
| CXFA_Node* pNode = pWidget->GetNode(); |
| CFGAS_GEGraphics* pGraphics = pParams.GetGraphics(); |
| CFX_RenderDevice* pRenderDevice = pGraphics->GetRenderDevice(); |
| text_out_->SetStyles(pParams.tto_styles_); |
| text_out_->SetAlignment(pParams.tto_align_); |
| text_out_->SetFont(pNode->GetFGASFont(pWidget->GetDoc())); |
| text_out_->SetFontSize(pNode->GetFontSize()); |
| text_out_->SetTextColor(pNode->GetTextColor()); |
| CFX_Matrix mtPart = pParams.matrix_; |
| const CFX_Matrix* pMatrix = pGraphics->GetMatrix(); |
| if (pMatrix) { |
| mtPart.Concat(*pMatrix); |
| } |
| |
| text_out_->SetMatrix(mtPart); |
| text_out_->DrawLogicText(pRenderDevice, pParams.text_, pParams.part_rect_); |
| } |
| |
| CFX_RectF CXFA_FWLTheme::GetUIMargin(const CFWL_ThemePart& pThemePart) const { |
| CXFA_FFWidget* pWidget = GetOutmostFFWidget(pThemePart.GetWidget()); |
| if (!pWidget) { |
| return CFX_RectF(); |
| } |
| |
| CXFA_ContentLayoutItem* pItem = pWidget->GetLayoutItem(); |
| CXFA_Node* pNode = pWidget->GetNode(); |
| CFX_RectF rect = pNode->GetUIMargin(); |
| CXFA_Para* para = pNode->GetParaIfExists(); |
| if (para) { |
| rect.left += para->GetMarginLeft(); |
| if (pNode->IsMultiLine()) { |
| rect.width += para->GetMarginRight(); |
| } |
| } |
| if (!pItem->GetPrev()) { |
| if (pItem->GetNext()) { |
| rect.height = 0; |
| } |
| } else if (!pItem->GetNext()) { |
| rect.top = 0; |
| } else { |
| rect.top = 0; |
| rect.height = 0; |
| } |
| return rect; |
| } |
| |
| float CXFA_FWLTheme::GetCXBorderSize() const { |
| return 1.0f; |
| } |
| |
| float CXFA_FWLTheme::GetCYBorderSize() const { |
| return 1.0f; |
| } |
| |
| float CXFA_FWLTheme::GetFontSize(const CFWL_ThemePart& pThemePart) const { |
| if (CXFA_FFWidget* pWidget = GetOutmostFFWidget(pThemePart.GetWidget())) { |
| return pWidget->GetNode()->GetFontSize(); |
| } |
| return FWLTHEME_CAPACITY_FontSize; |
| } |
| |
| RetainPtr<CFGAS_GEFont> CXFA_FWLTheme::GetFont( |
| const CFWL_ThemePart& pThemePart) { |
| if (CXFA_FFWidget* pWidget = GetOutmostFFWidget(pThemePart.GetWidget())) { |
| return pWidget->GetNode()->GetFGASFont(pWidget->GetDoc()); |
| } |
| |
| return GetFWLFont(); |
| } |
| |
| RetainPtr<CFGAS_GEFont> CXFA_FWLTheme::GetFWLFont() { |
| if (!fwlfont_) { |
| fwlfont_ = CFGAS_GEFont::LoadFont(L"Helvetica", 0, FX_CodePage::kDefANSI); |
| } |
| |
| return fwlfont_; |
| } |
| |
| float CXFA_FWLTheme::GetLineHeight(const CFWL_ThemePart& pThemePart) const { |
| if (CXFA_FFWidget* pWidget = GetOutmostFFWidget(pThemePart.GetWidget())) { |
| return pWidget->GetNode()->GetLineHeight(); |
| } |
| return kLineHeight; |
| } |
| |
| float CXFA_FWLTheme::GetScrollBarWidth() const { |
| return 9.0f; |
| } |
| |
| FX_COLORREF CXFA_FWLTheme::GetTextColor( |
| const CFWL_ThemePart& pThemePart) const { |
| if (CXFA_FFWidget* pWidget = GetOutmostFFWidget(pThemePart.GetWidget())) { |
| return pWidget->GetNode()->GetTextColor(); |
| } |
| return FWLTHEME_CAPACITY_TextColor; |
| } |
| |
| CFX_SizeF CXFA_FWLTheme::GetSpaceAboveBelow( |
| const CFWL_ThemePart& pThemePart) const { |
| CFX_SizeF sizeAboveBelow; |
| if (CXFA_FFWidget* pWidget = GetOutmostFFWidget(pThemePart.GetWidget())) { |
| CXFA_Para* para = pWidget->GetNode()->GetParaIfExists(); |
| if (para) { |
| sizeAboveBelow.width = para->GetSpaceAbove(); |
| sizeAboveBelow.height = para->GetSpaceBelow(); |
| } |
| } |
| return sizeAboveBelow; |
| } |
| |
| void CXFA_FWLTheme::CalcTextRect(const CFWL_ThemeText& pParams, |
| CFX_RectF* pRect) { |
| CXFA_FFWidget* pWidget = GetOutmostFFWidget(pParams.GetWidget()); |
| if (!pWidget) { |
| return; |
| } |
| |
| if (pParams.GetWidget()->GetClassID() == FWL_Type::MonthCalendar) { |
| text_out_->SetFont(calendar_font_); |
| text_out_->SetFontSize(FWLTHEME_CAPACITY_FontSize); |
| text_out_->SetTextColor(FWLTHEME_CAPACITY_TextColor); |
| text_out_->SetAlignment(pParams.tto_align_); |
| text_out_->SetStyles(pParams.tto_styles_); |
| text_out_->CalcLogicSize(pParams.text_.AsStringView(), pRect); |
| return; |
| } |
| |
| CXFA_Node* pNode = pWidget->GetNode(); |
| text_out_->SetFont(pNode->GetFGASFont(pWidget->GetDoc())); |
| text_out_->SetFontSize(pNode->GetFontSize()); |
| text_out_->SetTextColor(pNode->GetTextColor()); |
| text_out_->SetAlignment(pParams.tto_align_); |
| text_out_->SetStyles(pParams.tto_styles_); |
| text_out_->CalcLogicSize(pParams.text_.AsStringView(), pRect); |
| } |
| |
| } // namespace pdfium |