| 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" |
| 11 #include "xfa/fwl/core/ifwl_themeprovider.h" |
| 10 #include "xfa/fxfa/app/xfa_ffapp.h" | 12 #include "xfa/fxfa/app/xfa_ffapp.h" |
| 11 #include "xfa/include/fwl/core/fwl_target.h" | |
| 12 #include "xfa/include/fwl/core/fwl_theme.h" | |
| 13 #include "xfa/include/fwl/theme/barcodetp.h" | 13 #include "xfa/include/fwl/theme/barcodetp.h" |
| 14 #include "xfa/include/fwl/theme/carettp.h" | 14 #include "xfa/include/fwl/theme/carettp.h" |
| 15 #include "xfa/include/fwl/theme/checkboxtp.h" | 15 #include "xfa/include/fwl/theme/checkboxtp.h" |
| 16 #include "xfa/include/fwl/theme/comboboxtp.h" | 16 #include "xfa/include/fwl/theme/comboboxtp.h" |
| 17 #include "xfa/include/fwl/theme/datetimepickertp.h" | 17 #include "xfa/include/fwl/theme/datetimepickertp.h" |
| 18 #include "xfa/include/fwl/theme/edittp.h" | 18 #include "xfa/include/fwl/theme/edittp.h" |
| 19 #include "xfa/include/fwl/theme/listboxtp.h" | 19 #include "xfa/include/fwl/theme/listboxtp.h" |
| 20 #include "xfa/include/fwl/theme/monthcalendartp.h" | 20 #include "xfa/include/fwl/theme/monthcalendartp.h" |
| 21 #include "xfa/include/fwl/theme/pictureboxtp.h" | 21 #include "xfa/include/fwl/theme/pictureboxtp.h" |
| 22 #include "xfa/include/fwl/theme/pushbuttontp.h" | 22 #include "xfa/include/fwl/theme/pushbuttontp.h" |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |