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_INCLUDE_FWL_MONTHCALENDARIMP_H_ | 7 #ifndef XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_MONTHCALENDARIMP_H_ |
8 #define XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_MONTHCALENDARIMP_H_ | 8 #define XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_MONTHCALENDARIMP_H_ |
9 | 9 |
| 10 #include "xfa/src/fgas/include/fx_datetime.h" |
10 #include "xfa/src/fwl/src/core/include/fwl_widgetimp.h" | 11 #include "xfa/src/fwl/src/core/include/fwl_widgetimp.h" |
11 | 12 |
12 class CFWL_WidgetImpProperties; | 13 class CFWL_WidgetImpProperties; |
13 class IFWL_Widget; | 14 class IFWL_Widget; |
14 class IFDE_DateTime; | 15 class IFDE_DateTime; |
15 class CFDE_DateTime; | 16 class CFDE_DateTime; |
16 class CFWL_MonthCalendarImpDelegate; | 17 class CFWL_MonthCalendarImpDelegate; |
17 | 18 |
18 extern uint8_t FX_DaysInMonth(int32_t iYear, uint8_t iMonth); | 19 extern uint8_t FX_DaysInMonth(int32_t iYear, uint8_t iMonth); |
19 | 20 |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 void OnActivate(CFWL_Message* pMsg); | 236 void OnActivate(CFWL_Message* pMsg); |
236 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); | 237 void OnFocusChanged(CFWL_Message* pMsg, FX_BOOL bSet = TRUE); |
237 void OnLButtonDown(CFWL_MsgMouse* pMsg); | 238 void OnLButtonDown(CFWL_MsgMouse* pMsg); |
238 void OnLButtonUp(CFWL_MsgMouse* pMsg); | 239 void OnLButtonUp(CFWL_MsgMouse* pMsg); |
239 void OnMouseMove(CFWL_MsgMouse* pMsg); | 240 void OnMouseMove(CFWL_MsgMouse* pMsg); |
240 void OnMouseLeave(CFWL_MsgMouse* pMsg); | 241 void OnMouseLeave(CFWL_MsgMouse* pMsg); |
241 CFWL_MonthCalendarImp* m_pOwner; | 242 CFWL_MonthCalendarImp* m_pOwner; |
242 }; | 243 }; |
243 | 244 |
244 #endif // XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_MONTHCALENDARIMP_H_ | 245 #endif // XFA_SRC_FWL_SRC_BASEWIDGET_INCLUDE_FWL_MONTHCALENDARIMP_H_ |
OLD | NEW |