142 lines
3.7 KiB
PHP
Raw Normal View History

2014-04-26 11:14:27 +07:00
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
2014-04-26 11:14:27 +07:00
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2010-2014 PHPWord contributors
2014-05-04 21:03:28 +04:00
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
2014-04-26 11:14:27 +07:00
*/
namespace PhpOffice\PhpWord\Writer\Word2007\Style;
/**
* Paragraph style writer
*
* @since 0.10.0
*/
class Paragraph extends AbstractStyle
{
/**
* Without w:pPr
*
* @var bool
*/
private $withoutPPR = false;
/**
* Is inline in element
*
* @var bool
*/
private $isInline = false;
/**
* Write style
*/
public function write()
{
2014-05-07 09:47:02 +07:00
$xmlWriter = $this->getXmlWriter();
2014-04-26 11:14:27 +07:00
$isStyleName = $this->isInline && !is_null($this->style) && is_string($this->style);
if ($isStyleName) {
if (!$this->withoutPPR) {
2014-05-07 09:47:02 +07:00
$xmlWriter->startElement('w:pPr');
2014-04-26 11:14:27 +07:00
}
2014-05-07 09:47:02 +07:00
$xmlWriter->startElement('w:pStyle');
$xmlWriter->writeAttribute('w:val', $this->style);
$xmlWriter->endElement();
2014-04-26 11:14:27 +07:00
if (!$this->withoutPPR) {
2014-05-07 09:47:02 +07:00
$xmlWriter->endElement();
2014-04-26 11:14:27 +07:00
}
} else {
$this->writeStyle();
}
}
/**
* Write full style
*/
private function writeStyle()
{
2014-05-07 09:47:02 +07:00
if (is_null($style = $this->getStyle())) {
2014-04-26 11:14:27 +07:00
return;
}
2014-05-07 09:47:02 +07:00
$xmlWriter = $this->getXmlWriter();
if (!$this->withoutPPR) {
2014-05-07 09:47:02 +07:00
$xmlWriter->startElement('w:pPr');
}
2014-04-26 11:14:27 +07:00
2014-05-08 19:25:29 +07:00
// Style name
$styleName = $style->getStyleName();
$xmlWriter->writeElementIf(!is_null($styleName), 'w:pStyle', 'w:val', $styleName);
// Alignment
2014-05-08 19:25:29 +07:00
$align = $style->getAlign();
2014-05-07 09:47:02 +07:00
$xmlWriter->writeElementIf(!is_null($align), 'w:jc', 'w:val', $align);
// Pagination
2014-05-07 09:47:02 +07:00
$xmlWriter->writeElementIf(!$style->hasWidowControl(), 'w:widowControl', 'w:val', '0');
$xmlWriter->writeElementIf($style->isKeepNext(), 'w:keepNext', 'w:val', '1');
$xmlWriter->writeElementIf($style->isKeepLines(), 'w:keepLines', 'w:val', '1');
$xmlWriter->writeElementIf($style->hasPageBreakBefore(), 'w:pageBreakBefore', 'w:val', '1');
2014-04-26 11:14:27 +07:00
// Indentation
2014-05-08 19:25:29 +07:00
$indentation = $style->getIndentation();
if (!is_null($indentation)) {
2014-05-07 09:47:02 +07:00
$styleWriter = new Indentation($xmlWriter, $indentation);
$styleWriter->write();
}
2014-04-26 11:14:27 +07:00
// Spacing
2014-05-08 19:25:29 +07:00
$spacing = $style->getSpace();
if (!is_null($spacing)) {
2014-05-07 09:47:02 +07:00
$styleWriter = new Spacing($xmlWriter, $spacing);
$styleWriter->write();
}
2014-04-26 11:14:27 +07:00
// Tabs
2014-05-08 19:25:29 +07:00
$tabs = $style->getTabs();
if (!empty($tabs)) {
2014-05-07 09:47:02 +07:00
$xmlWriter->startElement("w:tabs");
foreach ($tabs as $tab) {
2014-05-07 09:47:02 +07:00
$styleWriter = new Tab($xmlWriter, $tab);
$styleWriter->write();
2014-04-26 11:14:27 +07:00
}
2014-05-07 09:47:02 +07:00
$xmlWriter->endElement();
}
2014-04-26 11:14:27 +07:00
if (!$this->withoutPPR) {
2014-05-07 09:47:02 +07:00
$xmlWriter->endElement(); // w:pPr
2014-04-26 11:14:27 +07:00
}
}
/**
* Set without w:pPr
*
* @param bool $value
*/
public function setWithoutPPR($value)
{
$this->withoutPPR = $value;
}
/**
* Set is inline
*
* @param bool $value
*/
public function setIsInline($value)
{
$this->isInline = $value;
}
}