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_THEME_CFWL_MONTHCALENDARTP_H_ | 7 #ifndef XFA_FWL_THEME_CFWL_MONTHCALENDARTP_H_ |
8 #define XFA_FWL_THEME_CFWL_MONTHCALENDARTP_H_ | 8 #define XFA_FWL_THEME_CFWL_MONTHCALENDARTP_H_ |
9 | 9 |
10 #include "xfa/fwl/theme/cfwl_widgettp.h" | 10 #include "xfa/fwl/theme/cfwl_widgettp.h" |
11 | 11 |
12 class CFWL_MonthCalendarTP : public CFWL_WidgetTP { | 12 class CFWL_MonthCalendarTP : public CFWL_WidgetTP { |
13 public: | 13 public: |
14 CFWL_MonthCalendarTP(); | 14 CFWL_MonthCalendarTP(); |
15 ~CFWL_MonthCalendarTP() override; | 15 ~CFWL_MonthCalendarTP() override; |
16 | 16 |
17 FX_BOOL IsValidWidget(IFWL_Widget* pWidget) override; | 17 // CFWL_WidgetTP |
| 18 bool IsValidWidget(IFWL_Widget* pWidget) override; |
18 uint32_t SetThemeID(IFWL_Widget* pWidget, | 19 uint32_t SetThemeID(IFWL_Widget* pWidget, |
19 uint32_t dwThemeID, | 20 uint32_t dwThemeID, |
20 FX_BOOL bChildren = TRUE) override; | 21 FX_BOOL bChildren = TRUE) override; |
21 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; | 22 FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams) override; |
22 FX_BOOL DrawText(CFWL_ThemeText* pParams) override; | 23 FX_BOOL DrawText(CFWL_ThemeText* pParams) override; |
23 void* GetCapacity(CFWL_ThemePart* pThemePart, | 24 void* GetCapacity(CFWL_ThemePart* pThemePart, |
24 CFWL_WidgetCapacity dwCapacity) override; | 25 CFWL_WidgetCapacity dwCapacity) override; |
25 FWL_Error Initialize() override; | 26 FWL_Error Initialize() override; |
26 FWL_Error Finalize() override; | 27 FWL_Error Finalize() override; |
27 | 28 |
28 protected: | 29 protected: |
29 FX_BOOL DrawTotalBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 30 FX_BOOL DrawTotalBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
30 FX_BOOL DrawHeadBk(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 31 FX_BOOL DrawHeadBk(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
31 FX_BOOL DrawLButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 32 FX_BOOL DrawLButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
32 FX_BOOL DrawRButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 33 FX_BOOL DrawRButton(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
33 FX_BOOL DrawDatesInBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 34 FX_BOOL DrawDatesInBK(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
34 FX_BOOL DrawDatesInCircle(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 35 FX_BOOL DrawDatesInCircle(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
35 FX_BOOL DrawTodayCircle(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 36 FX_BOOL DrawTodayCircle(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
36 FX_BOOL DrawHSeperator(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 37 FX_BOOL DrawHSeperator(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
37 FX_BOOL DrawWeekNumSep(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); | 38 FX_BOOL DrawWeekNumSep(CFWL_ThemeBackground* pParams, CFX_Matrix* pMatrix); |
38 FWLTHEME_STATE GetState(uint32_t dwFWLStates); | 39 FWLTHEME_STATE GetState(uint32_t dwFWLStates); |
39 void SetThemeData(uint32_t dwThemeID); | 40 void SetThemeData(uint32_t dwThemeID); |
| 41 |
40 class MCThemeData { | 42 class MCThemeData { |
41 public: | 43 public: |
42 FX_ARGB clrCaption; | 44 FX_ARGB clrCaption; |
43 FX_ARGB clrSeperator; | 45 FX_ARGB clrSeperator; |
44 FX_ARGB clrDatesHoverBK; | 46 FX_ARGB clrDatesHoverBK; |
45 FX_ARGB clrDatesSelectedBK; | 47 FX_ARGB clrDatesSelectedBK; |
46 FX_ARGB clrDatesCircle; | 48 FX_ARGB clrDatesCircle; |
47 FX_ARGB clrToday; | 49 FX_ARGB clrToday; |
48 FX_ARGB clrBK; | 50 FX_ARGB clrBK; |
49 } * m_pThemeData; | 51 } * m_pThemeData; |
50 CFX_WideString wsResource; | 52 CFX_WideString wsResource; |
51 }; | 53 }; |
52 | 54 |
53 #endif // XFA_FWL_THEME_CFWL_MONTHCALENDARTP_H_ | 55 #endif // XFA_FWL_THEME_CFWL_MONTHCALENDARTP_H_ |
OLD | NEW |