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/fwl/theme/cfwl_comboboxtp.h" |
8 | 8 |
9 #include "xfa/fwl/basewidget/ifwl_combobox.h" | 9 #include "xfa/fwl/basewidget/ifwl_combobox.h" |
10 #include "xfa/fwl/core/cfwl_themebackground.h" | 10 #include "xfa/fwl/core/cfwl_themebackground.h" |
11 #include "xfa/fwl/core/ifwl_themeprovider.h" | 11 #include "xfa/fwl/core/ifwl_themeprovider.h" |
12 #include "xfa/fwl/core/ifwl_widget.h" | 12 #include "xfa/fwl/core/ifwl_widget.h" |
13 #include "xfa/fxgraphics/cfx_color.h" | 13 #include "xfa/fxgraphics/cfx_color.h" |
14 #include "xfa/fxgraphics/cfx_path.h" | 14 #include "xfa/fxgraphics/cfx_path.h" |
15 | 15 |
16 #define FWLTHEME_CAPACITY_ComboFormHandler 8.0f | 16 #define FWLTHEME_CAPACITY_ComboFormHandler 8.0f |
17 | 17 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 } | 151 } |
152 case FWL_CMBPARTSTATE_Disabled: { | 152 case FWL_CMBPARTSTATE_Disabled: { |
153 argbFill = 0xFFF0F0F0; | 153 argbFill = 0xFFF0F0F0; |
154 break; | 154 break; |
155 } | 155 } |
156 } | 156 } |
157 DrawArrow(pParams->m_pGraphics, &pParams->m_rtPart, FWLTHEME_DIRECTION_Down, | 157 DrawArrow(pParams->m_pGraphics, &pParams->m_rtPart, FWLTHEME_DIRECTION_Down, |
158 argbFill, bPressed, &pParams->m_matrix); | 158 argbFill, bPressed, &pParams->m_matrix); |
159 } | 159 } |
160 #endif | 160 #endif |
OLD | NEW |