/var/www/hkosl.com/imusiccircle/webadmin/libraies/phpoffice/phpexcel/Classes/PHPExcel/Chart/GridLines.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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<?php
require_once 'Properties.php';
/**
 * Created by PhpStorm.
 * User: Wiktor Trzonkowski
 * Date: 7/2/14
 * Time: 2:36 PM
 */

class PHPExcel_Chart_GridLines extends
  
PHPExcel_Properties {

  
/**
   * Properties of Class:
   * Object State (State for Minor Tick Mark) @var bool
   * Line Properties @var  array of mixed
   * Shadow Properties @var  array of mixed
   * Glow Properties @var  array of mixed
   * Soft Properties @var  array of mixed
   *
   */

  
private
      
$_object_state FALSE,
      
$_line_properties = array(
          
'color' => array(
              
'type' => self::EXCEL_COLOR_TYPE_STANDARD,
              
'value' => NULL,
              
'alpha' => 0
          
),
          
'style' => array(
              
'width' => '9525',
              
'compound' => self::LINE_STYLE_COMPOUND_SIMPLE,
              
'dash' => self::LINE_STYLE_DASH_SOLID,
              
'cap' => self::LINE_STYLE_CAP_FLAT,
              
'join' => self::LINE_STYLE_JOIN_BEVEL,
              
'arrow' => array(
                  
'head' => array(
                      
'type' => self::LINE_STYLE_ARROW_TYPE_NOARROW,
                      
'size' => self::LINE_STYLE_ARROW_SIZE_5
                  
),
                  
'end' => array(
                      
'type' => self::LINE_STYLE_ARROW_TYPE_NOARROW,
                      
'size' => self::LINE_STYLE_ARROW_SIZE_8
                  
),
              )
          )
      ),
      
$_shadow_properties = array(
          
'presets' => self::SHADOW_PRESETS_NOSHADOW,
          
'effect' => NULL,
          
'color' => array(
              
'type' => self::EXCEL_COLOR_TYPE_STANDARD,
              
'value' => 'black',
              
'alpha' => 85,
          ),
          
'size' => array(
              
'sx' => NULL,
              
'sy' => NULL,
              
'kx' => NULL
          
),
          
'blur' => NULL,
          
'direction' => NULL,
          
'distance' => NULL,
          
'algn' => NULL,
          
'rotWithShape' => NULL
      
),
      
$_glow_properties = array(
          
'size' => NULL,
          
'color' => array(
              
'type' => self::EXCEL_COLOR_TYPE_STANDARD,
              
'value' => 'black',
              
'alpha' => 40
          
)
      ),
      
$_soft_edges = array(
          
'size' => NULL
      
);

  
/**
   * Get Object State
   *
   * @return bool
   */

  
public function getObjectState() {
    return 
$this->_object_state;
  }

  
/**
   * Change Object State to True
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _activateObject() {
    
$this->_object_state TRUE;

    return 
$this;
  }

  
/**
   * Set Line Color Properties
   *
   * @param string $value
   * @param int $alpha
   * @param string $type
   */

  
public function setLineColorProperties($value$alpha 0$type self::EXCEL_COLOR_TYPE_STANDARD) {
    
$this
        
->_activateObject()
        ->
_line_properties['color'] = $this->setColorProperties(
        
$value,
        
$alpha,
        
$type);
  }

  
/**
   * Set Line Color Properties
   *
   * @param float $line_width
   * @param string $compound_type
   * @param string $dash_type
   * @param string $cap_type
   * @param string $join_type
   * @param string $head_arrow_type
   * @param string $head_arrow_size
   * @param string $end_arrow_type
   * @param string $end_arrow_size
   */

  
public function setLineStyleProperties($line_width NULL$compound_type NULL$dash_type NULL$cap_type NULL$join_type NULL$head_arrow_type NULL$head_arrow_size NULL$end_arrow_type NULL$end_arrow_size NULL) {
    
$this->_activateObject();
    (!
is_null($line_width))
        ? 
$this->_line_properties['style']['width'] = $this->getExcelPointsWidth((float) $line_width)
        : 
NULL;
    (!
is_null($compound_type))
        ? 
$this->_line_properties['style']['compound'] = (string) $compound_type
        
NULL;
    (!
is_null($dash_type))
        ? 
$this->_line_properties['style']['dash'] = (string) $dash_type
        
NULL;
    (!
is_null($cap_type))
        ? 
$this->_line_properties['style']['cap'] = (string) $cap_type
        
NULL;
    (!
is_null($join_type))
        ? 
$this->_line_properties['style']['join'] = (string) $join_type
        
NULL;
    (!
is_null($head_arrow_type))
        ? 
$this->_line_properties['style']['arrow']['head']['type'] = (string) $head_arrow_type
        
NULL;
    (!
is_null($head_arrow_size))
        ? 
$this->_line_properties['style']['arrow']['head']['size'] = (string) $head_arrow_size
        
NULL;
    (!
is_null($end_arrow_type))
        ? 
$this->_line_properties['style']['arrow']['end']['type'] = (string) $end_arrow_type
        
NULL;
    (!
is_null($end_arrow_size))
        ? 
$this->_line_properties['style']['arrow']['end']['size'] = (string) $end_arrow_size
        
NULL;
  }

  
/**
   * Get Line Color Property
   *
   * @param string $parameter
   *
   * @return string
   */

  
public function getLineColorProperty($parameter) {
    return 
$this->_line_properties['color'][$parameter];
  }

  
/**
   * Get Line Style Property
   *
   * @param  array|string $elements
   *
   * @return string
   */

  
public function getLineStyleProperty($elements) {
    return 
$this->getArrayElementsValue($this->_line_properties['style'], $elements);
  }

  
/**
   * Set Glow Properties
   *
   * @param  float $size
   * @param  string $color_value
   * @param  int $color_alpha
   * @param  string $color_type
   *
   */

  
public function setGlowProperties($size$color_value NULL$color_alpha NULL$color_type NULL) {
    
$this
        
->_activateObject()
        ->
_setGlowSize($size)
        ->
_setGlowColor($color_value$color_alpha$color_type);
  }

  
/**
   * Get Glow Color Property
   *
   * @param string $property
   *
   * @return string
   */

  
public function getGlowColor($property) {
    return 
$this->_glow_properties['color'][$property];
  }

  
/**
   * Get Glow Size
   *
   * @return string
   */

  
public function getGlowSize() {
    return 
$this->_glow_properties['size'];
  }

  
/**
   * Set Glow Size
   *
   * @param float $size
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _setGlowSize($size) {
    
$this->_glow_properties['size'] = $this->getExcelPointsWidth((float) $size);

    return 
$this;
  }

  
/**
   * Set Glow Color
   *
   * @param string $color
   * @param int $alpha
   * @param string $type
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _setGlowColor($color$alpha$type) {
    if (!
is_null($color)) {
      
$this->_glow_properties['color']['value'] = (string) $color;
    }
    if (!
is_null($alpha)) {
      
$this->_glow_properties['color']['alpha'] = $this->getTrueAlpha((int) $alpha);
    }
    if (!
is_null($type)) {
      
$this->_glow_properties['color']['type'] = (string) $type;
    }

    return 
$this;
  }

  
/**
   * Get Line Style Arrow Parameters
   *
   * @param string $arrow_selector
   * @param string $property_selector
   *
   * @return string
   */

  
public function getLineStyleArrowParameters($arrow_selector$property_selector) {
    return 
$this->getLineStyleArrowSize($this->_line_properties['style']['arrow'][$arrow_selector]['size'], $property_selector);
  }

  
/**
   * Set Shadow Properties
   *
   * @param int $sh_presets
   * @param string $sh_color_value
   * @param string $sh_color_type
   * @param int $sh_color_alpha
   * @param string $sh_blur
   * @param int $sh_angle
   * @param float $sh_distance
   *
   */

  
public function setShadowProperties($sh_presets$sh_color_value NULL$sh_color_type NULL$sh_color_alpha NULL$sh_blur NULL$sh_angle NULL$sh_distance NULL) {
    
$this
        
->_activateObject()
        ->
_setShadowPresetsProperties((int) $sh_presets)
        ->
_setShadowColor(
            
is_null($sh_color_value) ? $this->_shadow_properties['color']['value'] : $sh_color_value
            
is_null($sh_color_alpha) ? (int) $this->_shadow_properties['color']['alpha']
                : 
$this->getTrueAlpha($sh_color_alpha)
            , 
is_null($sh_color_type) ? $this->_shadow_properties['color']['type'] : $sh_color_type)
        ->
_setShadowBlur($sh_blur)
        ->
_setShadowAngle($sh_angle)
        ->
_setShadowDistance($sh_distance);
  }

  
/**
   * Set Shadow Presets Properties
   *
   * @param int $shadow_presets
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _setShadowPresetsProperties($shadow_presets) {
    
$this->_shadow_properties['presets'] = $shadow_presets;
    
$this->_setShadowProperiesMapValues($this->getShadowPresetsMap($shadow_presets));

    return 
$this;
  }

  
/**
   * Set Shadow Properties Values
   *
   * @param array $properties_map
   * @param * $reference
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _setShadowProperiesMapValues(array $properties_map, &$reference NULL) {
    
$base_reference $reference;
    foreach (
$properties_map as $property_key => $property_val) {
      if (
is_array($property_val)) {
        if (
$reference === NULL) {
          
$reference = & $this->_shadow_properties[$property_key];
        } else {
          
$reference = & $reference[$property_key];
        }
        
$this->_setShadowProperiesMapValues($property_val$reference);
      } else {
        if (
$base_reference === NULL) {
          
$this->_shadow_properties[$property_key] = $property_val;
        } else {
          
$reference[$property_key] = $property_val;
        }
      }
    }

    return 
$this;
  }

  
/**
   * Set Shadow Color
   *
   * @param string $color
   * @param int $alpha
   * @param string $type
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _setShadowColor($color$alpha$type) {
    if (!
is_null($color)) {
      
$this->_shadow_properties['color']['value'] = (string) $color;
    }
    if (!
is_null($alpha)) {
      
$this->_shadow_properties['color']['alpha'] = $this->getTrueAlpha((int) $alpha);
    }
    if (!
is_null($type)) {
      
$this->_shadow_properties['color']['type'] = (string) $type;
    }

    return 
$this;
  }

  
/**
   * Set Shadow Blur
   *
   * @param float $blur
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _setShadowBlur($blur) {
    if (
$blur !== NULL) {
      
$this->_shadow_properties['blur'] = (string) $this->getExcelPointsWidth($blur);
    }

    return 
$this;
  }

  
/**
   * Set Shadow Angle
   *
   * @param int $angle
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _setShadowAngle($angle) {
    if (
$angle !== NULL) {
      
$this->_shadow_properties['direction'] = (string) $this->getExcelPointsAngle($angle);
    }

    return 
$this;
  }

  
/**
   * Set Shadow Distance
   *
   * @param float $distance
   *
   * @return PHPExcel_Chart_GridLines
   */

  
private function _setShadowDistance($distance) {
    if (
$distance !== NULL) {
      
$this->_shadow_properties['distance'] = (string) $this->getExcelPointsWidth($distance);
    }

    return 
$this;
  }

  
/**
   * Get Shadow Property
   *
   * @param string $elements
   * @param array $elements
   *
   * @return string
   */

  
public function getShadowProperty($elements) {
    return 
$this->getArrayElementsValue($this->_shadow_properties$elements);
  }

  
/**
   * Set Soft Edges Size
   *
   * @param float $size
   */

  
public function setSoftEdgesSize($size) {
    if (!
is_null($size)) {
      
$this->_activateObject();
      
$_soft_edges['size'] = (string) $this->getExcelPointsWidth($size);
    }
  }

  
/**
   * Get Soft Edges Size
   *
   * @return string
   */

  
public function getSoftEdgesSize() {
    return 
$this->_soft_edges['size'];
  }
}