Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / oox / source / drawingml / textrun.cxx
blob3f66c7a852e40193584325e4940927c3216fa05d
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 .
20 #include <drawingml/textrun.hxx>
22 #include <com/sun/star/text/ControlCharacter.hpp>
23 #include <com/sun/star/beans/XMultiPropertySet.hpp>
24 #include <com/sun/star/beans/XPropertySet.hpp>
25 #include <com/sun/star/beans/XPropertyState.hpp>
26 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
27 #include <com/sun/star/text/XTextField.hpp>
29 #include <sal/log.hxx>
31 #include <oox/helper/helper.hxx>
32 #include <oox/helper/propertyset.hxx>
33 #include <oox/core/xmlfilterbase.hxx>
34 #include <oox/token/properties.hxx>
35 #include <oox/token/tokens.hxx>
36 #include <tools/diagnose_ex.h>
38 using namespace ::com::sun::star::uno;
39 using namespace ::com::sun::star::text;
40 using namespace ::com::sun::star::beans;
41 using namespace ::com::sun::star::lang;
43 namespace oox { namespace drawingml {
45 TextRun::TextRun() :
46 mbIsLineBreak( false )
50 TextRun::~TextRun()
54 sal_Int32 TextRun::insertAt(
55 const ::oox::core::XmlFilterBase& rFilterBase,
56 const Reference < XText > & xText,
57 const Reference < XTextCursor > &xAt,
58 const TextCharacterProperties& rTextCharacterStyle,
59 float nDefaultCharHeight) const
61 sal_Int32 nCharHeight = 0;
62 try {
63 Reference< XTextRange > xStart = xAt;
64 PropertySet aPropSet( xStart );
66 Reference<XPropertyState> xState(xStart, UNO_QUERY);
67 Any aOldFontName = xState->getPropertyDefault("CharFontName");
68 Any aOldFontPitch = xState->getPropertyDefault("CharFontPitch");
69 Any aOldFontFamily = xState->getPropertyDefault("CharFontFamily");
71 TextCharacterProperties aTextCharacterProps( rTextCharacterStyle );
72 aTextCharacterProps.assignUsed( maTextCharacterProperties );
73 if ( aTextCharacterProps.moHeight.has() )
74 nCharHeight = aTextCharacterProps.moHeight.get();
75 else
76 // UNO API has the character height as float, DML has it as int, but in hundreds.
77 aTextCharacterProps.moHeight = static_cast<sal_Int32>(nDefaultCharHeight * 100);
78 aTextCharacterProps.pushToPropSet( aPropSet, rFilterBase );
80 if( maTextCharacterProperties.maHyperlinkPropertyMap.empty() )
82 if( mbIsLineBreak )
84 SAL_WARN("oox", "OOX: TextRun::insertAt() insert line break" );
85 xText->insertControlCharacter( xStart, ControlCharacter::LINE_BREAK, false );
87 else if (!getText().isEmpty())
89 sal_Int32 nIndex = 0;
90 sal_Int32 nMax = getText().getLength();
91 while(true)
93 bool bSymbol = (getText()[nIndex] & 0xff00) == 0xf000;
94 sal_Int32 nCount = 1;
95 while(nIndex + nCount < nMax
96 && ((getText()[nIndex + nCount] & 0xff00) == 0xf000) == bSymbol)
97 ++nCount;
99 OUString aFontName;
100 sal_Int16 nFontFamily = 0, nFontPitch = 0;
101 bool bReset = false;
103 // Direct formatting for symbols.
104 if (bSymbol && aTextCharacterProps.maSymbolFont.getFontData(aFontName, nFontPitch, nFontFamily, rFilterBase))
107 aPropSet.setAnyProperty(PROP_CharFontName, Any(aFontName));
108 aPropSet.setAnyProperty(PROP_CharFontPitch, Any(nFontPitch));
109 aPropSet.setAnyProperty(PROP_CharFontFamily, Any(nFontFamily));
110 bReset = true;
113 OUString aSubString(getText().copy(nIndex, nCount));
114 xText->insertString(xStart, aSubString, false);
116 aPropSet = PropertySet(xStart);
117 // Reset to whatever it was.
118 if (bReset)
120 aPropSet.setAnyProperty(PROP_CharFontName, aOldFontName);
121 aPropSet.setAnyProperty(PROP_CharFontPitch, aOldFontPitch);
122 aPropSet.setAnyProperty(PROP_CharFontFamily, aOldFontFamily);
125 nIndex += nCount;
127 if (nIndex >= nMax)
128 break;
130 aTextCharacterProps.pushToPropSet(aPropSet, rFilterBase);
134 else
136 SAL_WARN("oox", "OOX: URL field" );
137 Reference< XMultiServiceFactory > xFactory( rFilterBase.getModel(), UNO_QUERY );
138 Reference< XTextField > xField( xFactory->createInstance( "com.sun.star.text.TextField.URL" ), UNO_QUERY );
139 if( xField.is() )
141 Reference< XTextCursor > xTextFieldCursor = xText->createTextCursor();
142 xTextFieldCursor->gotoEnd( false );
144 PropertySet aFieldProps( xField );
145 aFieldProps.setProperties( maTextCharacterProperties.maHyperlinkPropertyMap );
146 aFieldProps.setProperty( PROP_Representation, getText() );
147 xText->insertTextContent( xStart, xField, false );
149 xTextFieldCursor->gotoEnd( true );
151 aTextCharacterProps.maFillProperties.maFillColor.setSchemeClr( XML_hlink );
152 aTextCharacterProps.maFillProperties.moFillType.set(XML_solidFill);
153 if ( !maTextCharacterProperties.moUnderline.has() )
154 aTextCharacterProps.moUnderline.set( XML_sng );
156 PropertySet aFieldTextPropSet( xTextFieldCursor );
157 aTextCharacterProps.pushToPropSet( aFieldTextPropSet, rFilterBase );
159 oox::core::TextField aTextField;
160 aTextField.xText = xText;
161 aTextField.xTextCursor = xTextFieldCursor;
162 aTextField.xTextField = xField;
163 rFilterBase.getTextFieldStack().push_back( aTextField );
165 else
167 SAL_WARN("oox", "OOX: URL field couldn't be created" );
168 xText->insertString( xStart, getText(), false );
172 catch( const Exception& )
174 TOOLS_WARN_EXCEPTION("oox", "OOX: TextRun::insertAt()");
177 return nCharHeight;
182 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */