mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-27 19:58:39 +00:00
262 lines
5.6 KiB
PHP
262 lines
5.6 KiB
PHP
<?php
|
|
/**
|
|
* This file is part of PHPPresentation - A pure PHP library for reading and writing
|
|
* presentations documents.
|
|
*
|
|
* PHPPresentation 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/PHPPresentation/contributors.
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPPresentation
|
|
* @copyright 2009-2015 PHPPresentation contributors
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
|
*/
|
|
|
|
namespace PhpOffice\PhpPresentation\Slide;
|
|
|
|
use PhpOffice\PhpPresentation\AbstractShape;
|
|
use PhpOffice\PhpPresentation\ComparableInterface;
|
|
use PhpOffice\PhpPresentation\GeometryCalculator;
|
|
use PhpOffice\PhpPresentation\ShapeContainerInterface;
|
|
use PhpOffice\PhpPresentation\Slide;
|
|
use PhpOffice\PhpPresentation\Shape\RichText;
|
|
|
|
/**
|
|
* Note class
|
|
*/
|
|
class Note implements ComparableInterface, ShapeContainerInterface
|
|
{
|
|
/**
|
|
* Parent slide
|
|
*
|
|
* @var Slide
|
|
*/
|
|
private $parent;
|
|
|
|
/**
|
|
* Collection of shapes
|
|
*
|
|
* @var \ArrayObject|\PhpOffice\PhpPresentation\AbstractShape[]
|
|
*/
|
|
private $shapeCollection = null;
|
|
|
|
/**
|
|
* Note identifier
|
|
*
|
|
* @var string
|
|
*/
|
|
private $identifier;
|
|
|
|
/**
|
|
* Hash index
|
|
*
|
|
* @var string
|
|
*/
|
|
private $hashIndex;
|
|
|
|
/**
|
|
* Offset X
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $offsetX;
|
|
|
|
/**
|
|
* Offset Y
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $offsetY;
|
|
|
|
/**
|
|
* Extent X
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $extentX;
|
|
|
|
/**
|
|
* Extent Y
|
|
*
|
|
* @var int
|
|
*/
|
|
protected $extentY;
|
|
|
|
/**
|
|
* Create a new note
|
|
*
|
|
* @param Slide $pParent
|
|
*/
|
|
public function __construct(Slide $pParent = null)
|
|
{
|
|
// Set parent
|
|
$this->parent = $pParent;
|
|
|
|
// Shape collection
|
|
$this->shapeCollection = new \ArrayObject();
|
|
|
|
// Set identifier
|
|
$this->identifier = md5(rand(0, 9999) . time());
|
|
}
|
|
|
|
/**
|
|
* Get collection of shapes
|
|
*
|
|
* @return \ArrayObject|\PhpOffice\PhpPresentation\AbstractShape[]
|
|
*/
|
|
public function getShapeCollection()
|
|
{
|
|
return $this->shapeCollection;
|
|
}
|
|
|
|
/**
|
|
* Add shape to slide
|
|
*
|
|
* @param \PhpOffice\PhpPresentation\AbstractShape $shape
|
|
* @return \PhpOffice\PhpPresentation\AbstractShape
|
|
* @throws \Exception
|
|
*/
|
|
public function addShape(AbstractShape $shape)
|
|
{
|
|
$shape->setContainer($this);
|
|
|
|
return $shape;
|
|
}
|
|
|
|
/**
|
|
* Create rich text shape
|
|
*
|
|
* @return \PhpOffice\PhpPresentation\Shape\RichText
|
|
* @throws \Exception
|
|
*/
|
|
public function createRichTextShape()
|
|
{
|
|
$shape = new RichText();
|
|
$this->addShape($shape);
|
|
|
|
return $shape;
|
|
}
|
|
|
|
/**
|
|
* Get parent
|
|
*
|
|
* @return Slide
|
|
*/
|
|
public function getParent()
|
|
{
|
|
return $this->parent;
|
|
}
|
|
|
|
/**
|
|
* Set parent
|
|
*
|
|
* @param Slide $parent
|
|
* @return Note
|
|
*/
|
|
public function setParent(Slide $parent)
|
|
{
|
|
$this->parent = $parent;
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* Get X Offset
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getOffsetX()
|
|
{
|
|
if ($this->offsetX === null) {
|
|
$offsets = GeometryCalculator::calculateOffsets($this);
|
|
$this->offsetX = $offsets[GeometryCalculator::X];
|
|
$this->offsetY = $offsets[GeometryCalculator::Y];
|
|
}
|
|
return $this->offsetX;
|
|
}
|
|
|
|
/**
|
|
* Get Y Offset
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getOffsetY()
|
|
{
|
|
if ($this->offsetY === null) {
|
|
$offsets = GeometryCalculator::calculateOffsets($this);
|
|
$this->offsetX = $offsets[GeometryCalculator::X];
|
|
$this->offsetY = $offsets[GeometryCalculator::Y];
|
|
}
|
|
return $this->offsetY;
|
|
}
|
|
|
|
/**
|
|
* Get X Extent
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getExtentX()
|
|
{
|
|
if ($this->extentX === null) {
|
|
$extents = GeometryCalculator::calculateExtents($this);
|
|
$this->extentX = $extents[GeometryCalculator::X];
|
|
$this->extentY = $extents[GeometryCalculator::Y];
|
|
}
|
|
return $this->extentX;
|
|
}
|
|
|
|
/**
|
|
* Get Y Extent
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getExtentY()
|
|
{
|
|
if ($this->extentY === null) {
|
|
$extents = GeometryCalculator::calculateExtents($this);
|
|
$this->extentX = $extents[GeometryCalculator::X];
|
|
$this->extentY = $extents[GeometryCalculator::Y];
|
|
}
|
|
return $this->extentY;
|
|
}
|
|
|
|
/**
|
|
* Get hash code
|
|
*
|
|
* @return string Hash code
|
|
*/
|
|
public function getHashCode()
|
|
{
|
|
return md5($this->identifier . __CLASS__);
|
|
}
|
|
|
|
/**
|
|
* Get hash index
|
|
*
|
|
* Note that this index may vary during script execution! Only reliable moment is
|
|
* while doing a write of a workbook and when changes are not allowed.
|
|
*
|
|
* @return string Hash index
|
|
*/
|
|
public function getHashIndex()
|
|
{
|
|
return $this->hashIndex;
|
|
}
|
|
|
|
/**
|
|
* Set hash index
|
|
*
|
|
* Note that this index may vary during script execution! Only reliable moment is
|
|
* while doing a write of a workbook and when changes are not allowed.
|
|
*
|
|
* @param string $value Hash index
|
|
*/
|
|
public function setHashIndex($value)
|
|
{
|
|
$this->hashIndex = $value;
|
|
}
|
|
}
|