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/basewidget/ifwl_datetimepicker.h" | |
10 #include "xfa/fwl/core/cfwl_themebackground.h" | 9 #include "xfa/fwl/core/cfwl_themebackground.h" |
| 10 #include "xfa/fwl/core/ifwl_datetimepicker.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(IFWL_Widget* pWidget) { | 16 bool CFWL_DateTimePickerTP::IsValidWidget(IFWL_Widget* pWidget) { |
17 return pWidget && pWidget->GetClassID() == FWL_Type::DateTimePicker; | 17 return pWidget && pWidget->GetClassID() == FWL_Type::DateTimePicker; |
18 } | 18 } |
19 | 19 |
20 FX_BOOL CFWL_DateTimePickerTP::DrawBackground(CFWL_ThemeBackground* pParams) { | 20 FX_BOOL CFWL_DateTimePickerTP::DrawBackground(CFWL_ThemeBackground* pParams) { |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 case CFWL_PartState_Disabled: { | 60 case CFWL_PartState_Disabled: { |
61 eState = FWLTHEME_STATE_Disabale; | 61 eState = FWLTHEME_STATE_Disabale; |
62 break; | 62 break; |
63 } | 63 } |
64 default: {} | 64 default: {} |
65 } | 65 } |
66 DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, | 66 DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, |
67 FWLTHEME_DIRECTION_Down, eState, pMatrix); | 67 FWLTHEME_DIRECTION_Down, eState, pMatrix); |
68 } | 68 } |
69 | 69 |
OLD | NEW |