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/include/fwl/theme/comboboxtp.h" | 7 #include "xfa/include/fwl/theme/comboboxtp.h" |
8 | 8 |
| 9 #include "xfa/fwl/basewidget/ifwl_combobox.h" |
| 10 #include "xfa/fwl/core/cfwl_themebackground.h" |
| 11 #include "xfa/fwl/core/ifwl_themeprovider.h" |
| 12 #include "xfa/fwl/core/ifwl_widget.h" |
9 #include "xfa/fxgraphics/cfx_color.h" | 13 #include "xfa/fxgraphics/cfx_color.h" |
10 #include "xfa/fxgraphics/cfx_path.h" | 14 #include "xfa/fxgraphics/cfx_path.h" |
11 #include "xfa/include/fwl/basewidget/fwl_combobox.h" | |
12 #include "xfa/include/fwl/core/fwl_widget.h" | |
13 | 15 |
14 #define FWLTHEME_CAPACITY_ComboFormHandler 8.0f | 16 #define FWLTHEME_CAPACITY_ComboFormHandler 8.0f |
15 | 17 |
16 CFWL_ComboBoxTP::CFWL_ComboBoxTP() { | 18 CFWL_ComboBoxTP::CFWL_ComboBoxTP() { |
17 m_dwThemeID = 0; | 19 m_dwThemeID = 0; |
18 } | 20 } |
19 CFWL_ComboBoxTP::~CFWL_ComboBoxTP() {} | 21 CFWL_ComboBoxTP::~CFWL_ComboBoxTP() {} |
20 FX_BOOL CFWL_ComboBoxTP::IsValidWidget(IFWL_Widget* pWidget) { | 22 FX_BOOL CFWL_ComboBoxTP::IsValidWidget(IFWL_Widget* pWidget) { |
21 if (!pWidget) | 23 if (!pWidget) |
22 return FALSE; | 24 return FALSE; |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 } | 151 } |
150 case FWL_CMBPARTSTATE_Disabled: { | 152 case FWL_CMBPARTSTATE_Disabled: { |
151 argbFill = 0xFFF0F0F0; | 153 argbFill = 0xFFF0F0F0; |
152 break; | 154 break; |
153 } | 155 } |
154 } | 156 } |
155 DrawArrow(pParams->m_pGraphics, &pParams->m_rtPart, FWLTHEME_DIRECTION_Down, | 157 DrawArrow(pParams->m_pGraphics, &pParams->m_rtPart, FWLTHEME_DIRECTION_Down, |
156 argbFill, bPressed, &pParams->m_matrix); | 158 argbFill, bPressed, &pParams->m_matrix); |
157 } | 159 } |
158 #endif | 160 #endif |
OLD | NEW |