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/src/fwl/basewidget/fwl_datetimepickerimp.h" | 7 #include "xfa/fwl/basewidget/fwl_datetimepickerimp.h" |
8 | 8 |
| 9 #include "xfa/fwl/basewidget/fwl_editimp.h" |
| 10 #include "xfa/fwl/basewidget/fwl_formproxyimp.h" |
| 11 #include "xfa/fwl/basewidget/fwl_monthcalendarimp.h" |
| 12 #include "xfa/fwl/core/fwl_formimp.h" |
| 13 #include "xfa/fwl/core/fwl_noteimp.h" |
| 14 #include "xfa/fwl/core/fwl_panelimp.h" |
| 15 #include "xfa/fwl/core/fwl_targetimp.h" |
| 16 #include "xfa/fwl/core/fwl_widgetimp.h" |
| 17 #include "xfa/fwl/core/fwl_widgetmgrimp.h" |
9 #include "xfa/include/fwl/basewidget/fwl_spinbutton.h" | 18 #include "xfa/include/fwl/basewidget/fwl_spinbutton.h" |
10 #include "xfa/src/fwl/basewidget/fwl_editimp.h" | |
11 #include "xfa/src/fwl/basewidget/fwl_formproxyimp.h" | |
12 #include "xfa/src/fwl/basewidget/fwl_monthcalendarimp.h" | |
13 #include "xfa/src/fwl/core/fwl_formimp.h" | |
14 #include "xfa/src/fwl/core/fwl_noteimp.h" | |
15 #include "xfa/src/fwl/core/fwl_panelimp.h" | |
16 #include "xfa/src/fwl/core/fwl_targetimp.h" | |
17 #include "xfa/src/fwl/core/fwl_widgetimp.h" | |
18 #include "xfa/src/fwl/core/fwl_widgetmgrimp.h" | |
19 | 19 |
20 #define FWL_DTP_WIDTH 100 | 20 #define FWL_DTP_WIDTH 100 |
21 #define FWL_DTP_HEIGHT 20 | 21 #define FWL_DTP_HEIGHT 20 |
22 | 22 |
23 // static | 23 // static |
24 IFWL_DateTimePicker* IFWL_DateTimePicker::Create( | 24 IFWL_DateTimePicker* IFWL_DateTimePicker::Create( |
25 const CFWL_WidgetImpProperties& properties, | 25 const CFWL_WidgetImpProperties& properties, |
26 IFWL_Widget* pOuter) { | 26 IFWL_Widget* pOuter) { |
27 IFWL_DateTimePicker* pDateTimePicker = new IFWL_DateTimePicker; | 27 IFWL_DateTimePicker* pDateTimePicker = new IFWL_DateTimePicker; |
28 CFWL_DateTimePickerImp* pDateTimePickerImpl = | 28 CFWL_DateTimePickerImp* pDateTimePickerImpl = |
(...skipping 1123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1152 } | 1152 } |
1153 if (m_pOwner->m_pEdit->GetStates() & FWL_WGTSTATE_Focused) { | 1153 if (m_pOwner->m_pEdit->GetStates() & FWL_WGTSTATE_Focused) { |
1154 pMsg->m_pSrcTarget = m_pOwner->m_pEdit.get(); | 1154 pMsg->m_pSrcTarget = m_pOwner->m_pEdit.get(); |
1155 IFWL_WidgetDelegate* pDelegate = m_pOwner->m_pEdit->SetDelegate(NULL); | 1155 IFWL_WidgetDelegate* pDelegate = m_pOwner->m_pEdit->SetDelegate(NULL); |
1156 pDelegate->OnProcessMessage(pMsg); | 1156 pDelegate->OnProcessMessage(pMsg); |
1157 } | 1157 } |
1158 } | 1158 } |
1159 rtInvalidate.Inflate(2, 2); | 1159 rtInvalidate.Inflate(2, 2); |
1160 m_pOwner->Repaint(&rtInvalidate); | 1160 m_pOwner->Repaint(&rtInvalidate); |
1161 } | 1161 } |
OLD | NEW |