| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "xfa/fwl/theme/cfwl_datetimepickertp.h" | 7 #include "xfa/fwl/theme/cfwl_datetimepickertp.h" |
| 8 | 8 |
| 9 #include "xfa/fwl/cfwl_datetimepicker.h" | 9 #include "xfa/fwl/cfwl_datetimepicker.h" |
| 10 #include "xfa/fwl/cfwl_themebackground.h" | 10 #include "xfa/fwl/cfwl_themebackground.h" |
| 11 | 11 |
| 12 CFWL_DateTimePickerTP::CFWL_DateTimePickerTP() {} | 12 CFWL_DateTimePickerTP::CFWL_DateTimePickerTP() {} |
| 13 | 13 |
| 14 CFWL_DateTimePickerTP::~CFWL_DateTimePickerTP() {} | 14 CFWL_DateTimePickerTP::~CFWL_DateTimePickerTP() {} |
| 15 | 15 |
| 16 bool CFWL_DateTimePickerTP::IsValidWidget(CFWL_Widget* pWidget) { | 16 bool CFWL_DateTimePickerTP::IsValidWidget(CFWL_Widget* pWidget) { |
| 17 return pWidget && pWidget->GetClassID() == FWL_Type::DateTimePicker; | 17 return pWidget && pWidget->GetClassID() == FWL_Type::DateTimePicker; |
| 18 } | 18 } |
| 19 | 19 |
| 20 void CFWL_DateTimePickerTP::DrawBackground(CFWL_ThemeBackground* pParams) { | 20 void CFWL_DateTimePickerTP::DrawBackground(CFWL_ThemeBackground* pParams) { |
| 21 if (!pParams) | 21 if (!pParams) |
| 22 return; | 22 return; |
| 23 | 23 |
| 24 switch (pParams->m_iPart) { | 24 switch (pParams->m_iPart) { |
| 25 case CFWL_Part::Border: { | 25 case CFWL_Part::Border: { |
| 26 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix); | 26 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix); |
| 27 break; | 27 break; |
| 28 } | 28 } |
| 29 case CFWL_Part::Edge: { | |
| 30 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(), | |
| 31 &pParams->m_rtPart, &pParams->m_matrix); | |
| 32 break; | |
| 33 } | |
| 34 case CFWL_Part::DropDownButton: { | 29 case CFWL_Part::DropDownButton: { |
| 35 DrawDropDownButton(pParams, &pParams->m_matrix); | 30 DrawDropDownButton(pParams, &pParams->m_matrix); |
| 36 break; | 31 break; |
| 37 } | 32 } |
| 38 default: | 33 default: |
| 39 break; | 34 break; |
| 40 } | 35 } |
| 41 } | 36 } |
| 42 | 37 |
| 43 void CFWL_DateTimePickerTP::DrawDropDownButton(CFWL_ThemeBackground* pParams, | 38 void CFWL_DateTimePickerTP::DrawDropDownButton(CFWL_ThemeBackground* pParams, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 62 eState = FWLTHEME_STATE_Disable; | 57 eState = FWLTHEME_STATE_Disable; |
| 63 break; | 58 break; |
| 64 } | 59 } |
| 65 default: | 60 default: |
| 66 break; | 61 break; |
| 67 } | 62 } |
| 68 DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, | 63 DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, |
| 69 FWLTHEME_DIRECTION_Down, eState, pMatrix); | 64 FWLTHEME_DIRECTION_Down, eState, pMatrix); |
| 70 } | 65 } |
| 71 | 66 |
| OLD | NEW |