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