summaryrefslogtreecommitdiff
path: root/writerfilter/source/ooxml/OOXMLFactory.hxx
blob: abcf9c425f8e78fd83934b47f6494987249aaad0 (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
103
104
105
106
107
108
109
/* -*- 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/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#ifndef INCLUDED_WRITERFILTER_SOURCE_OOXML_OOXMLFACTORY_HXX
#define INCLUDED_WRITERFILTER_SOURCE_OOXML_OOXMLFACTORY_HXX

#include <dmapper/resourcemodel.hxx>

#include "OOXMLFastContextHandler.hxx"

namespace writerfilter {
namespace ooxml {

enum class ResourceType {
    NoResource,
    Table,
    Stream,
    List,
    Integer,
    Properties,
    Hex,
    HexColor,
    String,
    Shape,
    Boolean,
    Value,
    XNote,
    TextTableCell,
    TextTableRow,
    TextTable,
    PropertyTable,
    Math,
    Any,
    TwipsMeasure_asSigned,
    TwipsMeasure_asZero,
    HpsMeasure,
    MeasurementOrPercent
};

struct AttributeInfo
{
    Token_t const m_nToken;
    ResourceType const m_nResource;
    Id const m_nRef;
};

class OOXMLFactory_ns : public virtual SvRefBase {
public:
    typedef tools::SvRef<OOXMLFactory_ns> Pointer_t;

    virtual void startAction(OOXMLFastContextHandler * pHandler);
    virtual void charactersAction(OOXMLFastContextHandler * pHandler, const OUString & rString);
    virtual void endAction(OOXMLFastContextHandler * pHandler);
    virtual void attributeAction(OOXMLFastContextHandler * pHandler, Token_t nToken, const OOXMLValue::Pointer_t& pValue);

protected:
    virtual ~OOXMLFactory_ns() override;

public:
    virtual bool getListValue(Id nId, const OUString& rValue, sal_uInt32& rOutValue) = 0;
    virtual Id getResourceId(Id nDefine, sal_Int32 nToken) = 0;
    virtual const AttributeInfo* getAttributeInfoArray(Id nId) = 0;
    virtual bool getElementId(Id nDefine, Id nId, ResourceType& rOutResource, Id& rOutElement) = 0;
};

class OOXMLFactory
{
public:

    static css::uno::Reference< css::xml::sax::XFastContextHandler> createFastChildContext(OOXMLFastContextHandler * pHandler, Token_t Element);

    static css::uno::Reference< css::xml::sax::XFastContextHandler> createFastChildContextFromStart(OOXMLFastContextHandler * pHandler, Token_t Element);

    static void attributes(OOXMLFastContextHandler * pHandler, const css::uno::Reference< css::xml::sax::XFastAttributeList > & Attribs);

    static void characters(OOXMLFastContextHandler * pHandler, const OUString & rString);

    static void startAction(OOXMLFastContextHandler * pHandler);
    static void endAction(OOXMLFastContextHandler * pHandler);

private:
    OOXMLFactory() = delete;
    static OOXMLFactory_ns::Pointer_t getFactoryForNamespace(Id id);

    static css::uno::Reference< css::xml::sax::XFastContextHandler> createFastChildContextFromFactory(OOXMLFastContextHandler * pHandler, OOXMLFactory_ns::Pointer_t pFactory, Token_t Element);
};

}
}

#endif // INCLUDED_WRITERFILTER_SOURCE_OOXML_OOXMLFACTORY_HXX

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