Bump version to 6.4-15
[LibreOffice.git] / include / xmloff / txtimppr.hxx
blobbfbd40f6aba0059fe2be05aa61421a41dcf829e2
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_XMLOFF_TXTIMPPR_HXX
20 #define INCLUDED_XMLOFF_TXTIMPPR_HXX
22 #include <xmloff/dllapi.h>
23 #include <xmloff/xmlimppr.hxx>
24 #include <memory>
26 class XMLOFF_DLLPUBLIC XMLTextImportPropertyMapper final : public SvXMLImportPropertyMapper
28 sal_Int32 nSizeTypeIndex;
29 sal_Int32 nWidthTypeIndex;
31 static void FontFinished(
32 XMLPropertyState *pFontFamilyNameState,
33 XMLPropertyState *pFontStyleNameState,
34 XMLPropertyState *pFontFamilyState,
35 XMLPropertyState *pFontPitchState,
36 XMLPropertyState *pFontCharsetState );
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::unique_ptr<XMLPropertyState>* ppNewFontStyleName,
45 std::unique_ptr<XMLPropertyState>* ppNewFontFamily,
46 std::unique_ptr<XMLPropertyState>* ppNewFontPitch,
47 std::unique_ptr<XMLPropertyState>* ppNewFontCharSet ) const;
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;
55 public:
56 XMLTextImportPropertyMapper(
57 const rtl::Reference< XMLPropertySetMapper >& rMapper,
58 SvXMLImport& rImport );
59 virtual ~XMLTextImportPropertyMapper() override;
61 /** This method is called when all attributes have benn processed. It may be used to remove items that are incomplete */
62 virtual void finished(
63 ::std::vector< XMLPropertyState >& rProperties,
64 sal_Int32 nStartIndex, sal_Int32 nEndIndex ) const override;
67 #endif // INCLUDED_XMLOFF_TXTIMPPR_HXX
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */