summaryrefslogtreecommitdiff
path: root/core/include/reflow/reflowengine.h
blob: 30c71740533ffa5e00bc139037b30778d173643c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
 
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com

#ifndef CORE_INCLUDE_REFLOW_REFLOWENGINE_H_
#define CORE_INCLUDE_REFLOW_REFLOWENGINE_H_

#include "../fpdfapi/fpdf_pageobj.h"
#include "../fpdfapi/fpdf_render.h"
#include "../fpdfdoc/fpdf_tagged.h"
#include "../fpdftext/fpdf_text.h"
#include "fpdf_layout.h"

class IPDF_ReflowedPage
{
public:
    static IPDF_ReflowedPage* Create();

    virtual ~IPDF_ReflowedPage() {}
    virtual CFX_PrivateData*	GetPrivateDataCtrl() = 0;


    virtual void		GetDisplayMatrix(CFX_AffineMatrix& matrix, int32_t xPos, int32_t yPos, int32_t xSize, int32_t ySize, int32_t iRotate, const CFX_AffineMatrix* pPageMatrix) = 0;
    virtual FX_FLOAT	GetPageHeight() = 0;
    virtual FX_FLOAT	GetPageWidth() = 0;
    virtual void		FocusGetData(const CFX_AffineMatrix matrix, int32_t x, int32_t y, CFX_ByteString& str) = 0;
    virtual FX_BOOL		FocusGetPosition(const CFX_AffineMatrix matrix, CFX_ByteString str, int32_t& x, int32_t& y) = 0;
};
typedef struct _RF_ParseStyle {
    _RF_ParseStyle()
    {
        m_LineSpace = 0;
    };
    FX_FLOAT m_LineSpace;
} RF_ParseStyle;
class IPDF_ProgressiveReflowPageParser
{
public:
    static IPDF_ProgressiveReflowPageParser* Create();
    static FX_BOOL	IsTaggedPage(CPDF_PageObjects*pPage);

    virtual ~IPDF_ProgressiveReflowPageParser() {}
    typedef enum { Ready, ToBeContinued, Done, Failed } ParseStatus;

    virtual ParseStatus		GetStatus() = 0;
    virtual void			SetParserStyle(RF_ParseStyle style) = 0;
    virtual void			Start(IPDF_ReflowedPage* pReflowPage, CPDF_Page* pPage, FX_FLOAT TopIndent, FX_FLOAT fWidth, FX_FLOAT fHeight, IFX_Pause* pPause, int flags) = 0;
    virtual void			Continue(IFX_Pause* pPause) = 0;

    virtual int				GetPosition() = 0;


    virtual void			Clear() = 0;
};
class IPDF_ProgressiveReflowPageRender
{
public:
    static IPDF_ProgressiveReflowPageRender* Create();

    virtual ~IPDF_ProgressiveReflowPageRender() {}
    typedef enum { Ready, ToBeContinued, Waiting, Done, Failed } RenderStatus;

    virtual RenderStatus	GetStatus() = 0;


    virtual void		Start(IPDF_ReflowedPage* pReflowPage, CFX_RenderDevice* pDevice, const CFX_AffineMatrix* pMatrix, IFX_Pause* pPause, int DitherBits ) = 0;
    virtual void		Continue(IFX_Pause* pPause) = 0;
    virtual int			GetPosition() = 0;


    virtual void				Clear() = 0;
};
IPDF_ReflowedPage* Create_ReflowPage();
IPDF_ProgressiveReflowPageParser* Create_ReflowPageParser();
IPDF_ProgressiveReflowPageRender* Create_ReflowPageRender();

#endif  // CORE_INCLUDE_REFLOW_REFLOWENGINE_H_