LibreOffice Module oox (master) 1
textrun.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
20#ifndef INCLUDED_OOX_DRAWINGML_TEXTRUN_HXX
21#define INCLUDED_OOX_DRAWINGML_TEXTRUN_HXX
22
23#include <memory>
24
25#include <com/sun/star/text/XTextCursor.hpp>
26#include <com/sun/star/text/XText.hpp>
28
29namespace oox::drawingml {
30
32{
33public:
34 TextRun();
35 virtual ~TextRun();
36
37 OUString& getText() { return msText; }
38 const OUString& getText() const { return msText; }
39
42
43 void setLineBreak() { mbIsLineBreak = true; }
44 bool isLineBreak() const { return mbIsLineBreak; }
45
51
52 virtual sal_Int32 insertAt(
53 const ::oox::core::XmlFilterBase& rFilterBase,
54 const css::uno::Reference < css::text::XText >& xText,
55 const css::uno::Reference < css::text::XTextCursor >& xAt,
56 const TextCharacterProperties& rTextCharacterStyle,
57 float nDefaultCharHeight) const;
58
59private:
60 OUString msText;
63};
64
65typedef std::shared_ptr< TextRun > TextRunPtr;
66
67}
68
69#endif // INCLUDED_OOX_DRAWINGML_TEXTRUN_HXX
70
71/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const OUString & getText() const
Definition: textrun.hxx:38
TextCharacterProperties & getTextCharacterProperties()
Definition: textrun.hxx:40
virtual sal_Int32 insertAt(const ::oox::core::XmlFilterBase &rFilterBase, const css::uno::Reference< css::text::XText > &xText, const css::uno::Reference< css::text::XTextCursor > &xAt, const TextCharacterProperties &rTextCharacterStyle, float nDefaultCharHeight) const
Definition: textrun.cxx:54
TextCharacterProperties maTextCharacterProperties
Definition: textrun.hxx:61
OUString & getText()
Definition: textrun.hxx:37
const TextCharacterProperties & getTextCharacterProperties() const
Definition: textrun.hxx:41
bool hasVisualRunProperties() const
Returns whether the textrun had properties that alter it visually in its rPr tag.
Definition: textrun.hxx:50
bool isLineBreak() const
Definition: textrun.hxx:44
std::shared_ptr< TextRun > TextRunPtr
Definition: textrun.hxx:65
bool mbHasVisualRunProperties
Set if there was a property set that alters run visually during import.