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 #ifndef XFA_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ | 7 #ifndef XFA_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ |
8 #define XFA_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ | 8 #define XFA_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 | 11 |
12 #include "xfa/fwl/basewidget/fwl_editimp.h" | 12 #include "xfa/fwl/basewidget/fwl_editimp.h" |
13 #include "xfa/fwl/basewidget/fwl_monthcalendarimp.h" | 13 #include "xfa/fwl/basewidget/fwl_monthcalendarimp.h" |
14 #include "xfa/include/fwl/basewidget/fwl_datetimepicker.h" | 14 #include "xfa/fwl/basewidget/ifwl_datetimepicker.h" |
15 #include "xfa/include/fwl/basewidget/fwl_edit.h" | 15 #include "xfa/fwl/basewidget/ifwl_edit.h" |
16 #include "xfa/include/fwl/basewidget/fwl_monthcalendar.h" | 16 #include "xfa/fwl/basewidget/ifwl_monthcalendar.h" |
17 #include "xfa/include/fwl/core/fwl_form.h" | 17 #include "xfa/fwl/core/ifwl_form.h" |
18 #include "xfa/include/fwl/core/fwl_theme.h" | |
19 | 18 |
20 class CFWL_WidgetImp; | 19 class CFWL_WidgetImp; |
21 class CFWL_WidgetImpProperties; | 20 class CFWL_WidgetImpProperties; |
22 class CFWL_WidgetImpDelegate; | 21 class CFWL_WidgetImpDelegate; |
23 class CFWL_DateTimeEdit; | 22 class CFWL_DateTimeEdit; |
24 class CFWL_DateTimeEditImpDelegate; | 23 class CFWL_DateTimeEditImpDelegate; |
25 class CFWL_DateTimeCalendar; | 24 class CFWL_DateTimeCalendar; |
26 class CFWL_DateTimeCalendarImpDelegate; | 25 class CFWL_DateTimeCalendarImpDelegate; |
27 class CFWL_DateTimePickerImp; | 26 class CFWL_DateTimePickerImp; |
28 class CFWL_DateTimePickerImpDelegate; | 27 class CFWL_DateTimePickerImpDelegate; |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 void OnMouseMove(CFWL_MsgMouse* pMsg); | 225 void OnMouseMove(CFWL_MsgMouse* pMsg); |
227 void OnMouseLeave(CFWL_MsgMouse* pMsg); | 226 void OnMouseLeave(CFWL_MsgMouse* pMsg); |
228 | 227 |
229 CFWL_DateTimePickerImp* m_pOwner; | 228 CFWL_DateTimePickerImp* m_pOwner; |
230 | 229 |
231 private: | 230 private: |
232 void DisForm_OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); | 231 void DisForm_OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); |
233 }; | 232 }; |
234 | 233 |
235 #endif // XFA_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ | 234 #endif // XFA_FWL_BASEWIDGET_FWL_DATETIMEPICKERIMP_H_ |
OLD | NEW |