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