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_FXFA_APP_XFA_FWLTHEME_H_ | 7 #ifndef XFA_FXFA_APP_XFA_FWLTHEME_H_ |
8 #define XFA_FXFA_APP_XFA_FWLTHEME_H_ | 8 #define XFA_FXFA_APP_XFA_FWLTHEME_H_ |
9 | 9 |
10 #include "xfa/fwl/core/ifwl_target.h" | 10 #include "xfa/fwl/core/ifwl_target.h" |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 CFWL_ListBoxTP* m_pListBoxTP; | 70 CFWL_ListBoxTP* m_pListBoxTP; |
71 CFWL_PictureBoxTP* m_pPictureBoxTP; | 71 CFWL_PictureBoxTP* m_pPictureBoxTP; |
72 CFWL_ScrollBarTP* m_pSrollBarTP; | 72 CFWL_ScrollBarTP* m_pSrollBarTP; |
73 CFWL_EditTP* m_pEditTP; | 73 CFWL_EditTP* m_pEditTP; |
74 CFWL_ComboBoxTP* m_pComboBoxTP; | 74 CFWL_ComboBoxTP* m_pComboBoxTP; |
75 CFWL_MonthCalendarTP* m_pMonthCalendarTP; | 75 CFWL_MonthCalendarTP* m_pMonthCalendarTP; |
76 CFWL_DateTimePickerTP* m_pDateTimePickerTP; | 76 CFWL_DateTimePickerTP* m_pDateTimePickerTP; |
77 CFWL_PushButtonTP* m_pPushButtonTP; | 77 CFWL_PushButtonTP* m_pPushButtonTP; |
78 CFWL_CaretTP* m_pCaretTP; | 78 CFWL_CaretTP* m_pCaretTP; |
79 CFWL_BarcodeTP* m_pBarcodeTP; | 79 CFWL_BarcodeTP* m_pBarcodeTP; |
80 IFDE_TextOut* m_pTextOut; | 80 CFDE_TextOut* m_pTextOut; |
81 FX_FLOAT m_fCapacity; | 81 FX_FLOAT m_fCapacity; |
82 uint32_t m_dwCapacity; | 82 uint32_t m_dwCapacity; |
83 IFX_Font* m_pCalendarFont; | 83 IFX_Font* m_pCalendarFont; |
84 CFX_WideString m_wsResource; | 84 CFX_WideString m_wsResource; |
85 CXFA_FFApp* m_pApp; | 85 CXFA_FFApp* m_pApp; |
86 CFX_RectF m_Rect; | 86 CFX_RectF m_Rect; |
87 CFX_SizeF m_SizeAboveBelow; | 87 CFX_SizeF m_SizeAboveBelow; |
88 }; | 88 }; |
89 class CXFA_FWLCheckBoxTP : public CFWL_CheckBoxTP { | 89 class CXFA_FWLCheckBoxTP : public CFWL_CheckBoxTP { |
90 public: | 90 public: |
(...skipping 10 matching lines...) Expand all Loading... |
101 class CXFA_FWLEditTP : public CFWL_EditTP { | 101 class CXFA_FWLEditTP : public CFWL_EditTP { |
102 public: | 102 public: |
103 CXFA_FWLEditTP(); | 103 CXFA_FWLEditTP(); |
104 virtual ~CXFA_FWLEditTP(); | 104 virtual ~CXFA_FWLEditTP(); |
105 | 105 |
106 public: | 106 public: |
107 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams); | 107 virtual FX_BOOL DrawBackground(CFWL_ThemeBackground* pParams); |
108 }; | 108 }; |
109 | 109 |
110 #endif // XFA_FXFA_APP_XFA_FWLTHEME_H_ | 110 #endif // XFA_FXFA_APP_XFA_FWLTHEME_H_ |
OLD | NEW |