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_datetimepickertp.h" 8 9 #include "xfa/fwl/cfwl_datetimepicker.h" 10 #include "xfa/fwl/cfwl_themebackground.h" 11 12 namespace pdfium { 13 14 CFWL_DateTimePickerTP::CFWL_DateTimePickerTP() = default; 15 16 CFWL_DateTimePickerTP::~CFWL_DateTimePickerTP() = default; 17 DrawBackground(const CFWL_ThemeBackground & pParams)18void CFWL_DateTimePickerTP::DrawBackground( 19 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::kDropDownButton: 25 DrawArrowBtn(pParams.GetGraphics(), pParams.m_PartRect, 26 FWLTHEME_DIRECTION::kDown, pParams.GetThemeState(), 27 pParams.m_matrix); 28 break; 29 default: 30 break; 31 } 32 } 33 34 } // namespace pdfium 35