/branches/wi6857-memory/Classes/PHPExcel/RichText.php

# · PHP · 289 lines · 109 code · 35 blank · 145 comment · 14 complexity · ec216e599503d2a8e86d6be5c9923ae0 MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2009 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel_RichText
  23. * @copyright Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /** PHPExcel_IComparable */
  28. require_once 'PHPExcel/IComparable.php';
  29. /** PHPExcel_Cell */
  30. require_once 'PHPExcel/Cell.php';
  31. /** PHPExcel_RichText_ITextElement */
  32. require_once 'PHPExcel/RichText/ITextElement.php';
  33. /** PHPExcel_RichText_TextElement */
  34. require_once 'PHPExcel/RichText/TextElement.php';
  35. /** PHPExcel_RichText_Run */
  36. require_once 'PHPExcel/RichText/Run.php';
  37. /** PHPExcel_Style_Font */
  38. require_once 'PHPExcel/Style/Font.php';
  39. /**
  40. * PHPExcel_RichText
  41. *
  42. * @category PHPExcel
  43. * @package PHPExcel_RichText
  44. * @copyright Copyright (c) 2006 - 2009 PHPExcel (http://www.codeplex.com/PHPExcel)
  45. */
  46. class PHPExcel_RichText implements PHPExcel_IComparable
  47. {
  48. /**
  49. * Rich text elements
  50. *
  51. * @var PHPExcel_RichText_ITextElement[]
  52. */
  53. private $_richTextElements;
  54. /**
  55. * Parent cell
  56. *
  57. * @var PHPExcel_Cell
  58. */
  59. private $_parent;
  60. /**
  61. * Create a new PHPExcel_RichText instance
  62. *
  63. * @param PHPExcel_Cell $pParent
  64. * @throws Exception
  65. */
  66. public function __construct(PHPExcel_Cell $pCell = null)
  67. {
  68. // Initialise variables
  69. $this->_richTextElements = array();
  70. // Set parent?
  71. if (!is_null($pCell)) {
  72. // Set parent cell
  73. $this->_parent = $pCell;
  74. // Add cell text and style
  75. if ($this->_parent->getValue() != "") {
  76. $objRun = new PHPExcel_RichText_Run($this->_parent->getValue());
  77. $objRun->setFont(clone $this->_parent->getParent()->getStyle($this->_parent->getCoordinate())->getFont());
  78. $this->addText($objRun);
  79. }
  80. // Set parent value
  81. $this->_parent->setValue($this);
  82. }
  83. }
  84. /**
  85. * Add text
  86. *
  87. * @param PHPExcel_RichText_ITextElement $pText Rich text element
  88. * @throws Exception
  89. */
  90. public function addText(PHPExcel_RichText_ITextElement $pText = null)
  91. {
  92. $this->_richTextElements[] = $pText;
  93. }
  94. /**
  95. * Create text
  96. *
  97. * @param string $pText Text
  98. * @return PHPExcel_RichText_TextElement
  99. * @throws Exception
  100. */
  101. public function createText($pText = '')
  102. {
  103. $objText = new PHPExcel_RichText_TextElement($pText);
  104. $this->addText($objText);
  105. return $objText;
  106. }
  107. /**
  108. * Create text run
  109. *
  110. * @param string $pText Text
  111. * @return PHPExcel_RichText_Run
  112. * @throws Exception
  113. */
  114. public function createTextRun($pText = '')
  115. {
  116. $objText = new PHPExcel_RichText_Run($pText);
  117. $this->addText($objText);
  118. return $objText;
  119. }
  120. /**
  121. * Get plain text
  122. *
  123. * @return string
  124. */
  125. public function getPlainText()
  126. {
  127. // Return value
  128. $returnValue = '';
  129. // Loop trough all PHPExcel_RichText_ITextElement
  130. foreach ($this->_richTextElements as $text) {
  131. $returnValue .= $text->getText();
  132. }
  133. // Return
  134. return $returnValue;
  135. }
  136. /**
  137. * Convert to string
  138. *
  139. * @return string
  140. */
  141. public function __toString() {
  142. return $this->getPlainText();
  143. }
  144. /**
  145. * Get Rich Text elements
  146. *
  147. * @return PHPExcel_RichText_ITextElement[]
  148. */
  149. public function getRichTextElements()
  150. {
  151. return $this->_richTextElements;
  152. }
  153. /**
  154. * Set Rich Text elements
  155. *
  156. * @param PHPExcel_RichText_ITextElement[] $pElements Array of elements
  157. * @throws Exception
  158. */
  159. public function setRichTextElements($pElements = null)
  160. {
  161. if (is_array($pElements)) {
  162. $this->_richTextElements = $pElements;
  163. } else {
  164. throw new Exception("Invalid PHPExcel_RichText_ITextElement[] array passed.");
  165. }
  166. }
  167. /**
  168. * Get parent
  169. *
  170. * @return PHPExcel_Cell
  171. */
  172. public function getParent() {
  173. return $this->_parent;
  174. }
  175. /**
  176. * Set parent
  177. *
  178. * @param PHPExcel_Cell $value
  179. */
  180. public function setParent(PHPExcel_Cell $value) {
  181. // Set parent
  182. $this->_parent = $value;
  183. // Set parent value
  184. $this->_parent->setValue($this);
  185. // Verify style information
  186. $sheet = $this->_parent->getParent();
  187. $cellFont = $sheet->getStyle($this->_parent->getCoordinate())->getFont()->getSharedComponent();
  188. foreach ($this->getRichTextElements() as $element) {
  189. if (!($element instanceof PHPExcel_RichText_Run)) continue;
  190. if ($element->getFont()->getHashCode() == $sheet->getDefaultStyle()->getFont()->getHashCode()) {
  191. if ($element->getFont()->getHashCode() != $cellFont->getHashCode()) {
  192. $element->setFont(clone $cellFont);
  193. }
  194. }
  195. }
  196. }
  197. /**
  198. * Get hash code
  199. *
  200. * @return string Hash code
  201. */
  202. public function getHashCode() {
  203. $hashElements = '';
  204. foreach ($this->_richTextElements as $element) {
  205. $hashElements .= $element->getHashCode();
  206. }
  207. return md5(
  208. $hashElements
  209. . __CLASS__
  210. );
  211. }
  212. /**
  213. * Hash index
  214. *
  215. * @var string
  216. */
  217. private $_hashIndex;
  218. /**
  219. * Get hash index
  220. *
  221. * Note that this index may vary during script execution! Only reliable moment is
  222. * while doing a write of a workbook and when changes are not allowed.
  223. *
  224. * @return string Hash index
  225. */
  226. public function getHashIndex() {
  227. return $this->_hashIndex;
  228. }
  229. /**
  230. * Set hash index
  231. *
  232. * Note that this index may vary during script execution! Only reliable moment is
  233. * while doing a write of a workbook and when changes are not allowed.
  234. *
  235. * @param string $value Hash index
  236. */
  237. public function setHashIndex($value) {
  238. $this->_hashIndex = $value;
  239. }
  240. /**
  241. * Implement PHP __clone to create a deep clone, not just a shallow copy.
  242. */
  243. public function __clone() {
  244. $vars = get_object_vars($this);
  245. foreach ($vars as $key => $value) {
  246. if ($key == '_parent') continue;
  247. if (is_object($value)) {
  248. $this->$key = clone $value;
  249. } else {
  250. $this->$key = $value;
  251. }
  252. }
  253. }
  254. }