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 
13 CFWL_BarcodeTP::CFWL_BarcodeTP() = default;
14 
15 CFWL_BarcodeTP::~CFWL_BarcodeTP() = default;
16 
DrawBackground(const CFWL_ThemeBackground & pParams)17 void CFWL_BarcodeTP::DrawBackground(const CFWL_ThemeBackground& pParams) {
18   switch (pParams.m_iPart) {
19     case CFWL_Part::Border:
20       DrawBorder(pParams.m_pGraphics.Get(), pParams.m_PartRect,
21                  pParams.m_matrix);
22       break;
23     case CFWL_Part::Background:
24       FillBackground(pParams.m_pGraphics.Get(), pParams.m_PartRect,
25                      pParams.m_matrix);
26       break;
27     default:
28       break;
29   }
30 }
31