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

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

Issue 2524173002: Merge IFWL and CFWL classes. (Closed)
Patch Set: make chrome build happy 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
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/core/cfwl_datetimepicker.h"
9 #include "xfa/fwl/core/cfwl_themebackground.h" 10 #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(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);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 eState = FWLTHEME_STATE_Disable; 62 eState = FWLTHEME_STATE_Disable;
63 break; 63 break;
64 } 64 }
65 default: 65 default:
66 break; 66 break;
67 } 67 }
68 DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart, 68 DrawArrowBtn(pParams->m_pGraphics, &pParams->m_rtPart,
69 FWLTHEME_DIRECTION_Down, eState, pMatrix); 69 FWLTHEME_DIRECTION_Down, eState, pMatrix);
70 } 70 }
71 71
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698