1 // Copyright 2014 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #include "xfa/fwl/theme/cfwl_barcodetp.h" 8 9 #include "xfa/fwl/cfwl_barcode.h" 10 #include "xfa/fwl/cfwl_themebackground.h" 11 #include "xfa/fwl/cfwl_widget.h" 12 13 namespace pdfium { 14 15 CFWL_BarcodeTP::CFWL_BarcodeTP() = default; 16 17 CFWL_BarcodeTP::~CFWL_BarcodeTP() = default; 18 DrawBackground(const CFWL_ThemeBackground & pParams)19void CFWL_BarcodeTP::DrawBackground(const CFWL_ThemeBackground& pParams) { 20 switch (pParams.GetPart()) { 21 case CFWL_ThemePart::Part::kBorder: 22 DrawBorder(pParams.GetGraphics(), pParams.m_PartRect, pParams.m_matrix); 23 break; 24 case CFWL_ThemePart::Part::kBackground: 25 FillBackground(pParams.GetGraphics(), pParams.m_PartRect, 26 pParams.m_matrix); 27 break; 28 default: 29 break; 30 } 31 } 32 33 } // namespace pdfium 34