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_FDE_CSS_FDE_CSS_H_ | 7 #ifndef XFA_FDE_CSS_FDE_CSS_H_ |
8 #define XFA_FDE_CSS_FDE_CSS_H_ | 8 #define XFA_FDE_CSS_FDE_CSS_H_ |
9 | 9 |
10 #include "core/fxge/fx_dib.h" | 10 #include "core/fxge/fx_dib.h" |
11 #include "xfa/fgas/crt/fgas_stream.h" | 11 #include "xfa/fgas/crt/fgas_stream.h" |
12 #include "xfa/fgas/crt/fgas_utils.h" | 12 #include "xfa/fgas/crt/fgas_utils.h" |
13 #include "xfa/fgas/font/fgas_font.h" | 13 #include "xfa/fgas/font/cfgas_fontmgr.h" |
14 | 14 |
15 class CFDE_CSSAccelerator; | 15 class CFDE_CSSAccelerator; |
16 class CFDE_CSSDeclaration; | 16 class CFDE_CSSDeclaration; |
17 class CFDE_CSSSelector; | 17 class CFDE_CSSSelector; |
18 class CXFA_CSSTagProvider; | 18 class CXFA_CSSTagProvider; |
19 class IFDE_CSSBoundaryStyle; | 19 class IFDE_CSSBoundaryStyle; |
20 class IFDE_CSSComputedStyle; | 20 class IFDE_CSSComputedStyle; |
21 class IFDE_CSSFontStyle; | 21 class IFDE_CSSFontStyle; |
22 class IFDE_CSSParagraphStyle; | 22 class IFDE_CSSParagraphStyle; |
23 class IFDE_CSSPositionStyle; | 23 class IFDE_CSSPositionStyle; |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 virtual void Reset() = 0; | 895 virtual void Reset() = 0; |
896 virtual IFDE_CSSFontStyle* GetFontStyles() = 0; | 896 virtual IFDE_CSSFontStyle* GetFontStyles() = 0; |
897 virtual IFDE_CSSBoundaryStyle* GetBoundaryStyles() = 0; | 897 virtual IFDE_CSSBoundaryStyle* GetBoundaryStyles() = 0; |
898 virtual IFDE_CSSPositionStyle* GetPositionStyles() = 0; | 898 virtual IFDE_CSSPositionStyle* GetPositionStyles() = 0; |
899 virtual IFDE_CSSParagraphStyle* GetParagraphStyles() = 0; | 899 virtual IFDE_CSSParagraphStyle* GetParagraphStyles() = 0; |
900 virtual bool GetCustomStyle(const CFX_WideStringC& wsName, | 900 virtual bool GetCustomStyle(const CFX_WideStringC& wsName, |
901 CFX_WideString& wsValue) const = 0; | 901 CFX_WideString& wsValue) const = 0; |
902 }; | 902 }; |
903 | 903 |
904 #endif // XFA_FDE_CSS_FDE_CSS_H_ | 904 #endif // XFA_FDE_CSS_FDE_CSS_H_ |
OLD | NEW |