| 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 _FPDFAPI_LAYOUT_H_ | 7 #ifndef CORE_INCLUDE_REFLOW_FPDF_LAYOUT_H_ |
| 8 #define _FPDFAPI_LAYOUT_H_ | 8 #define CORE_INCLUDE_REFLOW_FPDF_LAYOUT_H_ |
| 9 |
| 9 class IPDF_LayoutElement; | 10 class IPDF_LayoutElement; |
| 10 class IPDF_LayoutProcessor; | 11 class IPDF_LayoutProcessor; |
| 11 class IPDF_LayoutProvider; | 12 class IPDF_LayoutProvider; |
| 12 typedef enum { | 13 typedef enum { |
| 13 LayoutUnknown, | 14 LayoutUnknown, |
| 14 LayoutArifact, | 15 LayoutArifact, |
| 15 LayoutDocument, | 16 LayoutDocument, |
| 16 LayoutPart, | 17 LayoutPart, |
| 17 LayoutArt, | 18 LayoutArt, |
| 18 LayoutSect, | 19 LayoutSect, |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 | 271 |
| 271 | 272 |
| 272 virtual LayoutStatus StartLoad(IFX_Pause* pPause = NULL) = 0; | 273 virtual LayoutStatus StartLoad(IFX_Pause* pPause = NULL) = 0; |
| 273 | 274 |
| 274 virtual LayoutStatus Continue() = 0; | 275 virtual LayoutStatus Continue() = 0; |
| 275 virtual int GetPosition() = 0; | 276 virtual int GetPosition() = 0; |
| 276 | 277 |
| 277 | 278 |
| 278 virtual IPDF_LayoutElement* GetRoot() = 0; | 279 virtual IPDF_LayoutElement* GetRoot() = 0; |
| 279 }; | 280 }; |
| 280 #endif | 281 #endif // CORE_INCLUDE_REFLOW_FPDF_LAYOUT_H_ |
| OLD | NEW |