xref: /aosp_15_r20/external/pdfium/xfa/fwl/theme/cfwl_pictureboxtp.cpp (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
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_pictureboxtp.h"
8 
9 #include "xfa/fwl/cfwl_picturebox.h"
10 #include "xfa/fwl/cfwl_themebackground.h"
11 #include "xfa/fwl/cfwl_widget.h"
12 
13 CFWL_PictureBoxTP::CFWL_PictureBoxTP() = default;
14 
15 CFWL_PictureBoxTP::~CFWL_PictureBoxTP() = default;
16 
DrawBackground(const CFWL_ThemeBackground & pParams)17 void CFWL_PictureBoxTP::DrawBackground(const CFWL_ThemeBackground& pParams) {
18   switch (pParams.GetPart()) {
19     case CFWL_ThemePart::Part::kBorder:
20       DrawBorder(pParams.GetGraphics(), pParams.m_PartRect, pParams.m_matrix);
21       break;
22     default:
23       break;
24   }
25 }
26