/src/libreoffice/oox/inc/drawingml/textparagraph.hxx
Line | Count | Source (jump to first uncovered line) |
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_TEXTPARAGRAPH_HXX |
21 | | #define INCLUDED_OOX_DRAWINGML_TEXTPARAGRAPH_HXX |
22 | | |
23 | | #include <memory> |
24 | | #include <com/sun/star/text/XTextCursor.hpp> |
25 | | #include <com/sun/star/text/XText.hpp> |
26 | | |
27 | | #include <oox/core/xmlfilterbase.hxx> |
28 | | #include <oox/helper/refvector.hxx> |
29 | | #include <drawingml/textrun.hxx> |
30 | | #include <drawingml/textliststyle.hxx> |
31 | | #include <drawingml/textparagraphproperties.hxx> |
32 | | |
33 | | // The height the bullet is relative to is different in OOXML |
34 | 0 | #define OOX_BULLET_LIST_SCALE_FACTOR 0.7f |
35 | | |
36 | | namespace oox::formulaimport { |
37 | | class XmlStreamBuilder; |
38 | | } |
39 | | |
40 | | namespace oox::drawingml { |
41 | | |
42 | | typedef RefVector< TextRun > TextRunVector; |
43 | | |
44 | | class TextParagraph |
45 | | { |
46 | | public: |
47 | | TextParagraph(); |
48 | | ~TextParagraph(); |
49 | | |
50 | 102k | TextRunVector& getRuns() { return maRuns; } |
51 | 151k | const TextRunVector& getRuns() const { return maRuns; } |
52 | 179k | void addRun( const TextRunPtr & pRun ) { maRuns.push_back( pRun ); } |
53 | | |
54 | 229k | TextParagraphProperties& getProperties() { return maProperties; } |
55 | 75.5k | const TextParagraphProperties& getProperties() const { return maProperties; } |
56 | | /// Flags the textparagraph as having a pPr tag in it |
57 | 122k | void setHasProperties() { mbHasProperties = true; } |
58 | | /// Returns whether the textparagraph had an pPr tag in it during import |
59 | 0 | bool hasProperties() const { return mbHasProperties; } |
60 | | |
61 | 163k | TextCharacterProperties& getEndProperties() { return maEndProperties; } |
62 | 0 | const TextCharacterProperties& getEndProperties() const { return maEndProperties; } |
63 | | |
64 | | TextCharacterProperties getCharacterStyle( |
65 | | const TextCharacterProperties& rTextStyleProperties, |
66 | | const TextListStyle& rMasterTextListStyle, |
67 | | const TextListStyle& rTextListStyle) const; |
68 | | |
69 | | TextParagraphProperties* getParagraphStyle( |
70 | | const TextListStyle& rTextListStyle) const; |
71 | | |
72 | | void insertAt( |
73 | | const ::oox::core::XmlFilterBase& rFilterBase, |
74 | | const css::uno::Reference < css::text::XText > & xText, |
75 | | const css::uno::Reference < css::text::XTextCursor > &xAt, |
76 | | const TextCharacterProperties& rTextStyleProperties, |
77 | | const TextListStyle& rMasterTextListStyle, |
78 | | const TextListStyle& rTextListStyle, |
79 | | bool bFirst, |
80 | | float nDefaultCharHeight) const; |
81 | | |
82 | | bool HasMathXml() const |
83 | 88.0k | { |
84 | 88.0k | return m_pMathXml != nullptr; |
85 | 88.0k | } |
86 | | formulaimport::XmlStreamBuilder & GetMathXml(); |
87 | | |
88 | | /** Returns whether textparagraph had a rPr tag in it that alters it visually |
89 | | * |
90 | | * For instance _lang_ doesn't have a visual effect. |
91 | | */ |
92 | | bool hasVisualRunProperties() const; |
93 | | |
94 | | private: |
95 | | TextParagraphProperties maProperties; |
96 | | bool mbHasProperties; |
97 | | TextCharacterProperties maEndProperties; |
98 | | TextRunVector maRuns; |
99 | | // temporarily store this here |
100 | | std::unique_ptr<formulaimport::XmlStreamBuilder> m_pMathXml; |
101 | | }; |
102 | | |
103 | | } |
104 | | |
105 | | #endif // INCLUDED_OOX_DRAWINGML_TEXTPARAGRAPH_HXX |
106 | | |
107 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |