1 // Copyright 2014 PDFium Authors. All rights reserved. 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 CFWL_BarcodeTP()13CFWL_BarcodeTP::CFWL_BarcodeTP() {} 14 ~CFWL_BarcodeTP()15CFWL_BarcodeTP::~CFWL_BarcodeTP() {} 16 DrawBackground(CFWL_ThemeBackground * pParams)17void CFWL_BarcodeTP::DrawBackground(CFWL_ThemeBackground* pParams) { 18 if (!pParams) 19 return; 20 21 switch (pParams->m_iPart) { 22 case CFWL_Part::Border: { 23 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix); 24 break; 25 } 26 case CFWL_Part::Background: { 27 FillBackground(pParams->m_pGraphics, &pParams->m_rtPart, 28 &pParams->m_matrix); 29 break; 30 } 31 default: 32 break; 33 } 34 } 35