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_comboboxtp.h" | 7 #include "xfa/fwl/theme/cfwl_comboboxtp.h" |
8 | 8 |
9 #include "xfa/fwl/cfwl_combobox.h" | 9 #include "xfa/fwl/cfwl_combobox.h" |
10 #include "xfa/fwl/cfwl_themebackground.h" | 10 #include "xfa/fwl/cfwl_themebackground.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 | 29 |
30 void CFWL_ComboBoxTP::DrawBackground(CFWL_ThemeBackground* pParams) { | 30 void CFWL_ComboBoxTP::DrawBackground(CFWL_ThemeBackground* pParams) { |
31 if (!pParams) | 31 if (!pParams) |
32 return; | 32 return; |
33 | 33 |
34 switch (pParams->m_iPart) { | 34 switch (pParams->m_iPart) { |
35 case CFWL_Part::Border: { | 35 case CFWL_Part::Border: { |
36 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix); | 36 DrawBorder(pParams->m_pGraphics, &pParams->m_rtPart, &pParams->m_matrix); |
37 break; | 37 break; |
38 } | 38 } |
39 case CFWL_Part::Edge: { | |
40 DrawEdge(pParams->m_pGraphics, pParams->m_pWidget->GetStyles(), | |
41 &pParams->m_rtPart, &pParams->m_matrix); | |
42 break; | |
43 } | |
44 case CFWL_Part::Background: { | 39 case CFWL_Part::Background: { |
45 CFX_Path path; | 40 CFX_Path path; |
46 path.Create(); | 41 path.Create(); |
47 CFX_RectF& rect = pParams->m_rtPart; | 42 CFX_RectF& rect = pParams->m_rtPart; |
48 path.AddRectangle(rect.left, rect.top, rect.width, rect.height); | 43 path.AddRectangle(rect.left, rect.top, rect.width, rect.height); |
49 FX_ARGB argb_color; | 44 FX_ARGB argb_color; |
50 switch (pParams->m_dwStates) { | 45 switch (pParams->m_dwStates) { |
51 case CFWL_PartState_Selected: | 46 case CFWL_PartState_Selected: |
52 argb_color = FWLTHEME_COLOR_BKSelected; | 47 argb_color = FWLTHEME_COLOR_BKSelected; |
53 break; | 48 break; |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 case CFWL_PartState_Disabled: { | 113 case CFWL_PartState_Disabled: { |
119 eState = FWLTHEME_STATE_Disable; | 114 eState = FWLTHEME_STATE_Disable; |
120 break; | 115 break; |
121 } | 116 } |
122 default: | 117 default: |
123 break; | 118 break; |
124 } | 119 } |
125 DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, | 120 DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, |
126 FWLTHEME_DIRECTION_Down, eState, &pParams->m_matrix); | 121 FWLTHEME_DIRECTION_Down, eState, &pParams->m_matrix); |
127 } | 122 } |
OLD | NEW |