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 _REFLOWED_PAGE_H | 7 #ifndef CORE_SRC_REFLOW_REFLOWEDPAGE_H_ |
8 #define _REFLOWED_PAGE_H | 8 #define CORE_SRC_REFLOW_REFLOWEDPAGE_H_ |
| 9 |
9 #include "../../include/reflow/reflowengine.h" | 10 #include "../../include/reflow/reflowengine.h" |
| 11 |
10 #define GET_SIGNED(a) ( (a)>0 ? a/a : (a==0 ? 0 : -a/a) ) | 12 #define GET_SIGNED(a) ( (a)>0 ? a/a : (a==0 ? 0 : -a/a) ) |
11 class CRF_Data; | 13 class CRF_Data; |
12 class CRF_LineData; | 14 class CRF_LineData; |
13 class CRF_CharData; | 15 class CRF_CharData; |
14 class CRF_PathData; | 16 class CRF_PathData; |
15 class CRF_ImageData; | 17 class CRF_ImageData; |
16 class CRF_Table; | 18 class CRF_Table; |
17 class CRF_AttrOperation; | 19 class CRF_AttrOperation; |
18 class CRF_OperationDate; | 20 class CRF_OperationDate; |
19 class CPDF_ReflowedPage; | 21 class CPDF_ReflowedPage; |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 } | 363 } |
362 ~CRF_PathData() {}; | 364 ~CRF_PathData() {}; |
363 FX_BOOL m_bDecoration; | 365 FX_BOOL m_bDecoration; |
364 CPDF_Path m_pPathData; | 366 CPDF_Path m_pPathData; |
365 CFX_AffineMatrix m_pPath2Device; | 367 CFX_AffineMatrix m_pPath2Device; |
366 CPDF_GraphState m_pGraphState; | 368 CPDF_GraphState m_pGraphState; |
367 FX_ARGB m_fill_argb; | 369 FX_ARGB m_fill_argb; |
368 FX_ARGB m_stroke_argb; | 370 FX_ARGB m_stroke_argb; |
369 int m_fill_mode; | 371 int m_fill_mode; |
370 }; | 372 }; |
371 #endif | 373 |
| 374 #endif // CORE_SRC_REFLOW_REFLOWEDPAGE_H_ |
OLD | NEW |