forked from PHPOffice/PHPPresentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbstractSlide.php
328 lines (277 loc) · 7.04 KB
/
AbstractSlide.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
<?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.
*
* @see https://github.com/PHPOffice/PHPPresentation
*
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
declare(strict_types=1);
namespace PhpOffice\PhpPresentation\Slide;
use PhpOffice\PhpPresentation\ComparableInterface;
use PhpOffice\PhpPresentation\GeometryCalculator;
use PhpOffice\PhpPresentation\PhpPresentation;
use PhpOffice\PhpPresentation\Shape\Chart;
use PhpOffice\PhpPresentation\Shape\Drawing\File;
use PhpOffice\PhpPresentation\Shape\Group;
use PhpOffice\PhpPresentation\Shape\Line;
use PhpOffice\PhpPresentation\Shape\RichText;
use PhpOffice\PhpPresentation\Shape\Table;
use PhpOffice\PhpPresentation\ShapeContainerInterface;
use PhpOffice\PhpPresentation\Traits\ShapeCollection;
abstract class AbstractSlide implements ComparableInterface, ShapeContainerInterface
{
use ShapeCollection;
/**
* @var string
*/
protected $relsIndex;
/**
* @var null|Transition
*/
protected $slideTransition;
/**
* Extent Y.
*
* @var int
*/
protected $extentY;
/**
* Extent X.
*
* @var int
*/
protected $extentX;
/**
* Offset X.
*
* @var int
*/
protected $offsetX;
/**
* Offset Y.
*
* @var int
*/
protected $offsetY;
/**
* Slide identifier.
*
* @var string
*/
protected $identifier;
/**
* Hash index.
*
* @var int
*/
protected $hashIndex;
/**
* Parent presentation.
*
* @var null|PhpPresentation
*/
protected $parent;
/**
* Background of the slide.
*
* @var AbstractBackground
*/
protected $background;
/**
* Get X Offset.
*/
public function getOffsetX(): int
{
if (null === $this->offsetX) {
$offsets = GeometryCalculator::calculateOffsets($this);
$this->offsetX = $offsets[GeometryCalculator::X];
$this->offsetY = $offsets[GeometryCalculator::Y];
}
return $this->offsetX;
}
/**
* Get Y Offset.
*/
public function getOffsetY(): int
{
if (null === $this->offsetY) {
$offsets = GeometryCalculator::calculateOffsets($this);
$this->offsetX = $offsets[GeometryCalculator::X];
$this->offsetY = $offsets[GeometryCalculator::Y];
}
return $this->offsetY;
}
/**
* Get X Extent.
*/
public function getExtentX(): int
{
if (null === $this->extentX) {
$extents = GeometryCalculator::calculateExtents($this);
$this->extentX = $extents[GeometryCalculator::X];
$this->extentY = $extents[GeometryCalculator::Y];
}
return $this->extentX;
}
/**
* Get Y Extent.
*/
public function getExtentY(): int
{
if (null === $this->extentY) {
$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(): string
{
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 null|int Hash index
*/
public function getHashIndex(): ?int
{
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 int $value Hash index
*
* @return $this
*/
public function setHashIndex(int $value)
{
$this->hashIndex = $value;
return $this;
}
/**
* Create rich text shape.
*/
public function createRichTextShape(): RichText
{
$shape = new RichText();
$this->addShape($shape);
return $shape;
}
/**
* Create line shape.
*
* @param int $fromX Starting point x offset
* @param int $fromY Starting point y offset
* @param int $toX Ending point x offset
* @param int $toY Ending point y offset
*/
public function createLineShape(int $fromX, int $fromY, int $toX, int $toY): Line
{
$shape = new Line($fromX, $fromY, $toX, $toY);
$this->addShape($shape);
return $shape;
}
/**
* Create chart shape.
*/
public function createChartShape(): Chart
{
$shape = new Chart();
$this->addShape($shape);
return $shape;
}
/**
* Create drawing shape.
*/
public function createDrawingShape(): File
{
$shape = new File();
$shape->setContainer($this);
return $shape;
}
/**
* Create table shape.
*
* @param int $columns Number of columns
*/
public function createTableShape(int $columns = 1): Table
{
$shape = new Table($columns);
$this->addShape($shape);
return $shape;
}
/**
* Creates a group within this slide.
*/
public function createGroup(): Group
{
$shape = new Group();
$this->addShape($shape);
return $shape;
}
/**
* Get parent.
*/
public function getParent(): ?PhpPresentation
{
return $this->parent;
}
/**
* Re-bind parent.
*/
public function rebindParent(PhpPresentation $parent): self
{
$this->parent->removeSlideByIndex($this->parent->getIndex($this));
$this->parent = $parent;
return $this;
}
public function getBackground(): ?AbstractBackground
{
return $this->background;
}
public function setBackground(?AbstractBackground $background = null): self
{
$this->background = $background;
return $this;
}
public function getTransition(): ?Transition
{
return $this->slideTransition;
}
public function setTransition(?Transition $transition = null): self
{
$this->slideTransition = $transition;
return $this;
}
public function getRelsIndex(): string
{
return $this->relsIndex;
}
public function setRelsIndex(string $indexName): self
{
$this->relsIndex = $indexName;
return $this;
}
}