/branches/v1.7.4/Classes/PHPExcel/Worksheet/ColumnDimension.php

# · PHP · 271 lines · 85 code · 27 blank · 159 comment · 4 complexity · fc7c7f5f7ef2529cbf9c2f8f71315c7a MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2010 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_Worksheet
  23. * @copyright Copyright (c) 2006 - 2010 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. /**
  28. * PHPExcel_Worksheet_ColumnDimension
  29. *
  30. * @category PHPExcel
  31. * @package PHPExcel_Worksheet
  32. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  33. */
  34. class PHPExcel_Worksheet_ColumnDimension
  35. {
  36. /**
  37. * Column index
  38. *
  39. * @var int
  40. */
  41. private $_columnIndex;
  42. /**
  43. * Column width
  44. *
  45. * When this is set to a negative value, the column width should be ignored by IWriter
  46. *
  47. * @var double
  48. */
  49. private $_width;
  50. /**
  51. * Auto size?
  52. *
  53. * @var bool
  54. */
  55. private $_autoSize;
  56. /**
  57. * Visible?
  58. *
  59. * @var bool
  60. */
  61. private $_visible;
  62. /**
  63. * Outline level
  64. *
  65. * @var int
  66. */
  67. private $_outlineLevel = 0;
  68. /**
  69. * Collapsed
  70. *
  71. * @var bool
  72. */
  73. private $_collapsed;
  74. /**
  75. * Index to cellXf
  76. *
  77. * @var int
  78. */
  79. private $_xfIndex;
  80. /**
  81. * Create a new PHPExcel_Worksheet_ColumnDimension
  82. *
  83. * @param string $pIndex Character column index
  84. */
  85. public function __construct($pIndex = 'A')
  86. {
  87. // Initialise values
  88. $this->_columnIndex = $pIndex;
  89. $this->_width = -1;
  90. $this->_autoSize = false;
  91. $this->_visible = true;
  92. $this->_outlineLevel = 0;
  93. $this->_collapsed = false;
  94. // set default index to cellXf
  95. $this->_xfIndex = 0;
  96. }
  97. /**
  98. * Get ColumnIndex
  99. *
  100. * @return string
  101. */
  102. public function getColumnIndex() {
  103. return $this->_columnIndex;
  104. }
  105. /**
  106. * Set ColumnIndex
  107. *
  108. * @param string $pValue
  109. * @return PHPExcel_Worksheet_ColumnDimension
  110. */
  111. public function setColumnIndex($pValue) {
  112. $this->_columnIndex = $pValue;
  113. return $this;
  114. }
  115. /**
  116. * Get Width
  117. *
  118. * @return double
  119. */
  120. public function getWidth() {
  121. return $this->_width;
  122. }
  123. /**
  124. * Set Width
  125. *
  126. * @param double $pValue
  127. * @return PHPExcel_Worksheet_ColumnDimension
  128. */
  129. public function setWidth($pValue = -1) {
  130. $this->_width = $pValue;
  131. return $this;
  132. }
  133. /**
  134. * Get Auto Size
  135. *
  136. * @return bool
  137. */
  138. public function getAutoSize() {
  139. return $this->_autoSize;
  140. }
  141. /**
  142. * Set Auto Size
  143. *
  144. * @param bool $pValue
  145. * @return PHPExcel_Worksheet_ColumnDimension
  146. */
  147. public function setAutoSize($pValue = false) {
  148. $this->_autoSize = $pValue;
  149. return $this;
  150. }
  151. /**
  152. * Get Visible
  153. *
  154. * @return bool
  155. */
  156. public function getVisible() {
  157. return $this->_visible;
  158. }
  159. /**
  160. * Set Visible
  161. *
  162. * @param bool $pValue
  163. * @return PHPExcel_Worksheet_ColumnDimension
  164. */
  165. public function setVisible($pValue = true) {
  166. $this->_visible = $pValue;
  167. return $this;
  168. }
  169. /**
  170. * Get Outline Level
  171. *
  172. * @return int
  173. */
  174. public function getOutlineLevel() {
  175. return $this->_outlineLevel;
  176. }
  177. /**
  178. * Set Outline Level
  179. *
  180. * Value must be between 0 and 7
  181. *
  182. * @param int $pValue
  183. * @throws Exception
  184. * @return PHPExcel_Worksheet_ColumnDimension
  185. */
  186. public function setOutlineLevel($pValue) {
  187. if ($pValue < 0 || $pValue > 7) {
  188. throw new Exception("Outline level must range between 0 and 7.");
  189. }
  190. $this->_outlineLevel = $pValue;
  191. return $this;
  192. }
  193. /**
  194. * Get Collapsed
  195. *
  196. * @return bool
  197. */
  198. public function getCollapsed() {
  199. return $this->_collapsed;
  200. }
  201. /**
  202. * Set Collapsed
  203. *
  204. * @param bool $pValue
  205. * @return PHPExcel_Worksheet_ColumnDimension
  206. */
  207. public function setCollapsed($pValue = true) {
  208. $this->_collapsed = $pValue;
  209. return $this;
  210. }
  211. /**
  212. * Get index to cellXf
  213. *
  214. * @return int
  215. */
  216. public function getXfIndex()
  217. {
  218. return $this->_xfIndex;
  219. }
  220. /**
  221. * Set index to cellXf
  222. *
  223. * @param int $pValue
  224. * @return PHPExcel_Worksheet_ColumnDimension
  225. */
  226. public function setXfIndex($pValue = 0)
  227. {
  228. $this->_xfIndex = $pValue;
  229. return $this;
  230. }
  231. /**
  232. * Implement PHP __clone to create a deep clone, not just a shallow copy.
  233. */
  234. public function __clone() {
  235. $vars = get_object_vars($this);
  236. foreach ($vars as $key => $value) {
  237. if (is_object($value)) {
  238. $this->$key = clone $value;
  239. } else {
  240. $this->$key = $value;
  241. }
  242. }
  243. }
  244. }