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_EVENT_MCD_DATESELECTED L"FWL_EVENT_MCD_DateSelected" | 25 #define FWL_EVENT_MCD_DATESELECTED L"FWL_EVENT_MCD_DateSelected" |
26 #define FWL_NOTEHASH_MCD_DATASELECTED 1085596932 | |
27 // TODO(dsinclair): Event hash is hash of string, cleanup. pdfium:474 | |
28 #define FWL_EVTHASH_MCD_DateChanged 54212227 | |
29 | 26 |
30 BEGIN_FWL_EVENT_DEF(CFWL_Event_McdDateSelected, FWL_NOTEHASH_MCD_DATASELECTED) | 27 BEGIN_FWL_EVENT_DEF(CFWL_Event_McdDateSelected, CFWL_EventType::DataSelected) |
31 int32_t m_iStartDay; | 28 int32_t m_iStartDay; |
32 int32_t m_iEndDay; | 29 int32_t m_iEndDay; |
33 END_FWL_EVENT_DEF | 30 END_FWL_EVENT_DEF |
34 | 31 |
35 BEGIN_FWL_EVENT_DEF(CFWL_EventMcdDateChanged, FWL_EVTHASH_MCD_DateChanged) | 32 BEGIN_FWL_EVENT_DEF(CFWL_EventMcdDateChanged, CFWL_EventType::DateChanged) |
36 int32_t m_iOldYear; | 33 int32_t m_iOldYear; |
37 int32_t m_iOldMonth; | 34 int32_t m_iOldMonth; |
38 int32_t m_iStartDay; | 35 int32_t m_iStartDay; |
39 int32_t m_iEndDay; | 36 int32_t m_iEndDay; |
40 END_FWL_EVENT_DEF | 37 END_FWL_EVENT_DEF |
41 | 38 |
42 class IFWL_MonthCalendarDP : public IFWL_DataProvider { | 39 class IFWL_MonthCalendarDP : public IFWL_DataProvider { |
43 public: | 40 public: |
44 virtual int32_t GetCurDay(IFWL_Widget* pWidget) = 0; | 41 virtual int32_t GetCurDay(IFWL_Widget* pWidget) = 0; |
45 virtual int32_t GetCurMonth(IFWL_Widget* pWidget) = 0; | 42 virtual int32_t GetCurMonth(IFWL_Widget* pWidget) = 0; |
(...skipping 10 matching lines...) Expand all Loading... |
56 int32_t& iMonth, | 53 int32_t& iMonth, |
57 int32_t& iDay, | 54 int32_t& iDay, |
58 int32_t nIndex = 0); | 55 int32_t nIndex = 0); |
59 FX_BOOL SetSelect(int32_t iYear, int32_t iMonth, int32_t iDay); | 56 FX_BOOL SetSelect(int32_t iYear, int32_t iMonth, int32_t iDay); |
60 | 57 |
61 protected: | 58 protected: |
62 IFWL_MonthCalendar(); | 59 IFWL_MonthCalendar(); |
63 }; | 60 }; |
64 | 61 |
65 #endif // XFA_FWL_BASEWIDGET_IFWL_MONTHCALENDAR_H_ | 62 #endif // XFA_FWL_BASEWIDGET_IFWL_MONTHCALENDAR_H_ |
OLD | NEW |