summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/pdfinput/pdf-utils.h
blob: e1a449a4e3841a4af0e3fa9d0dc034a77c04a521 (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
// SPDX-License-Identifier: GPL-2.0-or-later
/** @file
 * PDF Parsing utility functions and classes.
 *//*
 * 
 * Copyright (C) 2022 Authors
 *
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#ifndef PDF_UTILS_H
#define PDF_UTILS_H

#include <2geom/rect.h>
#include "poppler-transition-api.h"
#include "2geom/affine.h"
#include "Gfx.h"
#include "GfxState.h"
#include "Page.h"

class ClipHistoryEntry
{
public:
    ClipHistoryEntry(GfxPath *clipPath = nullptr, GfxClipType clipType = clipNormal);
    virtual ~ClipHistoryEntry();

    // Manipulate clip path stack
    ClipHistoryEntry *save(bool cleared = false);
    ClipHistoryEntry *restore();
    bool hasSaves() { return saved != nullptr; }
    bool hasClipPath() { return clipPath != nullptr && !cleared; }
    bool isCopied() { return copied; }
    bool isBoundingBox() { return is_bbox; }
    void setClip(GfxState *state, GfxClipType newClipType = clipNormal, bool bbox = false);
    GfxPath *getClipPath() { return clipPath; }
    GfxClipType getClipType() { return clipType; }
    const Geom::Affine &getAffine() { return affine; }
    bool evenOdd() { return clipType != clipNormal; }
    void clear() { cleared = true; }

private:
    ClipHistoryEntry *saved; // next clip path on stack

    Geom::Affine affine = Geom::identity(); // Saved affine state of the clipPath
    GfxPath *clipPath;                      // used as the path to be filled for an 'sh' operator
    GfxClipType clipType;
    bool is_bbox = false;
    bool cleared = false;
    bool copied = false;

    ClipHistoryEntry(ClipHistoryEntry *other, bool cleared = false);
};

Geom::Rect getRect(_POPPLER_CONST PDFRectangle *box);

#endif /* PDF_UTILS_H */