mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-29 04:28:40 +00:00
236 lines
5.3 KiB
PHP
Executable File
236 lines
5.3 KiB
PHP
Executable File
<?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\Style;
|
|
|
|
use PhpOffice\PhpPresentation\ComparableInterface;
|
|
|
|
/**
|
|
* \PhpOffice\PhpPresentation\Style\Border
|
|
*/
|
|
class Border implements ComparableInterface
|
|
{
|
|
/* Line style */
|
|
const LINE_NONE = 'none';
|
|
const LINE_SINGLE = 'sng';
|
|
const LINE_DOUBLE = 'dbl';
|
|
const LINE_THICKTHIN = 'thickThin';
|
|
const LINE_THINTHICK = 'thinThick';
|
|
const LINE_TRI = 'tri';
|
|
|
|
/* Dash style */
|
|
const DASH_DASH = 'dash';
|
|
const DASH_DASHDOT = 'dashDot';
|
|
const DASH_DOT = 'dot';
|
|
const DASH_LARGEDASH = 'lgDash';
|
|
const DASH_LARGEDASHDOT = 'lgDashDot';
|
|
const DASH_LARGEDASHDOTDOT = 'lgDashDotDot';
|
|
const DASH_SOLID = 'solid';
|
|
const DASH_SYSDASH = 'sysDash';
|
|
const DASH_SYSDASHDOT = 'sysDashDot';
|
|
const DASH_SYSDASHDOTDOT = 'sysDashDotDot';
|
|
const DASH_SYSDOT = 'sysDot';
|
|
|
|
/**
|
|
* Line width
|
|
*
|
|
* @var int
|
|
*/
|
|
private $lineWidth = 1;
|
|
|
|
/**
|
|
* Line style
|
|
*
|
|
* @var string
|
|
*/
|
|
private $lineStyle;
|
|
|
|
/**
|
|
* Dash style
|
|
*
|
|
* @var string
|
|
*/
|
|
private $dashStyle;
|
|
|
|
/**
|
|
* Border color
|
|
*
|
|
* @var \PhpOffice\PhpPresentation\Style\Color
|
|
*/
|
|
private $color;
|
|
|
|
/**
|
|
* Hash index
|
|
*
|
|
* @var string
|
|
*/
|
|
private $hashIndex;
|
|
|
|
/**
|
|
* Create a new \PhpOffice\PhpPresentation\Style\Border
|
|
*/
|
|
public function __construct()
|
|
{
|
|
// Initialise values
|
|
$this->lineWidth = 1;
|
|
$this->lineStyle = self::LINE_SINGLE;
|
|
$this->dashStyle = self::DASH_SOLID;
|
|
$this->color = new Color(Color::COLOR_BLACK);
|
|
}
|
|
|
|
/**
|
|
* Get line width (in points)
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getLineWidth()
|
|
{
|
|
return $this->lineWidth;
|
|
}
|
|
|
|
/**
|
|
* Set line width (in points)
|
|
*
|
|
* @param int $pValue
|
|
* @return \PhpOffice\PhpPresentation\Style\Border
|
|
*/
|
|
public function setLineWidth($pValue = 1)
|
|
{
|
|
$this->lineWidth = $pValue;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get line style
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getLineStyle()
|
|
{
|
|
return $this->lineStyle;
|
|
}
|
|
|
|
/**
|
|
* Set line style
|
|
*
|
|
* @param string $pValue
|
|
* @return \PhpOffice\PhpPresentation\Style\Border
|
|
*/
|
|
public function setLineStyle($pValue = self::LINE_SINGLE)
|
|
{
|
|
if ($pValue == '') {
|
|
$pValue = self::LINE_SINGLE;
|
|
}
|
|
$this->lineStyle = $pValue;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get dash style
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDashStyle()
|
|
{
|
|
return $this->dashStyle;
|
|
}
|
|
|
|
/**
|
|
* Set dash style
|
|
*
|
|
* @param string $pValue
|
|
* @return \PhpOffice\PhpPresentation\Style\Border
|
|
*/
|
|
public function setDashStyle($pValue = self::DASH_SOLID)
|
|
{
|
|
if ($pValue == '') {
|
|
$pValue = self::DASH_SOLID;
|
|
}
|
|
$this->dashStyle = $pValue;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get Border Color
|
|
*
|
|
* @return \PhpOffice\PhpPresentation\Style\Color
|
|
*/
|
|
public function getColor()
|
|
{
|
|
return $this->color;
|
|
}
|
|
|
|
/**
|
|
* Set Border Color
|
|
*
|
|
* @param \PhpOffice\PhpPresentation\Style\Color $color
|
|
* @throws \Exception
|
|
* @return \PhpOffice\PhpPresentation\Style\Border
|
|
*/
|
|
public function setColor(Color $color = null)
|
|
{
|
|
$this->color = $color;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get hash code
|
|
*
|
|
* @return string Hash code
|
|
*/
|
|
public function getHashCode()
|
|
{
|
|
return md5(
|
|
$this->lineStyle
|
|
. $this->lineWidth
|
|
. $this->dashStyle
|
|
. $this->color->getHashCode()
|
|
. __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;
|
|
}
|
|
}
|