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