1 // Copyright 2014 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 _FXFA_FORMFILLERCONFIGACC_IMP_H 8 #define _FXFA_FORMFILLERCONFIGACC_IMP_H 9 class CXFA_FFConfigAcc { 10 public: 11 CXFA_FFConfigAcc(CXFA_Node* pNode); 12 ~CXFA_FFConfigAcc(); 13 int32_t CountChildren(); 14 FX_BOOL GetFontInfo(int32_t index, 15 CFX_WideString& wsFontFamily, 16 CFX_WideString& wsPsName, 17 FX_BOOL bBold, 18 FX_BOOL bItalic); 19 20 private: 21 void GetPsMapNode(); 22 CXFA_Node* m_pNode; 23 CXFA_Node* m_pPsMapNode; 24 }; 25 #endif 26