blob: 39ce2893e2454202fcb89fcb8a0fc938d4addcc5 [file] [log] [blame]
<?php
/**
* File containing the ezcDocumentOdtTextStyleGenerator class.
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @package Document
* @version //autogen//
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @access private
*/
/**
* Class to generate styles for text elements (<text:span/>).
*
* @package Document
* @access private
* @version //autogen//
*/
class ezcDocumentOdtTextStyleGenerator extends ezcDocumentOdtStyleGenerator
{
/**
* Text property generator.
*
* @var ezcDocumentOdtStyleTextPropertyGenerator
*/
protected $textPropertyGenerator;
/**
* Creates a new style genertaor.
*
* @param ezcDocumentOdtPcssConverterManager $styleConverters
*/
public function __construct( ezcDocumentOdtPcssConverterManager $styleConverters )
{
$this->textPropertyGenerator = new ezcDocumentOdtStyleTextPropertyGenerator(
$styleConverters
);
}
/**
* Returns if the given $odtElement is handled by this generator.
*
* @param DOMElement $odtElement
* @return bool
*/
public function handles( DOMElement $odtElement )
{
return (
$odtElement->localName === 'span'
);
}
/**
* Creates the styles with $styleAttributes for the given $odtElement.
*
* @param ezcDocumentOdtStyleInformation $styleInfo
* @param DOMElement $odtElement
* @param array $styleAttributes
* @return void
*/
public function createStyle( ezcDocumentOdtStyleInformation $styleInfo, DOMElement $odtElement, array $styleAttributes )
{
$styleName = $this->getUniqueStyleName( $odtElement->localName );
$style = $styleInfo->automaticStyleSection->appendChild(
$styleInfo->automaticStyleSection->ownerDocument->createElementNS(
ezcDocumentOdt::NS_ODT_STYLE,
'style:style'
)
);
$style->setAttributeNS(
ezcDocumentOdt::NS_ODT_STYLE,
'style:family',
'text'
);
$style->setAttributeNS(
ezcDocumentOdt::NS_ODT_STYLE,
'style:name',
$styleName
);
$odtElement->setAttributeNS(
ezcDocumentOdt::NS_ODT_TEXT,
'text:style-name',
$styleName
);
$this->textPropertyGenerator->createProperty(
$style,
$styleAttributes
);
}
}
?>