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

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

Issue 2559173002: Move xfa/fwl/core to xfa/fwl. (Closed)
Patch Set: 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/core/cfwl_datetimepicker.h" 9 #include "xfa/fwl/cfwl_datetimepicker.h"
10 #include "xfa/fwl/core/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) {
(...skipping 41 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
« 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