summaryrefslogtreecommitdiff
path: root/writerperfect/source/writer/EPUBPackage.hxx
blob: 00cd129d80458b851e9b94c23be3affb99044706 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef INCLUDED_WRITERPERFECT_SOURCE_WRITER_EPUBPACKAGE_HXX
#define INCLUDED_WRITERPERFECT_SOURCE_WRITER_EPUBPACKAGE_HXX

#include <libepubgen/EPUBPackage.h>

#include <com/sun/star/uno/Sequence.h>
#include <com/sun/star/uno/Reference.h>

namespace com
{
namespace sun
{
namespace star
{
namespace beans
{
struct PropertyValue;
}
namespace embed
{
class XHierarchicalStorageAccess;
}
namespace io
{
class XOutputStream;
}
namespace uno
{
class XComponentContext;
}
namespace xml
{
namespace sax
{
class XWriter;
}
}
}
}
}

namespace writerperfect
{
/// The epub package has direct access to the resulting ZIP file.
class EPUBPackage : public libepubgen::EPUBPackage
{
    css::uno::Reference<css::uno::XComponentContext> mxContext;
    css::uno::Reference<css::embed::XHierarchicalStorageAccess> mxStorage;
    css::uno::Reference<css::io::XOutputStream> mxOutputStream;
    css::uno::Reference<css::xml::sax::XWriter> mxOutputWriter;

public:
    explicit EPUBPackage(css::uno::Reference<css::uno::XComponentContext> xContext,
                         const css::uno::Sequence<css::beans::PropertyValue>& rDescriptor);

    ~EPUBPackage() override;

    void openXMLFile(const char* pName) override;

    void openElement(const char* pName, const librevenge::RVNGPropertyList& rAttributes) override;
    void closeElement(const char* pName) override;

    void insertCharacters(const librevenge::RVNGString& rCharacters) override;

    void closeXMLFile() override;

    void openCSSFile(const char* pName) override;

    void insertRule(const librevenge::RVNGString& rSelector,
                    const librevenge::RVNGPropertyList& rProperties) override;

    void closeCSSFile() override;

    void openBinaryFile(const char* pName) override;

    void insertBinaryData(const librevenge::RVNGBinaryData& rData) override;

    void closeBinaryFile() override;

    void openTextFile(const char* pName) override;

    void insertText(const librevenge::RVNGString& rCharacters) override;

    void insertLineBreak() override;

    void closeTextFile() override;
};

} // namespace writerperfect

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */