// 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_edittp.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_edit.h"
#include "xfa/fwl/cfwl_themebackground.h"
#include "xfa/fwl/cfwl_widget.h"

namespace pdfium {

CFWL_EditTP::CFWL_EditTP() = default;

CFWL_EditTP::~CFWL_EditTP() = default;

void CFWL_EditTP::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: {
      CFGAS_GEGraphics* pGraphics = pParams.GetGraphics();
      CFGAS_GEGraphics::StateRestorer restorer(pGraphics);
      const CFGAS_GEPath* pParamsPath = pParams.GetPath();
      if (pParamsPath) {
        pGraphics->SetFillColor(
            CFGAS_GEColor(kFwlThemeColorBackgroundSelected));
        pGraphics->FillPath(*pParamsPath,
                            CFX_FillRenderOptions::FillType::kWinding,
                            pParams.matrix_);
      } else {
        CFGAS_GEPath path;
        path.AddRectangle(pParams.part_rect_.left, pParams.part_rect_.top,
                          pParams.part_rect_.width, pParams.part_rect_.height);
        CFGAS_GEColor cr(kFwlThemeColorBackground);
        if (!pParams.static_background_) {
          if (pParams.states_ & CFWL_PartState::kDisabled) {
            cr = CFGAS_GEColor(kFwlThemeColorEdgeRb1);
          } else if (pParams.states_ & CFWL_PartState::kReadOnly) {
            cr = CFGAS_GEColor(ArgbEncode(255, 236, 233, 216));
          } else {
            cr = CFGAS_GEColor(0xFFFFFFFF);
          }
        }
        pGraphics->SetFillColor(cr);
        pGraphics->FillPath(path, CFX_FillRenderOptions::FillType::kWinding,
                            pParams.matrix_);
      }
      break;
    }
    case CFWL_ThemePart::Part::kCombTextLine: {
      CFWL_Widget::AdapterIface* pWidget =
          pParams.GetWidget()->GetOutmost()->GetAdapterIface();
      FX_ARGB cr = 0xFF000000;
      float fWidth = 1.0f;
      pWidget->GetBorderColorAndThickness(&cr, &fWidth);
      pParams.GetGraphics()->SetStrokeColor(CFGAS_GEColor(cr));
      pParams.GetGraphics()->SetLineWidth(fWidth);
      const CFGAS_GEPath* pParamsPath = pParams.GetPath();
      if (pParamsPath) {
        pParams.GetGraphics()->StrokePath(*pParamsPath, pParams.matrix_);
      }
      break;
    }
    default:
      break;
  }
}

}  // namespace pdfium
