144 lines
3.7 KiB
PHP
Raw Normal View History

2014-04-26 11:14:27 +07:00
<?php
/**
* PHPWord
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2014 PHPWord
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()
{
$isStyleName = $this->isInline && !is_null($this->style) && is_string($this->style);
if ($isStyleName) {
if (!$this->withoutPPR) {
$this->xmlWriter->startElement('w:pPr');
}
$this->xmlWriter->startElement('w:pStyle');
$this->xmlWriter->writeAttribute('w:val', $this->style);
$this->xmlWriter->endElement();
if (!$this->withoutPPR) {
$this->xmlWriter->endElement();
}
} else {
$this->writeStyle();
}
}
/**
* Write full style
*/
private function writeStyle()
{
if (!($this->style instanceof \PhpOffice\PhpWord\Style\Paragraph)) {
return;
}
if (!$this->withoutPPR) {
$this->xmlWriter->startElement('w:pPr');
}
2014-04-26 11:14:27 +07:00
// Alignment
if (!is_null($this->style->getAlign())) {
$this->xmlWriter->startElement('w:jc');
$this->xmlWriter->writeAttribute('w:val', $this->style->getAlign());
$this->xmlWriter->endElement();
}
2014-04-26 11:14:27 +07:00
// Indentation
if (!is_null($this->style->getIndentation())) {
$styleWriter = new Indentation($this->xmlWriter, $this->style->getIndentation());
$styleWriter->write();
}
2014-04-26 11:14:27 +07:00
// Spacing
if (!is_null($this->style->getSpace())) {
$styleWriter = new Spacing($this->xmlWriter, $this->style->getSpace());
$styleWriter->write();
}
2014-04-26 11:14:27 +07:00
// Pagination
2014-05-04 15:13:31 +07:00
if (!$this->style->hasWidowControl()) {
$this->xmlWriter->startElement('w:widowControl');
$this->xmlWriter->writeAttribute('w:val', '0');
$this->xmlWriter->endElement();
}
2014-05-04 15:13:31 +07:00
if ($this->style->isKeepNext()) {
$this->xmlWriter->startElement('w:keepNext');
$this->xmlWriter->writeAttribute('w:val', '1');
$this->xmlWriter->endElement();
}
2014-05-04 15:13:31 +07:00
if ($this->style->isKeepLines()) {
$this->xmlWriter->startElement('w:keepLines');
$this->xmlWriter->writeAttribute('w:val', '1');
$this->xmlWriter->endElement();
}
2014-05-04 15:13:31 +07:00
if ($this->style->hasPageBreakBefore()) {
$this->xmlWriter->startElement('w:pageBreakBefore');
$this->xmlWriter->writeAttribute('w:val', '1');
$this->xmlWriter->endElement();
}
// Tabs
$tabs = $this->style->getTabs();
if (!empty($tabs)) {
$this->xmlWriter->startElement("w:tabs");
foreach ($tabs as $tab) {
$styleWriter = new Tab($this->xmlWriter, $tab);
$styleWriter->write();
2014-04-26 11:14:27 +07:00
}
$this->xmlWriter->endElement();
}
2014-04-26 11:14:27 +07:00
if (!$this->withoutPPR) {
$this->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;
}
}