Line data Source code
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 : #include "oox/drawingml/textparagraph.hxx"
21 : #include "oox/drawingml/drawingmltypes.hxx"
22 : #include "oox/drawingml/textcharacterproperties.hxx"
23 :
24 : #include <rtl/ustring.hxx>
25 : #include "oox/helper/propertyset.hxx"
26 : #include <com/sun/star/text/XText.hpp>
27 : #include <com/sun/star/text/XTextCursor.hpp>
28 : #include <com/sun/star/text/ControlCharacter.hpp>
29 :
30 : using namespace ::com::sun::star::text;
31 : using namespace ::com::sun::star::uno;
32 : using namespace ::com::sun::star::beans;
33 : using namespace ::com::sun::star::frame;
34 :
35 : namespace oox { namespace drawingml {
36 :
37 0 : TextParagraph::TextParagraph()
38 : {
39 0 : }
40 :
41 0 : TextParagraph::~TextParagraph()
42 : {
43 0 : }
44 :
45 0 : void TextParagraph::insertAt(
46 : const ::oox::core::XmlFilterBase& rFilterBase,
47 : const Reference < XText > &xText,
48 : const Reference < XTextCursor > &xAt,
49 : const TextCharacterProperties& rTextStyleProperties,
50 : const TextListStyle& rTextListStyle, bool bFirst, float nDefaultCharHeight) const
51 : {
52 : try {
53 0 : sal_Int32 nParagraphSize = 0;
54 :
55 0 : sal_Int16 nLevel = maProperties.getLevel();
56 :
57 : SAL_INFO("oox", "TextParagraph::insertAt() - level " << nLevel);
58 :
59 0 : const TextParagraphPropertiesVector& rListStyle = rTextListStyle.getListStyle();
60 0 : if ( nLevel >= static_cast< sal_Int16 >( rListStyle.size() ) )
61 0 : nLevel = 0;
62 0 : TextParagraphPropertiesPtr pTextParagraphStyle;
63 0 : if ( rListStyle.size() )
64 0 : pTextParagraphStyle = rListStyle[ nLevel ];
65 :
66 0 : TextCharacterProperties aTextCharacterStyle;
67 0 : if ( pTextParagraphStyle.get() )
68 0 : aTextCharacterStyle.assignUsed( pTextParagraphStyle->getTextCharacterProperties() );
69 0 : aTextCharacterStyle.assignUsed( rTextStyleProperties );
70 0 : aTextCharacterStyle.assignUsed( maProperties.getTextCharacterProperties() );
71 :
72 0 : if( !bFirst )
73 : {
74 0 : xText->insertControlCharacter( xAt, ControlCharacter::APPEND_PARAGRAPH, sal_False );
75 0 : xAt->gotoEnd( sal_True );
76 : }
77 :
78 0 : sal_Int32 nCharHeight = 0;
79 0 : if ( maRuns.begin() == maRuns.end() )
80 : {
81 0 : PropertySet aPropSet( xAt );
82 :
83 0 : TextCharacterProperties aTextCharacterProps( aTextCharacterStyle );
84 0 : aTextCharacterProps.assignUsed( maEndProperties );
85 0 : if ( aTextCharacterProps.moHeight.has() )
86 0 : nCharHeight = aTextCharacterProps.moHeight.get();
87 0 : aTextCharacterProps.pushToPropSet( aPropSet, rFilterBase );
88 : }
89 : else
90 : {
91 0 : for( TextRunVector::const_iterator aIt = maRuns.begin(), aEnd = maRuns.end(); aIt != aEnd; ++aIt )
92 : {
93 0 : sal_Int32 nLen = (*aIt)->getText().getLength();
94 : // n#759180: Force use, maEndProperties for the last segment
95 : // This is currently applied to only empty runs
96 0 : if( !nLen && ( ( aIt + 1 ) == aEnd ) )
97 0 : (*aIt)->getTextCharacterProperties().assignUsed( maEndProperties );
98 0 : nCharHeight = std::max< sal_Int32 >( nCharHeight, (*aIt)->insertAt( rFilterBase, xText, xAt, aTextCharacterStyle, nDefaultCharHeight ) );
99 0 : nParagraphSize += nLen;
100 : }
101 : }
102 0 : xAt->gotoEnd( sal_True );
103 :
104 0 : PropertyMap aioBulletList;
105 0 : Reference< XPropertySet > xProps( xAt, UNO_QUERY);
106 0 : if ( pTextParagraphStyle.get() )
107 : {
108 0 : TextParagraphProperties aParaProp;
109 0 : aParaProp.apply( *pTextParagraphStyle );
110 0 : aParaProp.apply( maProperties );
111 :
112 : // bullets have same color as following texts by default
113 0 : if( !aioBulletList.hasProperty( PROP_BulletColor ) && maRuns.size() > 0
114 0 : && (*maRuns.begin())->getTextCharacterProperties().maCharColor.isUsed() )
115 0 : aioBulletList.setProperty( PROP_BulletColor, (*maRuns.begin())->getTextCharacterProperties().maCharColor.getColor( rFilterBase.getGraphicHelper() ));
116 :
117 0 : float fCharacterSize = nCharHeight > 0 ? GetFontHeight ( nCharHeight ) : pTextParagraphStyle->getCharHeightPoints( 12 );
118 0 : aParaProp.pushToPropSet( &rFilterBase, xProps, aioBulletList, &pTextParagraphStyle->getBulletList(), true, fCharacterSize, true );
119 : }
120 :
121 : // empty paragraphs do not have bullets in ppt
122 0 : if ( !nParagraphSize )
123 : {
124 0 : const OUString sNumberingLevel( "NumberingLevel" );
125 0 : xProps->setPropertyValue( sNumberingLevel, Any( static_cast< sal_Int16 >( -1 ) ) );
126 0 : }
127 :
128 : // FIXME this is causing a lot of dispruption (ie does not work). I wonder what to do -- Hub
129 : // Reference< XTextRange > xEnd( xAt, UNO_QUERY );
130 : // Reference< XPropertySet > xProps2( xEnd, UNO_QUERY );
131 : // mpEndProperties->pushToPropSet( xProps2 );
132 : }
133 0 : catch( Exception & )
134 : {
135 : SAL_INFO("oox", "exception in TextParagraph::insertAt");
136 : }
137 0 : }
138 :
139 :
140 0 : } }
141 :
142 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|