| 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_IFWL_MONTHCALENDAR_H_ | 7 #ifndef XFA_FWL_BASEWIDGET_IFWL_MONTHCALENDAR_H_ |
| 8 #define XFA_FWL_BASEWIDGET_IFWL_MONTHCALENDAR_H_ | 8 #define XFA_FWL_BASEWIDGET_IFWL_MONTHCALENDAR_H_ |
| 9 | 9 |
| 10 #include "xfa/fwl/core/ifwl_widget.h" | 10 #include "xfa/fwl/core/ifwl_widget.h" |
| 11 #include "xfa/fwl/core/cfwl_event.h" | 11 #include "xfa/fwl/core/cfwl_event.h" |
| 12 #include "xfa/fwl/core/ifwl_dataprovider.h" | 12 #include "xfa/fwl/core/ifwl_dataprovider.h" |
| 13 #include "xfa/fwl/core/cfwl_widgetimpproperties.h" | 13 #include "xfa/fwl/core/cfwl_widgetimpproperties.h" |
| 14 | 14 |
| 15 #define FWL_CLASS_MonthCalendar L"FWL_MONTHCALENDAR" | 15 #define FWL_CLASS_MonthCalendar L"FWL_MONTHCALENDAR" |
| 16 #define FWL_CLASSHASH_MonthCalendar 2733931374 | 16 #define FWL_CLASSHASH_MonthCalendar 2733931374 |
| 17 #define FWL_STYLEEXT_MCD_MultiSelect (1L << 0) | 17 #define FWL_STYLEEXT_MCD_MultiSelect (1L << 0) |
| 18 #define FWL_STYLEEXT_MCD_NoToday (1L << 1) | 18 #define FWL_STYLEEXT_MCD_NoToday (1L << 1) |
| 19 #define FWL_STYLEEXT_MCD_NoTodayCircle (1L << 2) | 19 #define FWL_STYLEEXT_MCD_NoTodayCircle (1L << 2) |
| 20 #define FWL_STYLEEXT_MCD_WeekNumbers (1L << 3) | 20 #define FWL_STYLEEXT_MCD_WeekNumbers (1L << 3) |
| 21 #define FWL_ITEMSTATE_MCD_Nomal (0L << 0) | 21 #define FWL_ITEMSTATE_MCD_Nomal (0L << 0) |
| 22 #define FWL_ITEMSTATE_MCD_Flag (1L << 0) | 22 #define FWL_ITEMSTATE_MCD_Flag (1L << 0) |
| 23 #define FWL_ITEMSTATE_MCD_Selected (1L << 1) | 23 #define FWL_ITEMSTATE_MCD_Selected (1L << 1) |
| 24 #define FWL_ITEMSTATE_MCD_Focused (1L << 2) | 24 #define FWL_ITEMSTATE_MCD_Focused (1L << 2) |
| 25 #define FWL_NOTEHASH_MCD_DATASELECTED 1085596932 | |
| 26 // TODO(dsinclair): Event hash is hash of string, cleanup. pdfium:474 | |
| 27 #define FWL_EVTHASH_MCD_DateChanged 54212227 | |
| 28 | 25 |
| 29 BEGIN_FWL_EVENT_DEF(CFWL_Event_McdDateSelected, FWL_NOTEHASH_MCD_DATASELECTED) | 26 BEGIN_FWL_EVENT_DEF(CFWL_Event_McdDateSelected, CFWL_EventType::DataSelected) |
| 30 int32_t m_iStartDay; | 27 int32_t m_iStartDay; |
| 31 int32_t m_iEndDay; | 28 int32_t m_iEndDay; |
| 32 END_FWL_EVENT_DEF | 29 END_FWL_EVENT_DEF |
| 33 | 30 |
| 34 BEGIN_FWL_EVENT_DEF(CFWL_EventMcdDateChanged, FWL_EVTHASH_MCD_DateChanged) | 31 BEGIN_FWL_EVENT_DEF(CFWL_EventMcdDateChanged, CFWL_EventType::DateChanged) |
| 35 int32_t m_iOldYear; | 32 int32_t m_iOldYear; |
| 36 int32_t m_iOldMonth; | 33 int32_t m_iOldMonth; |
| 37 int32_t m_iStartDay; | 34 int32_t m_iStartDay; |
| 38 int32_t m_iEndDay; | 35 int32_t m_iEndDay; |
| 39 END_FWL_EVENT_DEF | 36 END_FWL_EVENT_DEF |
| 40 | 37 |
| 41 class IFWL_MonthCalendarDP : public IFWL_DataProvider { | 38 class IFWL_MonthCalendarDP : public IFWL_DataProvider { |
| 42 public: | 39 public: |
| 43 virtual int32_t GetCurDay(IFWL_Widget* pWidget) = 0; | 40 virtual int32_t GetCurDay(IFWL_Widget* pWidget) = 0; |
| 44 virtual int32_t GetCurMonth(IFWL_Widget* pWidget) = 0; | 41 virtual int32_t GetCurMonth(IFWL_Widget* pWidget) = 0; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 55 int32_t& iMonth, | 52 int32_t& iMonth, |
| 56 int32_t& iDay, | 53 int32_t& iDay, |
| 57 int32_t nIndex = 0); | 54 int32_t nIndex = 0); |
| 58 FX_BOOL SetSelect(int32_t iYear, int32_t iMonth, int32_t iDay); | 55 FX_BOOL SetSelect(int32_t iYear, int32_t iMonth, int32_t iDay); |
| 59 | 56 |
| 60 protected: | 57 protected: |
| 61 IFWL_MonthCalendar(); | 58 IFWL_MonthCalendar(); |
| 62 }; | 59 }; |
| 63 | 60 |
| 64 #endif // XFA_FWL_BASEWIDGET_IFWL_MONTHCALENDAR_H_ | 61 #endif // XFA_FWL_BASEWIDGET_IFWL_MONTHCALENDAR_H_ |
| OLD | NEW |