LibreOffice Module xmloff (master) 1
txtimppr.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19#ifndef INCLUDED_XMLOFF_TXTIMPPR_HXX
20#define INCLUDED_XMLOFF_TXTIMPPR_HXX
21
22#include <xmloff/dllapi.h>
23#include <xmloff/xmlimppr.hxx>
24#include <optional>
25
27{
30
31 static void FontFinished(
32 XMLPropertyState *pFontFamilyNameState,
33 XMLPropertyState *pFontStyleNameState,
34 XMLPropertyState *pFontFamilyState,
35 XMLPropertyState *pFontPitchState,
36 XMLPropertyState *pFontCharsetState );
37
38 void FontDefaultsCheck(
39 XMLPropertyState const * pFontFamilyName,
40 XMLPropertyState const * pFontStyleName,
41 XMLPropertyState const * pFontFamily,
42 XMLPropertyState const * pFontPitch,
43 XMLPropertyState const * pFontCharSet,
44 std::optional<XMLPropertyState>* ppNewFontStyleName,
45 std::optional<XMLPropertyState>* ppNewFontFamily,
46 std::optional<XMLPropertyState>* ppNewFontPitch,
47 std::optional<XMLPropertyState>* ppNewFontCharSet ) const;
48
49 virtual bool handleSpecialItem(
50 XMLPropertyState& rProperty,
51 ::std::vector< XMLPropertyState >& rProperties,
52 const OUString& rValue,
53 const SvXMLUnitConverter& rUnitConverter,
54 const SvXMLNamespaceMap& rNamespaceMap ) const override;
55public:
58 SvXMLImport& rImport );
59 virtual ~XMLTextImportPropertyMapper() override;
60
62 virtual void finished(
63 ::std::vector< XMLPropertyState >& rProperties,
64 sal_Int32 nStartIndex, sal_Int32 nEndIndex ) const override;
65};
66
67#endif // INCLUDED_XMLOFF_TXTIMPPR_HXX
68
69/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual bool handleSpecialItem(XMLPropertyState &rProperty, ::std::vector< XMLPropertyState > &rProperties, const OUString &rValue, const SvXMLUnitConverter &rUnitConverter, const SvXMLNamespaceMap &rNamespaceMap) const
this method is called for every item that has the MID_FLAG_SPECIAL_ITEM_IMPORT flag set
Definition: xmlimppr.cxx:346
virtual void finished(::std::vector< XMLPropertyState > &rProperties, sal_Int32 nStartIndex, sal_Int32 nEndIndex) const
This method is called when all attributes have benn processed.
Definition: xmlimppr.cxx:752
the SvXMLTypeConverter converts values of various types from their internal representation to the tex...
Definition: xmluconv.hxx:83
#define XMLOFF_DLLPUBLIC
Definition: dllapi.h:29
Smart struct to transport an Any with an index to the appropriate property-name.
Definition: maptype.hxx:140