diff options
author | Lei Zhang <thestig@chromium.org> | 2018-08-20 19:10:17 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-20 19:10:17 +0000 |
commit | 9273e0674ecf87929696ca89cbf16371edabc315 (patch) | |
tree | 1b26f0c638a7252e8b1dfc961c6ec09d50fb546b /xfa/fxfa/cxfa_fffield.cpp | |
parent | f6144d4ab76e6357bd8d228ddf542ef4fb3fa3b0 (diff) | |
download | pdfium-9273e0674ecf87929696ca89cbf16371edabc315.tar.xz |
Clean up CXFA_Graphics::SetLineDash().
Fix some nits in CXFA_FFField as well.
Change-Id: I6d0d4569322a01192cdd4bf9d98325ff86642abe
Reviewed-on: https://pdfium-review.googlesource.com/40651
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_fffield.cpp')
-rw-r--r-- | xfa/fxfa/cxfa_fffield.cpp | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/xfa/fxfa/cxfa_fffield.cpp b/xfa/fxfa/cxfa_fffield.cpp index ff28e574e8..aee5a8a9ac 100644 --- a/xfa/fxfa/cxfa_fffield.cpp +++ b/xfa/fxfa/cxfa_fffield.cpp @@ -108,8 +108,8 @@ void CXFA_FFField::DrawFocus(CXFA_Graphics* pGS, CFX_Matrix* pMatrix) { pGS->SetStrokeColor(CXFA_GEColor(0xFF000000)); - float DashPattern[2] = {1, 1}; - pGS->SetLineDash(0.0f, DashPattern, 2); + static constexpr float kDashPattern[2] = {1, 1}; + pGS->SetLineDash(0.0f, kDashPattern, FX_ArraySize(kDashPattern)); pGS->SetLineWidth(0); CXFA_GEPath path; @@ -348,12 +348,10 @@ void CXFA_FFField::SetFWLRect() { return; CFX_RectF rtUi = m_rtUI; - if (rtUi.width < 1.0) - rtUi.width = 1.0; + rtUi.width = std::max(rtUi.width, 1.0f); if (!GetDoc()->GetXFADoc()->IsInteractive()) { float fFontSize = m_pNode->GetFontSize(); - if (rtUi.height < fFontSize) - rtUi.height = fFontSize; + rtUi.height = std::max(rtUi.height, fFontSize); } m_pNormalWidget->SetWidgetRect(rtUi); } @@ -587,10 +585,8 @@ void CXFA_FFField::LayoutCaption() { if (!pCapTextLayout) return; - float fHeight = - pCapTextLayout->Layout(CFX_SizeF(m_rtCaption.width, m_rtCaption.height)); - if (m_rtCaption.height < fHeight) - m_rtCaption.height = fHeight; + float fHeight = pCapTextLayout->Layout(m_rtCaption.Size()); + m_rtCaption.height = std::max(m_rtCaption.height, fHeight); } void CXFA_FFField::RenderCaption(CXFA_Graphics* pGS, CFX_Matrix* pMatrix) { @@ -603,7 +599,7 @@ void CXFA_FFField::RenderCaption(CXFA_Graphics* pGS, CFX_Matrix* pMatrix) { return; if (!pCapTextLayout->IsLoaded()) - pCapTextLayout->Layout(CFX_SizeF(m_rtCaption.width, m_rtCaption.height)); + pCapTextLayout->Layout(m_rtCaption.Size()); CFX_RectF rtClip = m_rtCaption; rtClip.Intersect(GetRectWithoutRotate()); @@ -675,9 +671,7 @@ int32_t CXFA_FFField::CalculateNode(CXFA_Node* pNode) { case XFA_AttributeEnum::Warning: { if (version <= XFA_VERSION_204) { CXFA_Script* script = calc->GetScriptIfExists(); - if (!script) - return 1; - if (script->GetExpression().IsEmpty()) + if (!script || script->GetExpression().IsEmpty()) return 1; } |