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