1 // Copyright 2016 PDFium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef XFA_FWL_CFWL_THEMEBACKGROUND_H_ 8 #define XFA_FWL_CFWL_THEMEBACKGROUND_H_ 9 10 #include "xfa/fwl/cfwl_themepart.h" 11 12 class CXFA_Graphics; 13 class CXFA_GEPath; 14 15 class CFWL_ThemeBackground : public CFWL_ThemePart { 16 public: 17 CFWL_ThemeBackground(); 18 ~CFWL_ThemeBackground(); 19 20 CXFA_Graphics* m_pGraphics; 21 CXFA_GEPath* m_pPath; 22 }; 23 CFWL_ThemeBackground()24inline CFWL_ThemeBackground::CFWL_ThemeBackground() 25 : m_pGraphics(nullptr), m_pPath(nullptr) {} 26 ~CFWL_ThemeBackground()27inline CFWL_ThemeBackground::~CFWL_ThemeBackground() {} 28 29 #endif // XFA_FWL_CFWL_THEMEBACKGROUND_H_ 30