Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: xfa/fwl/theme/cfwl_datetimepickertp.cpp

Issue 2575093002: Cleanup widget edge related code (Closed)
Patch Set: Rebase to master Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fwl/theme/cfwl_comboboxtp.cpp ('k') | xfa/fwl/theme/cfwl_edittp.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « xfa/fwl/theme/cfwl_comboboxtp.cpp ('k') | xfa/fwl/theme/cfwl_edittp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698