rubyXL-ptr 3.3.27

Sign up to get free protection for your applications and to get access to all the features.
Files changed (457) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +17 -0
  3. data/LICENSE.txt +20 -0
  4. data/README.rdoc +229 -0
  5. data/Rakefile +103 -0
  6. data/VERSION +1 -0
  7. data/lib/rubyXL.rb +12 -0
  8. data/lib/rubyXL/cell.rb +54 -0
  9. data/lib/rubyXL/convenience_methods.rb +1122 -0
  10. data/lib/rubyXL/objects/border.rb +74 -0
  11. data/lib/rubyXL/objects/calculation_chain.rb +31 -0
  12. data/lib/rubyXL/objects/cell_style.rb +65 -0
  13. data/lib/rubyXL/objects/chartsheet.rb +92 -0
  14. data/lib/rubyXL/objects/color.rb +27 -0
  15. data/lib/rubyXL/objects/column_range.rb +92 -0
  16. data/lib/rubyXL/objects/comments.rb +47 -0
  17. data/lib/rubyXL/objects/container_nodes.rb +135 -0
  18. data/lib/rubyXL/objects/content_types.rb +77 -0
  19. data/lib/rubyXL/objects/data_validation.rb +37 -0
  20. data/lib/rubyXL/objects/document_properties.rb +159 -0
  21. data/lib/rubyXL/objects/extensions.rb +40 -0
  22. data/lib/rubyXL/objects/external_links.rb +85 -0
  23. data/lib/rubyXL/objects/fill.rb +55 -0
  24. data/lib/rubyXL/objects/filters.rb +120 -0
  25. data/lib/rubyXL/objects/font.rb +48 -0
  26. data/lib/rubyXL/objects/formula.rb +24 -0
  27. data/lib/rubyXL/objects/ooxml_object.rb +460 -0
  28. data/lib/rubyXL/objects/reference.rb +110 -0
  29. data/lib/rubyXL/objects/relationships.rb +213 -0
  30. data/lib/rubyXL/objects/root.rb +86 -0
  31. data/lib/rubyXL/objects/shared_strings.rb +70 -0
  32. data/lib/rubyXL/objects/sheet_common.rb +51 -0
  33. data/lib/rubyXL/objects/sheet_data.rb +188 -0
  34. data/lib/rubyXL/objects/simple_types.rb +232 -0
  35. data/lib/rubyXL/objects/storage.rb +182 -0
  36. data/lib/rubyXL/objects/stylesheet.rb +232 -0
  37. data/lib/rubyXL/objects/text.rb +94 -0
  38. data/lib/rubyXL/objects/theme.rb +1716 -0
  39. data/lib/rubyXL/objects/workbook.rb +464 -0
  40. data/lib/rubyXL/objects/worksheet.rb +748 -0
  41. data/lib/rubyXL/parser.rb +29 -0
  42. data/lib/rubyXL/worksheet.rb +105 -0
  43. data/rdoc/README_rdoc.html +475 -0
  44. data/rdoc/RubyXL.html +598 -0
  45. data/rdoc/RubyXL/AExtension.html +223 -0
  46. data/rdoc/RubyXL/AExtensionStorageArea.html +103 -0
  47. data/rdoc/RubyXL/ActiveX.html +182 -0
  48. data/rdoc/RubyXL/ActiveXBinary.html +117 -0
  49. data/rdoc/RubyXL/AdjustHandleList.html +106 -0
  50. data/rdoc/RubyXL/Alignment.html +106 -0
  51. data/rdoc/RubyXL/AlternateContent.html +103 -0
  52. data/rdoc/RubyXL/Authors.html +106 -0
  53. data/rdoc/RubyXL/AutoFilter.html +106 -0
  54. data/rdoc/RubyXL/AutoFilterColumn.html +106 -0
  55. data/rdoc/RubyXL/BinaryImageFile.html +122 -0
  56. data/rdoc/RubyXL/BodyProperties.html +106 -0
  57. data/rdoc/RubyXL/BooleanNode.html +103 -0
  58. data/rdoc/RubyXL/BooleanValue.html +103 -0
  59. data/rdoc/RubyXL/Border.html +275 -0
  60. data/rdoc/RubyXL/BorderEdge.html +189 -0
  61. data/rdoc/RubyXL/Borders.html +157 -0
  62. data/rdoc/RubyXL/Break.html +106 -0
  63. data/rdoc/RubyXL/BreakList.html +106 -0
  64. data/rdoc/RubyXL/CT_AdjPoint2D.html +106 -0
  65. data/rdoc/RubyXL/CT_AlphaBiLevelEffect.html +106 -0
  66. data/rdoc/RubyXL/CT_AlphaModulateEffect.html +106 -0
  67. data/rdoc/RubyXL/CT_AlphaModulateFixedEffect.html +106 -0
  68. data/rdoc/RubyXL/CT_AlphaOutsetEffect.html +106 -0
  69. data/rdoc/RubyXL/CT_AlphaReplaceEffect.html +106 -0
  70. data/rdoc/RubyXL/CT_Backdrop.html +106 -0
  71. data/rdoc/RubyXL/CT_Bevel.html +106 -0
  72. data/rdoc/RubyXL/CT_BiLevelEffect.html +106 -0
  73. data/rdoc/RubyXL/CT_BlendEffect.html +106 -0
  74. data/rdoc/RubyXL/CT_Blip.html +106 -0
  75. data/rdoc/RubyXL/CT_BlipFillProperties.html +106 -0
  76. data/rdoc/RubyXL/CT_BlurEffect.html +106 -0
  77. data/rdoc/RubyXL/CT_Camera.html +106 -0
  78. data/rdoc/RubyXL/CT_Color.html +106 -0
  79. data/rdoc/RubyXL/CT_ColorChangeEffect.html +106 -0
  80. data/rdoc/RubyXL/CT_ColorMapping.html +106 -0
  81. data/rdoc/RubyXL/CT_ColorScheme.html +106 -0
  82. data/rdoc/RubyXL/CT_ColorSchemeAndMapping.html +106 -0
  83. data/rdoc/RubyXL/CT_ConnectionSite.html +106 -0
  84. data/rdoc/RubyXL/CT_ConnectionSiteList.html +106 -0
  85. data/rdoc/RubyXL/CT_DashStop.html +106 -0
  86. data/rdoc/RubyXL/CT_DashStopList.html +106 -0
  87. data/rdoc/RubyXL/CT_DefaultShapeDefinition.html +106 -0
  88. data/rdoc/RubyXL/CT_DuotoneEffect.html +106 -0
  89. data/rdoc/RubyXL/CT_EffectContainer.html +106 -0
  90. data/rdoc/RubyXL/CT_EffectList.html +106 -0
  91. data/rdoc/RubyXL/CT_EffectReference.html +106 -0
  92. data/rdoc/RubyXL/CT_EffectStyleItem.html +106 -0
  93. data/rdoc/RubyXL/CT_EffectStyleList.html +106 -0
  94. data/rdoc/RubyXL/CT_EmbeddedWAVAudioFile.html +106 -0
  95. data/rdoc/RubyXL/CT_FillEffect.html +106 -0
  96. data/rdoc/RubyXL/CT_FillOverlayEffect.html +106 -0
  97. data/rdoc/RubyXL/CT_FillStyleList.html +106 -0
  98. data/rdoc/RubyXL/CT_FlatText.html +106 -0
  99. data/rdoc/RubyXL/CT_FontCollection.html +106 -0
  100. data/rdoc/RubyXL/CT_FontReference.html +106 -0
  101. data/rdoc/RubyXL/CT_GeomGuideList.html +106 -0
  102. data/rdoc/RubyXL/CT_GlowEffect.html +106 -0
  103. data/rdoc/RubyXL/CT_GradientFillProperties.html +106 -0
  104. data/rdoc/RubyXL/CT_GradientStop.html +106 -0
  105. data/rdoc/RubyXL/CT_GradientStopList.html +106 -0
  106. data/rdoc/RubyXL/CT_HSLEffect.html +106 -0
  107. data/rdoc/RubyXL/CT_HslColor.html +106 -0
  108. data/rdoc/RubyXL/CT_Hyperlink.html +106 -0
  109. data/rdoc/RubyXL/CT_InnerShadowEffect.html +106 -0
  110. data/rdoc/RubyXL/CT_LightRig.html +106 -0
  111. data/rdoc/RubyXL/CT_LineEndProperties.html +106 -0
  112. data/rdoc/RubyXL/CT_LineJoinMiterProperties.html +106 -0
  113. data/rdoc/RubyXL/CT_LineProperties.html +106 -0
  114. data/rdoc/RubyXL/CT_LineStyleList.html +106 -0
  115. data/rdoc/RubyXL/CT_LinearShadeProperties.html +106 -0
  116. data/rdoc/RubyXL/CT_LuminanceEffect.html +106 -0
  117. data/rdoc/RubyXL/CT_ObjectStyleDefaults.html +106 -0
  118. data/rdoc/RubyXL/CT_OuterShadowEffect.html +106 -0
  119. data/rdoc/RubyXL/CT_Path2D.html +106 -0
  120. data/rdoc/RubyXL/CT_Path2DArcTo.html +106 -0
  121. data/rdoc/RubyXL/CT_Path2DCubicBezierTo.html +106 -0
  122. data/rdoc/RubyXL/CT_Path2DList.html +106 -0
  123. data/rdoc/RubyXL/CT_Path2DQuadBezierTo.html +106 -0
  124. data/rdoc/RubyXL/CT_Path2DTo.html +106 -0
  125. data/rdoc/RubyXL/CT_PathShadeProperties.html +106 -0
  126. data/rdoc/RubyXL/CT_PatternFillProperties.html +106 -0
  127. data/rdoc/RubyXL/CT_Point3D.html +106 -0
  128. data/rdoc/RubyXL/CT_PolarAdjustHandle.html +106 -0
  129. data/rdoc/RubyXL/CT_PresetColor.html +106 -0
  130. data/rdoc/RubyXL/CT_PresetLineDashProperties.html +106 -0
  131. data/rdoc/RubyXL/CT_PresetShadowEffect.html +106 -0
  132. data/rdoc/RubyXL/CT_PresetTextShape.html +106 -0
  133. data/rdoc/RubyXL/CT_ReflectionEffect.html +106 -0
  134. data/rdoc/RubyXL/CT_RelativeOffsetEffect.html +106 -0
  135. data/rdoc/RubyXL/CT_RelativeRect.html +106 -0
  136. data/rdoc/RubyXL/CT_SRgbColor.html +106 -0
  137. data/rdoc/RubyXL/CT_ScRgbColor.html +106 -0
  138. data/rdoc/RubyXL/CT_Scene3D.html +106 -0
  139. data/rdoc/RubyXL/CT_SchemeColor.html +106 -0
  140. data/rdoc/RubyXL/CT_Shape3D.html +106 -0
  141. data/rdoc/RubyXL/CT_ShapeStyle.html +106 -0
  142. data/rdoc/RubyXL/CT_SoftEdgesEffect.html +106 -0
  143. data/rdoc/RubyXL/CT_SphereCoords.html +106 -0
  144. data/rdoc/RubyXL/CT_StretchInfoProperties.html +106 -0
  145. data/rdoc/RubyXL/CT_StyleMatrix.html +106 -0
  146. data/rdoc/RubyXL/CT_StyleMatrixReference.html +106 -0
  147. data/rdoc/RubyXL/CT_SupplementalFont.html +106 -0
  148. data/rdoc/RubyXL/CT_SystemColor.html +106 -0
  149. data/rdoc/RubyXL/CT_TextAutonumberBullet.html +106 -0
  150. data/rdoc/RubyXL/CT_TextBlipBullet.html +106 -0
  151. data/rdoc/RubyXL/CT_TextCharBullet.html +106 -0
  152. data/rdoc/RubyXL/CT_TextCharacterProperties.html +106 -0
  153. data/rdoc/RubyXL/CT_TextFont.html +106 -0
  154. data/rdoc/RubyXL/CT_TextListStyle.html +106 -0
  155. data/rdoc/RubyXL/CT_TextNormalAutofit.html +106 -0
  156. data/rdoc/RubyXL/CT_TextParagraphProperties.html +106 -0
  157. data/rdoc/RubyXL/CT_TextSpacing.html +106 -0
  158. data/rdoc/RubyXL/CT_TextTabStop.html +106 -0
  159. data/rdoc/RubyXL/CT_TextTabStopList.html +106 -0
  160. data/rdoc/RubyXL/CT_TileInfoProperties.html +106 -0
  161. data/rdoc/RubyXL/CT_TintEffect.html +106 -0
  162. data/rdoc/RubyXL/CT_Transform2D.html +106 -0
  163. data/rdoc/RubyXL/CT_TransformEffect.html +106 -0
  164. data/rdoc/RubyXL/CT_Vector3D.html +106 -0
  165. data/rdoc/RubyXL/CT_XYAdjustHandle.html +106 -0
  166. data/rdoc/RubyXL/CalculationChain.html +176 -0
  167. data/rdoc/RubyXL/CalculationChainCell.html +106 -0
  168. data/rdoc/RubyXL/CalculationProperties.html +106 -0
  169. data/rdoc/RubyXL/Cell.html +558 -0
  170. data/rdoc/RubyXL/CellConvenienceMethods.html +1211 -0
  171. data/rdoc/RubyXL/CellExt.html +106 -0
  172. data/rdoc/RubyXL/CellSmartTag.html +106 -0
  173. data/rdoc/RubyXL/CellSmartTagProperty.html +106 -0
  174. data/rdoc/RubyXL/CellSmartTags.html +106 -0
  175. data/rdoc/RubyXL/CellStyle.html +106 -0
  176. data/rdoc/RubyXL/CellStyleXFs.html +157 -0
  177. data/rdoc/RubyXL/CellStyles.html +157 -0
  178. data/rdoc/RubyXL/CellValue.html +158 -0
  179. data/rdoc/RubyXL/CellWatch.html +106 -0
  180. data/rdoc/RubyXL/CellWatches.html +106 -0
  181. data/rdoc/RubyXL/CellXFs.html +161 -0
  182. data/rdoc/RubyXL/ChartColorsFile.html +122 -0
  183. data/rdoc/RubyXL/ChartFile.html +189 -0
  184. data/rdoc/RubyXL/ChartStyleFile.html +122 -0
  185. data/rdoc/RubyXL/ChartUserShapesFile.html +122 -0
  186. data/rdoc/RubyXL/Chartsheet.html +260 -0
  187. data/rdoc/RubyXL/ChartsheetPageSetup.html +106 -0
  188. data/rdoc/RubyXL/ChartsheetProperties.html +106 -0
  189. data/rdoc/RubyXL/ChartsheetProtection.html +106 -0
  190. data/rdoc/RubyXL/ChartsheetView.html +106 -0
  191. data/rdoc/RubyXL/ChartsheetViews.html +106 -0
  192. data/rdoc/RubyXL/Color.html +175 -0
  193. data/rdoc/RubyXL/ColorFilter.html +106 -0
  194. data/rdoc/RubyXL/ColorScale.html +106 -0
  195. data/rdoc/RubyXL/ColorSet.html +106 -0
  196. data/rdoc/RubyXL/Colors.html +106 -0
  197. data/rdoc/RubyXL/ColumnRange.html +245 -0
  198. data/rdoc/RubyXL/ColumnRanges.html +289 -0
  199. data/rdoc/RubyXL/Comment.html +106 -0
  200. data/rdoc/RubyXL/CommentList.html +106 -0
  201. data/rdoc/RubyXL/CommentsFile.html +197 -0
  202. data/rdoc/RubyXL/ConditionalFormatValue.html +106 -0
  203. data/rdoc/RubyXL/ConditionalFormatting.html +106 -0
  204. data/rdoc/RubyXL/ConditionalFormattingRule.html +106 -0
  205. data/rdoc/RubyXL/ContentTypeDefault.html +103 -0
  206. data/rdoc/RubyXL/ContentTypeOverride.html +103 -0
  207. data/rdoc/RubyXL/ContentTypes.html +248 -0
  208. data/rdoc/RubyXL/ControlPropertiesFile.html +117 -0
  209. data/rdoc/RubyXL/CorePropertiesFile.html +474 -0
  210. data/rdoc/RubyXL/CustomColor.html +106 -0
  211. data/rdoc/RubyXL/CustomColorList.html +106 -0
  212. data/rdoc/RubyXL/CustomFilter.html +106 -0
  213. data/rdoc/RubyXL/CustomFilters.html +106 -0
  214. data/rdoc/RubyXL/CustomGeometry.html +106 -0
  215. data/rdoc/RubyXL/CustomProperties.html +106 -0
  216. data/rdoc/RubyXL/CustomPropertiesFile.html +122 -0
  217. data/rdoc/RubyXL/CustomProperty.html +106 -0
  218. data/rdoc/RubyXL/CustomSheetView.html +106 -0
  219. data/rdoc/RubyXL/CustomSheetViews.html +106 -0
  220. data/rdoc/RubyXL/CustomWorkbookView.html +106 -0
  221. data/rdoc/RubyXL/CustomWorkbookViews.html +106 -0
  222. data/rdoc/RubyXL/CustomXMLFile.html +117 -0
  223. data/rdoc/RubyXL/DXF.html +106 -0
  224. data/rdoc/RubyXL/DXFs.html +106 -0
  225. data/rdoc/RubyXL/DataBar.html +106 -0
  226. data/rdoc/RubyXL/DataConsolidate.html +106 -0
  227. data/rdoc/RubyXL/DataConsolidationReference.html +106 -0
  228. data/rdoc/RubyXL/DataConsolidationReferences.html +106 -0
  229. data/rdoc/RubyXL/DataType.html +143 -0
  230. data/rdoc/RubyXL/DataValidation.html +106 -0
  231. data/rdoc/RubyXL/DataValidations.html +106 -0
  232. data/rdoc/RubyXL/DateGroupItem.html +106 -0
  233. data/rdoc/RubyXL/DefinedName.html +106 -0
  234. data/rdoc/RubyXL/DefinedNameExt.html +106 -0
  235. data/rdoc/RubyXL/DefinedNames.html +106 -0
  236. data/rdoc/RubyXL/DefinedNamesExt.html +106 -0
  237. data/rdoc/RubyXL/DocumentPropertiesFile.html +255 -0
  238. data/rdoc/RubyXL/DrawingFile.html +188 -0
  239. data/rdoc/RubyXL/DynamicFilter.html +106 -0
  240. data/rdoc/RubyXL/EmbeddedControl.html +106 -0
  241. data/rdoc/RubyXL/EmbeddedControls.html +106 -0
  242. data/rdoc/RubyXL/Extension.html +106 -0
  243. data/rdoc/RubyXL/ExtensionStorageArea.html +106 -0
  244. data/rdoc/RubyXL/Extents.html +106 -0
  245. data/rdoc/RubyXL/ExternalBook.html +106 -0
  246. data/rdoc/RubyXL/ExternalLinksFile.html +184 -0
  247. data/rdoc/RubyXL/ExternalReference.html +106 -0
  248. data/rdoc/RubyXL/ExternalReferences.html +106 -0
  249. data/rdoc/RubyXL/ExtraColorSchemeList.html +106 -0
  250. data/rdoc/RubyXL/FieldItem.html +106 -0
  251. data/rdoc/RubyXL/FileRecoveryProperties.html +106 -0
  252. data/rdoc/RubyXL/FileSharing.html +106 -0
  253. data/rdoc/RubyXL/FileVersion.html +106 -0
  254. data/rdoc/RubyXL/Fill.html +157 -0
  255. data/rdoc/RubyXL/Fills.html +157 -0
  256. data/rdoc/RubyXL/FilterContainer.html +106 -0
  257. data/rdoc/RubyXL/FloatNode.html +103 -0
  258. data/rdoc/RubyXL/FloatValue.html +103 -0
  259. data/rdoc/RubyXL/Font.html +184 -0
  260. data/rdoc/RubyXL/FontConvenienceMethods.html +603 -0
  261. data/rdoc/RubyXL/FontScheme.html +106 -0
  262. data/rdoc/RubyXL/Fonts.html +157 -0
  263. data/rdoc/RubyXL/Formula.html +106 -0
  264. data/rdoc/RubyXL/FunctionGroup.html +106 -0
  265. data/rdoc/RubyXL/FunctionGroups.html +106 -0
  266. data/rdoc/RubyXL/GenericStorageObject.html +298 -0
  267. data/rdoc/RubyXL/GradientFill.html +106 -0
  268. data/rdoc/RubyXL/HeaderFooterSettings.html +106 -0
  269. data/rdoc/RubyXL/Hyperlink.html +106 -0
  270. data/rdoc/RubyXL/HyperlinkRelFile.html +117 -0
  271. data/rdoc/RubyXL/Hyperlinks.html +106 -0
  272. data/rdoc/RubyXL/IconFilter.html +106 -0
  273. data/rdoc/RubyXL/IconSet.html +106 -0
  274. data/rdoc/RubyXL/IgnoredError.html +106 -0
  275. data/rdoc/RubyXL/IgnoredErrors.html +106 -0
  276. data/rdoc/RubyXL/IndexedColors.html +106 -0
  277. data/rdoc/RubyXL/InputCells.html +106 -0
  278. data/rdoc/RubyXL/IntegerNode.html +103 -0
  279. data/rdoc/RubyXL/IntegerValue.html +103 -0
  280. data/rdoc/RubyXL/LegacyCell.html +181 -0
  281. data/rdoc/RubyXL/LegacyWorksheet.html +355 -0
  282. data/rdoc/RubyXL/MRUColors.html +106 -0
  283. data/rdoc/RubyXL/MacrosFile.html +122 -0
  284. data/rdoc/RubyXL/MergedCell.html +106 -0
  285. data/rdoc/RubyXL/MergedCells.html +106 -0
  286. data/rdoc/RubyXL/NumFmt.html +106 -0
  287. data/rdoc/RubyXL/NumberFormat.html +158 -0
  288. data/rdoc/RubyXL/NumberFormats.html +172 -0
  289. data/rdoc/RubyXL/OLEObject.html +106 -0
  290. data/rdoc/RubyXL/OLEObjectFile.html +122 -0
  291. data/rdoc/RubyXL/OLEObjects.html +106 -0
  292. data/rdoc/RubyXL/OLESize.html +106 -0
  293. data/rdoc/RubyXL/OOXMLContainerObject.html +394 -0
  294. data/rdoc/RubyXL/OOXMLObject.html +118 -0
  295. data/rdoc/RubyXL/OOXMLObjectClassMethods.html +532 -0
  296. data/rdoc/RubyXL/OOXMLObjectInstanceMethods.html +564 -0
  297. data/rdoc/RubyXL/OOXMLRelationshipsFile.html +603 -0
  298. data/rdoc/RubyXL/OOXMLTopLevelObject.html +384 -0
  299. data/rdoc/RubyXL/Offset.html +106 -0
  300. data/rdoc/RubyXL/OutlineProperties.html +106 -0
  301. data/rdoc/RubyXL/PageMargins.html +106 -0
  302. data/rdoc/RubyXL/PageSetup.html +106 -0
  303. data/rdoc/RubyXL/PageSetupProperties.html +106 -0
  304. data/rdoc/RubyXL/Pane.html +106 -0
  305. data/rdoc/RubyXL/Parser.html +204 -0
  306. data/rdoc/RubyXL/PatternFill.html +106 -0
  307. data/rdoc/RubyXL/PhoneticProperties.html +106 -0
  308. data/rdoc/RubyXL/PhoneticRun.html +106 -0
  309. data/rdoc/RubyXL/PivotArea.html +106 -0
  310. data/rdoc/RubyXL/PivotCache.html +106 -0
  311. data/rdoc/RubyXL/PivotCacheDefinitionFile.html +133 -0
  312. data/rdoc/RubyXL/PivotCacheRecordsFile.html +122 -0
  313. data/rdoc/RubyXL/PivotCaches.html +106 -0
  314. data/rdoc/RubyXL/PivotReference.html +106 -0
  315. data/rdoc/RubyXL/PivotReferences.html +106 -0
  316. data/rdoc/RubyXL/PivotTableFile.html +133 -0
  317. data/rdoc/RubyXL/PivotTableSelection.html +106 -0
  318. data/rdoc/RubyXL/PresetGeometry.html +106 -0
  319. data/rdoc/RubyXL/PrintOptions.html +106 -0
  320. data/rdoc/RubyXL/PrinterSettingsFile.html +122 -0
  321. data/rdoc/RubyXL/ProtectedRange.html +106 -0
  322. data/rdoc/RubyXL/ProtectedRanges.html +106 -0
  323. data/rdoc/RubyXL/Protection.html +106 -0
  324. data/rdoc/RubyXL/RID.html +103 -0
  325. data/rdoc/RubyXL/RawOOXML.html +223 -0
  326. data/rdoc/RubyXL/Reference.html +640 -0
  327. data/rdoc/RubyXL/Relationship.html +103 -0
  328. data/rdoc/RubyXL/RelationshipSupport.html +419 -0
  329. data/rdoc/RubyXL/RelationshipSupport/ClassMehods.html +148 -0
  330. data/rdoc/RubyXL/RichText.html +159 -0
  331. data/rdoc/RubyXL/RichTextRun.html +157 -0
  332. data/rdoc/RubyXL/Row.html +439 -0
  333. data/rdoc/RubyXL/RowExt.html +106 -0
  334. data/rdoc/RubyXL/RunProperties.html +106 -0
  335. data/rdoc/RubyXL/Scenario.html +106 -0
  336. data/rdoc/RubyXL/Scenarios.html +106 -0
  337. data/rdoc/RubyXL/Selection.html +165 -0
  338. data/rdoc/RubyXL/ShapeGuide.html +106 -0
  339. data/rdoc/RubyXL/ShapeTextRectangle.html +106 -0
  340. data/rdoc/RubyXL/SharedStringsTable.html +424 -0
  341. data/rdoc/RubyXL/Sheet.html +106 -0
  342. data/rdoc/RubyXL/SheetCalculationProperties.html +106 -0
  343. data/rdoc/RubyXL/SheetData.html +192 -0
  344. data/rdoc/RubyXL/SheetDataExt.html +106 -0
  345. data/rdoc/RubyXL/SheetDataSet.html +106 -0
  346. data/rdoc/RubyXL/SheetName.html +106 -0
  347. data/rdoc/RubyXL/SheetNames.html +106 -0
  348. data/rdoc/RubyXL/Sheets.html +106 -0
  349. data/rdoc/RubyXL/SlicerCacheFile.html +122 -0
  350. data/rdoc/RubyXL/SlicerFile.html +122 -0
  351. data/rdoc/RubyXL/SmartTagProperties.html +106 -0
  352. data/rdoc/RubyXL/SmartTagType.html +106 -0
  353. data/rdoc/RubyXL/SmartTagTypes.html +106 -0
  354. data/rdoc/RubyXL/SmartTags.html +106 -0
  355. data/rdoc/RubyXL/SortCondition.html +106 -0
  356. data/rdoc/RubyXL/SortState.html +106 -0
  357. data/rdoc/RubyXL/Sqref.html +197 -0
  358. data/rdoc/RubyXL/Stop.html +106 -0
  359. data/rdoc/RubyXL/StringNode.html +103 -0
  360. data/rdoc/RubyXL/StringNodeW3C.html +197 -0
  361. data/rdoc/RubyXL/StringValue.html +103 -0
  362. data/rdoc/RubyXL/Stylesheet.html +354 -0
  363. data/rdoc/RubyXL/TableFile.html +122 -0
  364. data/rdoc/RubyXL/TableParts.html +103 -0
  365. data/rdoc/RubyXL/TableStyle.html +106 -0
  366. data/rdoc/RubyXL/TableStyles.html +106 -0
  367. data/rdoc/RubyXL/Text.html +216 -0
  368. data/rdoc/RubyXL/Theme.html +535 -0
  369. data/rdoc/RubyXL/ThemeElements.html +106 -0
  370. data/rdoc/RubyXL/ThumbnailFile.html +122 -0
  371. data/rdoc/RubyXL/Top10.html +106 -0
  372. data/rdoc/RubyXL/VMLDrawingFile.html +134 -0
  373. data/rdoc/RubyXL/Variant.html +106 -0
  374. data/rdoc/RubyXL/Vector.html +161 -0
  375. data/rdoc/RubyXL/VectorValue.html +103 -0
  376. data/rdoc/RubyXL/VisualProperties.html +106 -0
  377. data/rdoc/RubyXL/WebPublishObject.html +106 -0
  378. data/rdoc/RubyXL/WebPublishObjects.html +106 -0
  379. data/rdoc/RubyXL/WebPublishingItem.html +106 -0
  380. data/rdoc/RubyXL/WebPublishingItems.html +106 -0
  381. data/rdoc/RubyXL/WebPublishingProperties.html +106 -0
  382. data/rdoc/RubyXL/Workbook.html +633 -0
  383. data/rdoc/RubyXL/WorkbookConvenienceMethods.html +1321 -0
  384. data/rdoc/RubyXL/WorkbookProperties.html +106 -0
  385. data/rdoc/RubyXL/WorkbookProtection.html +106 -0
  386. data/rdoc/RubyXL/WorkbookRoot.html +402 -0
  387. data/rdoc/RubyXL/WorkbookView.html +106 -0
  388. data/rdoc/RubyXL/WorkbookViews.html +106 -0
  389. data/rdoc/RubyXL/Worksheet.html +433 -0
  390. data/rdoc/RubyXL/WorksheetConvenienceMethods.html +2861 -0
  391. data/rdoc/RubyXL/WorksheetDimensions.html +106 -0
  392. data/rdoc/RubyXL/WorksheetFormatProperties.html +103 -0
  393. data/rdoc/RubyXL/WorksheetProperties.html +106 -0
  394. data/rdoc/RubyXL/WorksheetProtection.html +106 -0
  395. data/rdoc/RubyXL/WorksheetView.html +106 -0
  396. data/rdoc/RubyXL/WorksheetViews.html +106 -0
  397. data/rdoc/RubyXL/XF.html +106 -0
  398. data/rdoc/created.rid +38 -0
  399. data/rdoc/css/fonts.css +167 -0
  400. data/rdoc/css/rdoc.css +590 -0
  401. data/rdoc/fonts/Lato-Light.ttf +0 -0
  402. data/rdoc/fonts/Lato-LightItalic.ttf +0 -0
  403. data/rdoc/fonts/Lato-Regular.ttf +0 -0
  404. data/rdoc/fonts/Lato-RegularItalic.ttf +0 -0
  405. data/rdoc/fonts/SourceCodePro-Bold.ttf +0 -0
  406. data/rdoc/fonts/SourceCodePro-Regular.ttf +0 -0
  407. data/rdoc/images/add.png +0 -0
  408. data/rdoc/images/arrow_up.png +0 -0
  409. data/rdoc/images/brick.png +0 -0
  410. data/rdoc/images/brick_link.png +0 -0
  411. data/rdoc/images/bug.png +0 -0
  412. data/rdoc/images/bullet_black.png +0 -0
  413. data/rdoc/images/bullet_toggle_minus.png +0 -0
  414. data/rdoc/images/bullet_toggle_plus.png +0 -0
  415. data/rdoc/images/date.png +0 -0
  416. data/rdoc/images/delete.png +0 -0
  417. data/rdoc/images/find.png +0 -0
  418. data/rdoc/images/loadingAnimation.gif +0 -0
  419. data/rdoc/images/macFFBgHack.png +0 -0
  420. data/rdoc/images/package.png +0 -0
  421. data/rdoc/images/page_green.png +0 -0
  422. data/rdoc/images/page_white_text.png +0 -0
  423. data/rdoc/images/page_white_width.png +0 -0
  424. data/rdoc/images/plugin.png +0 -0
  425. data/rdoc/images/ruby.png +0 -0
  426. data/rdoc/images/tag_blue.png +0 -0
  427. data/rdoc/images/tag_green.png +0 -0
  428. data/rdoc/images/transparent.png +0 -0
  429. data/rdoc/images/wrench.png +0 -0
  430. data/rdoc/images/wrench_orange.png +0 -0
  431. data/rdoc/images/zoom.png +0 -0
  432. data/rdoc/index.html +796 -0
  433. data/rdoc/js/darkfish.js +161 -0
  434. data/rdoc/js/jquery.js +4 -0
  435. data/rdoc/js/navigation.js +142 -0
  436. data/rdoc/js/navigation.js.gz +0 -0
  437. data/rdoc/js/search.js +109 -0
  438. data/rdoc/js/search_index.js +1 -0
  439. data/rdoc/js/search_index.js.gz +0 -0
  440. data/rdoc/js/searcher.js +229 -0
  441. data/rdoc/js/searcher.js.gz +0 -0
  442. data/rdoc/table_of_contents.html +2758 -0
  443. data/rubyXL.gemspec +516 -0
  444. data/spec/lib/cell_spec.rb +515 -0
  445. data/spec/lib/color_spec.rb +13 -0
  446. data/spec/lib/parser_spec.rb +118 -0
  447. data/spec/lib/reference_spec.rb +28 -0
  448. data/spec/lib/stylesheet_spec.rb +28 -0
  449. data/spec/lib/text_spec.rb +29 -0
  450. data/spec/lib/workbook_spec.rb +174 -0
  451. data/spec/lib/worksheet_spec.rb +1363 -0
  452. data/spec/spec_helper.rb +11 -0
  453. data/test/input/.gitkeep +0 -0
  454. data/test/output/.gitkeep +0 -0
  455. data/test/test_parse_write.rb +15 -0
  456. data/tmp/.gitignore +1 -0
  457. metadata +615 -0
@@ -0,0 +1,464 @@
1
+ #require 'tmpdir'
2
+ require 'date'
3
+ require 'rubyXL/objects/ooxml_object'
4
+ require 'rubyXL/objects/shared_strings'
5
+ require 'rubyXL/objects/stylesheet'
6
+ require 'rubyXL/objects/theme'
7
+ require 'rubyXL/objects/calculation_chain'
8
+ require 'rubyXL/objects/worksheet'
9
+ require 'rubyXL/objects/chartsheet'
10
+ require 'rubyXL/objects/relationships'
11
+ require 'rubyXL/objects/simple_types'
12
+ require 'rubyXL/objects/extensions'
13
+ require 'rubyXL/objects/external_links'
14
+ require 'rubyXL/convenience_methods'
15
+
16
+ module RubyXL
17
+
18
+ # Eventually, the entire code for Workbook will be moved here.
19
+
20
+ # http://www.datypic.com/sc/ooxml/e-ssml_fileVersion-1.html
21
+ class FileVersion < OOXMLObject
22
+ define_attribute(:appName, :string)
23
+ define_attribute(:lastEdited, :string)
24
+ define_attribute(:lowestEdited, :string)
25
+ define_attribute(:rupBuild, :string)
26
+ define_attribute(:codeName, :string)
27
+ define_element_name 'fileVersion'
28
+ end
29
+
30
+ # http://www.datypic.com/sc/ooxml/e-ssml_fileSharing-1.html
31
+ class FileSharing < OOXMLObject
32
+ define_attribute(:readOnlyRecommended, :bool, :default => false)
33
+ define_attribute(:userName, :string)
34
+ define_attribute(:reservationPassword, RubyXL::ST_UnsignedShortHex)
35
+ define_element_name 'fileSharing'
36
+ end
37
+
38
+ # http://www.datypic.com/sc/ooxml/e-ssml_workbookPr-1.html
39
+ class WorkbookProperties < OOXMLObject
40
+ define_attribute(:date1904, :bool, :default => false)
41
+ define_attribute(:showObjects, RubyXL::ST_Objects, :default => 'all')
42
+ define_attribute(:showBorderUnselectedTables, :bool, :default => true)
43
+ define_attribute(:filterPrivacy, :bool, :default => false)
44
+ define_attribute(:promptedSolutions, :bool, :default => false)
45
+ define_attribute(:showInkAnnotation, :bool, :default => true)
46
+ define_attribute(:backupFile, :bool, :default => false)
47
+ define_attribute(:saveExternalLinkValues, :bool, :default => true)
48
+ define_attribute(:updateLinks, RubyXL::ST_UpdateLinks, :default => 'userSet')
49
+ define_attribute(:hidePivotFieldList, :bool, :default => false)
50
+ define_attribute(:showPivotChartFilter, :bool, :default => false)
51
+ define_attribute(:allowRefreshQuery, :bool, :default => false)
52
+ define_attribute(:publishItems, :bool, :default => false)
53
+ define_attribute(:checkCompatibility, :bool, :default => false)
54
+ define_attribute(:autoCompressPictures, :bool, :default => true)
55
+ define_attribute(:refreshAllConnections, :bool, :default => false)
56
+ define_attribute(:defaultThemeVersion, :int)
57
+ define_attribute(:codeName, :string)
58
+ define_element_name 'workbookPr'
59
+ end
60
+
61
+ # http://www.datypic.com/sc/ooxml/e-ssml_workbookProtection-1.html
62
+ class WorkbookProtection < OOXMLObject
63
+ define_attribute(:workbookPassword, RubyXL::ST_UnsignedShortHex)
64
+ define_attribute(:revisionsPassword, RubyXL::ST_UnsignedShortHex)
65
+ define_attribute(:lockStructure, :bool, :default => false)
66
+ define_attribute(:lockWindows, :bool, :default => false)
67
+ define_attribute(:lockRevision, :bool, :default => false)
68
+ define_element_name 'workbookProtection'
69
+ end
70
+
71
+ # http://www.datypic.com/sc/ooxml/e-ssml_workbookView-1.html
72
+ class WorkbookView < OOXMLObject
73
+ define_attribute(:visibility, RubyXL::ST_Visibility, :default => 'visible')
74
+ define_attribute(:minimized, :bool, :default => false)
75
+ define_attribute(:showHorizontalScroll, :bool, :default => true)
76
+ define_attribute(:showVerticalScroll, :bool, :default => true)
77
+ define_attribute(:showSheetTabs, :bool, :default => true)
78
+ define_attribute(:xWindow, :int)
79
+ define_attribute(:yWindow, :int)
80
+ define_attribute(:windowWidth, :int)
81
+ define_attribute(:windowHeight, :int)
82
+ define_attribute(:tabRatio, :int, :default => 600)
83
+ define_attribute(:firstSheet, :int, :default => 0)
84
+ define_attribute(:activeTab, :int, :default => 0)
85
+ define_attribute(:autoFilterDateGrouping, :bool, :default => true)
86
+ define_child_node(RubyXL::ExtensionStorageArea)
87
+ define_element_name 'workbookView'
88
+ end
89
+
90
+ # http://www.datypic.com/sc/ooxml/e-ssml_bookViews-1.html
91
+ class WorkbookViews < OOXMLContainerObject
92
+ define_child_node(RubyXL::WorkbookView, :collection => true)
93
+ define_element_name 'bookViews'
94
+ end
95
+
96
+ # http://www.datypic.com/sc/ooxml/e-ssml_sheet-1.html
97
+ class Sheet < OOXMLObject
98
+ define_attribute(:name, :string, :required => true)
99
+ define_attribute(:sheetId, :int, :required => true)
100
+ define_attribute(:state, RubyXL::ST_Visibility, :default => 'visible')
101
+ define_attribute(:'r:id', :string, :required => true)
102
+ define_element_name 'sheet'
103
+ end
104
+
105
+ # http://www.datypic.com/sc/ooxml/e-ssml_sheets-1.html
106
+ class Sheets < OOXMLContainerObject
107
+ define_child_node(RubyXL::Sheet, :collection => true)
108
+ define_element_name 'sheets'
109
+ end
110
+
111
+ # http://www.datypic.com/sc/ooxml/e-ssml_externalReference-1.html
112
+ class ExternalReference < OOXMLObject
113
+ define_attribute(:'r:id', :string, :required => true)
114
+ define_element_name 'externalReference'
115
+ end
116
+
117
+ # http://www.datypic.com/sc/ooxml/e-ssml_externalReferences-1.html
118
+ class ExternalReferences < OOXMLContainerObject
119
+ define_child_node(RubyXL::ExternalReference, :collection => true)
120
+ define_element_name 'externalReferences'
121
+ end
122
+
123
+ # http://www.datypic.com/sc/ooxml/e-ssml_definedName-2.html
124
+ class DefinedName < OOXMLObject
125
+ define_attribute(:name, :string, :required => true)
126
+ define_attribute(:comment, :string)
127
+ define_attribute(:customMenu, :string)
128
+ define_attribute(:description, :string)
129
+ define_attribute(:help, :string)
130
+ define_attribute(:statusBar, :string)
131
+ define_attribute(:localSheetId, :string)
132
+
133
+ define_attribute(:hidden, :bool, :default => false)
134
+ define_attribute(:function, :bool, :default => false)
135
+ define_attribute(:vbProcedure, :bool, :default => false)
136
+ define_attribute(:xlm, :bool, :default => false)
137
+
138
+ define_attribute(:functionGroupId, :int)
139
+ define_attribute(:shortcutKey, :string)
140
+ define_attribute(:publishToServer, :bool, :default => false)
141
+ define_attribute(:workbookParameter, :bool, :default => false)
142
+
143
+ define_attribute(:_, :string, :accessor => :reference)
144
+ define_element_name 'definedName'
145
+ end
146
+
147
+ # http://www.datypic.com/sc/ooxml/e-ssml_definedName-2.html
148
+ class DefinedNames < OOXMLContainerObject
149
+ define_child_node(RubyXL::DefinedName, :collection => true)
150
+ define_element_name 'definedNames'
151
+ end
152
+
153
+ # http://www.datypic.com/sc/ooxml/e-ssml_pivotCache-1.html
154
+ class PivotCache < OOXMLObject
155
+ define_attribute(:cacheId, :int, :required => true)
156
+ define_attribute(:'r:id', :string, :required => true)
157
+ define_element_name 'pivotCache'
158
+ end
159
+
160
+ # http://www.datypic.com/sc/ooxml/e-ssml_pivotCaches-1.html
161
+ class PivotCaches < OOXMLContainerObject
162
+ define_child_node(RubyXL::PivotCache, :collection => true)
163
+ define_element_name 'pivotCaches'
164
+ end
165
+
166
+ # http://www.datypic.com/sc/ooxml/e-ssml_oleSize-1.html
167
+ class OLESize < OOXMLObject
168
+ define_attribute(:ref, :ref, :required => true)
169
+ define_element_name 'oleSize'
170
+ end
171
+
172
+ # http://www.datypic.com/sc/ooxml/e-ssml_fileRecoveryPr-1.html
173
+ class FileRecoveryProperties < OOXMLObject
174
+ define_attribute(:autoRecover, :bool, :default => true)
175
+ define_attribute(:crashSave, :bool, :default => false)
176
+ define_attribute(:dataExtractLoad, :bool, :default => false)
177
+ define_attribute(:repairLoad, :bool, :default => false)
178
+ define_element_name 'fileRecoveryPr'
179
+ end
180
+
181
+ # http://www.datypic.com/sc/ooxml/e-ssml_webPublishing-1.html
182
+ class WebPublishingProperties < OOXMLObject
183
+ define_attribute(:css, :bool, :default => true)
184
+ define_attribute(:thicket, :bool, :default => true)
185
+ define_attribute(:longFileNames, :bool, :default => true)
186
+ define_attribute(:vml, :bool, :default => false)
187
+ define_attribute(:allowPng, :bool, :default => false)
188
+ define_attribute(:targetScreenSize, RubyXL::ST_TargetScreenSize, :default => '800x600')
189
+ define_attribute(:dpi, :int, :default => 96)
190
+ define_attribute(:codePage, :int)
191
+ define_element_name 'webPublishing'
192
+ end
193
+
194
+ # http://www.datypic.com/sc/ooxml/e-ssml_calcPr-1.html
195
+ class CalculationProperties < OOXMLObject
196
+ define_attribute(:calcId, :int)
197
+ define_attribute(:calcMode, RubyXL::ST_CalcMode, :default => 'auto')
198
+ define_attribute(:fullCalcOnLoad, :bool, :default => false)
199
+ define_attribute(:refMode, RubyXL::ST_RefMode, :default => 'A1')
200
+ define_attribute(:iterate, :bool, :default => false)
201
+ define_attribute(:iterateCount, :int, :default => 100)
202
+ define_attribute(:iterateDelta, :double, :default => 0.001)
203
+ define_attribute(:fullPrecision, :bool, :default => true)
204
+ define_attribute(:calcCompleted, :bool, :default => true)
205
+ define_attribute(:calcOnSave, :bool, :default => true)
206
+ define_attribute(:concurrentCalc, :bool, :default => true)
207
+ define_attribute(:concurrentManualCount, :int)
208
+ define_attribute(:forceFullCalc, :bool)
209
+ define_element_name 'calcPr'
210
+ end
211
+
212
+ # http://www.datypic.com/sc/ooxml/e-ssml_webPublishObject-1.html
213
+ class WebPublishObject < OOXMLObject
214
+ define_attribute(:id, :int, :required => true)
215
+ define_attribute(:divId, :string, :required => true)
216
+ define_attribute(:sourceObject, :string)
217
+ define_attribute(:destinationFile, :string, :required => true)
218
+ define_attribute(:title, :string)
219
+ define_attribute(:autoRepublish, :bool, :default => false)
220
+ define_element_name 'webPublishObject'
221
+ end
222
+
223
+ # http://www.datypic.com/sc/ooxml/e-ssml_webPublishObjects-1.html
224
+ class WebPublishObjects < OOXMLContainerObject
225
+ define_child_node(RubyXL::WebPublishObject, :collection => :with_count)
226
+ define_element_name 'webPublishObjects'
227
+ end
228
+
229
+ # http://www.datypic.com/sc/ooxml/e-ssml_smartTagPr-1.html
230
+ class SmartTagProperties < OOXMLObject
231
+ define_attribute(:embed, :bool, :default => false)
232
+ define_attribute(:show, RubyXL::ST_SmartTagShow, :default => 'all')
233
+ define_element_name 'smartTagPr'
234
+ end
235
+
236
+ # http://www.datypic.com/sc/ooxml/e-ssml_smartTagType-1.html
237
+ class SmartTagType < OOXMLObject
238
+ define_attribute(:namespaceUri, :string)
239
+ define_attribute(:name, :string)
240
+ define_attribute(:url, :string)
241
+ define_element_name 'smartTagType'
242
+ end
243
+
244
+ # http://www.datypic.com/sc/ooxml/e-ssml_smartTagTypes-1.html
245
+ class SmartTagTypes < OOXMLContainerObject
246
+ define_child_node(RubyXL::SmartTagType, :collection => true)
247
+ define_element_name 'smartTagTypes'
248
+ end
249
+
250
+ # http://www.datypic.com/sc/ooxml/e-ssml_functionGroup-1.html
251
+ class FunctionGroup < OOXMLObject
252
+ define_attribute(:name, :string)
253
+ define_element_name 'functionGroup'
254
+ end
255
+
256
+ # http://www.datypic.com/sc/ooxml/e-ssml_functionGroups-1.html
257
+ class FunctionGroups < OOXMLContainerObject
258
+ define_attribute(:builtInGroupCountpi, :int, :default => 16)
259
+ define_child_node(RubyXL::FunctionGroup, :collection => true)
260
+ define_element_name 'functionGroups'
261
+ end
262
+
263
+ # http://www.datypic.com/sc/ooxml/e-ssml_customWorkbookView-1.html
264
+ class CustomWorkbookView < OOXMLObject
265
+ define_attribute(:name, :string, :required => true)
266
+ define_attribute(:guid, :string, :required => true)
267
+ define_attribute(:autoUpdate, :bool, :default => false)
268
+ define_attribute(:mergeInterval, :int)
269
+ define_attribute(:changesSavedWin, :bool, :default => false)
270
+ define_attribute(:onlySync, :bool, :default => false)
271
+ define_attribute(:personalView, :bool, :default => false)
272
+ define_attribute(:includePrintSettings, :bool, :default => true)
273
+ define_attribute(:includeHiddenRowCol, :bool, :default => true)
274
+ define_attribute(:maximized, :bool, :default => false)
275
+ define_attribute(:minimized, :bool, :default => false)
276
+ define_attribute(:showHorizontalScroll, :bool, :default => true)
277
+ define_attribute(:showVerticalScroll, :bool, :default => true)
278
+ define_attribute(:showSheetTabs, :bool, :default => true)
279
+ define_attribute(:xWindow, :int, :default => 0)
280
+ define_attribute(:yWindow, :int, :default => 0)
281
+ define_attribute(:windowWidth, :int)
282
+ define_attribute(:windowHeight, :int)
283
+ define_attribute(:tabRatio, :int, :default => 600)
284
+ define_attribute(:activeSheetId, :int)
285
+ define_attribute(:showFormulaBar, :bool, :default => true)
286
+ define_attribute(:showStatusbar, :bool, :default => true)
287
+ define_attribute(:showComments, RubyXL::ST_Comments, :default => 'commIndicator')
288
+ define_attribute(:showObjects, RubyXL::ST_Objects, :default => 'all')
289
+ define_child_node(RubyXL::ExtensionStorageArea)
290
+ define_element_name 'customWorkbookView'
291
+ end
292
+
293
+ # http://www.datypic.com/sc/ooxml/e-ssml_customWorkbookViews-1.html
294
+ class CustomWorkbookViews < OOXMLContainerObject
295
+ define_child_node(RubyXL::CustomWorkbookView, :collection => true)
296
+ define_element_name 'customWorkbookViews'
297
+ end
298
+
299
+ # http://www.datypic.com/sc/ooxml/e-ssml_workbook.html
300
+ class Workbook < OOXMLTopLevelObject
301
+ CONTENT_TYPE = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml'
302
+ CONTENT_TYPE_WITH_MACROS = 'application/vnd.ms-excel.sheet.macroEnabled.main+xml'
303
+ REL_TYPE = 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument'
304
+
305
+ # http://www.accountingweb.com/technology/excel/seven-characters-you-cant-use-in-worksheet-names
306
+ SHEET_NAME_FORBIDDEN_CHARS = /[\/\\\*\[\]\:\?]/
307
+ #SHEET_NAME_FORBIDDEN_NAMES = [ 'History' ]
308
+
309
+ include RubyXL::RelationshipSupport
310
+
311
+ def content_type
312
+ if macros then CONTENT_TYPE_WITH_MACROS else CONTENT_TYPE end
313
+ end
314
+
315
+ def related_objects
316
+ [ calculation_chain, stylesheet, theme, shared_strings_container, macros ] + @worksheets
317
+ end
318
+
319
+ define_relationship(RubyXL::SharedStringsTable, :shared_strings_container)
320
+ define_relationship(RubyXL::Stylesheet, :stylesheet)
321
+ define_relationship(RubyXL::Theme, :theme)
322
+ define_relationship(RubyXL::CalculationChain, :calculation_chain)
323
+ define_relationship(RubyXL::Worksheet, false)
324
+ define_relationship(RubyXL::Chartsheet, false)
325
+ define_relationship(RubyXL::ExternalLinksFile)
326
+ define_relationship(RubyXL::PivotCacheDefinitionFile)
327
+ define_relationship(RubyXL::PivotCacheRecordsFile)
328
+ define_relationship(RubyXL::CustomXMLFile)
329
+ define_relationship(RubyXL::MacrosFile, :macros)
330
+ define_relationship(RubyXL::SlicerCacheFile)
331
+
332
+ define_child_node(RubyXL::FileVersion)
333
+ define_child_node(RubyXL::FileSharing)
334
+ define_child_node(RubyXL::WorkbookProperties, :accessor => :workbook_properties)
335
+ define_child_node(RubyXL::AlternateContent) # Somehow, order matters here
336
+ define_child_node(RubyXL::RevisionPtr)
337
+ define_child_node(RubyXL::WorkbookProtection)
338
+ define_child_node(RubyXL::WorkbookViews)
339
+ define_child_node(RubyXL::Sheets)
340
+ define_child_node(RubyXL::FunctionGroups)
341
+ define_child_node(RubyXL::ExternalReferences)
342
+ define_child_node(RubyXL::DefinedNames)
343
+ define_child_node(RubyXL::CalculationProperties)
344
+ define_child_node(RubyXL::OLESize)
345
+ define_child_node(RubyXL::CustomWorkbookViews)
346
+ define_child_node(RubyXL::PivotCaches)
347
+ define_child_node(RubyXL::SmartTagProperties)
348
+ define_child_node(RubyXL::SmartTagTypes)
349
+ define_child_node(RubyXL::WebPublishingProperties)
350
+ define_child_node(RubyXL::FileRecoveryProperties)
351
+ define_child_node(RubyXL::WebPublishObjects)
352
+ define_child_node(RubyXL::ExtensionStorageArea)
353
+
354
+ define_element_name 'workbook'
355
+ set_namespaces('http://schemas.openxmlformats.org/spreadsheetml/2006/main' => nil,
356
+ 'http://schemas.openxmlformats.org/officeDocument/2006/relationships' => 'r',
357
+ 'http://schemas.openxmlformats.org/markup-compatibility/2006' => 'mc',
358
+ 'http://schemas.microsoft.com/office/spreadsheetml/2010/11/main' => 'x15')
359
+
360
+ attr_accessor :worksheets
361
+
362
+ def before_write_xml
363
+ max_sheet_id = worksheets.collect(&:sheet_id).compact.max || 0
364
+
365
+ self.sheets = RubyXL::Sheets.new
366
+
367
+ worksheets.each { |sheet, i|
368
+ rel = relationship_container.find_by_target(sheet.xlsx_path)
369
+
370
+ raise "Worksheet name '#{sheet.sheet_name}' contains forbidden characters" if sheet.sheet_name =~ SHEET_NAME_FORBIDDEN_CHARS
371
+
372
+ sheets << RubyXL::Sheet.new(:name => sheet.sheet_name[0..30], # Max sheet name length is 31 char
373
+ :sheet_id => sheet.sheet_id || (max_sheet_id += 1),
374
+ :state => sheet.state,
375
+ :r_id => rel.id)
376
+ }
377
+
378
+ true
379
+ end
380
+
381
+ def xlsx_path
382
+ ROOT.join('xl', 'workbook.xml')
383
+ end
384
+
385
+ # Return the resulting XLSX file in a stream (useful for sending over HTTP)
386
+ def stream
387
+ root.stream
388
+ end
389
+
390
+ # Save the resulting XLSX file to the specified location
391
+ def save(dst_file_path = nil)
392
+ dst_file_path ||= root.source_file_path
393
+
394
+ extension = File.extname(dst_file_path)
395
+ unless %w{.xlsx .xlsm}.include?(extension.downcase)
396
+ raise "Unsupported extension: #{extension} (only .xlsx and .xlsm files are supported)."
397
+ end
398
+
399
+ File.open(dst_file_path, "wb") { |output_file| FileUtils.copy_stream(root.stream, output_file) }
400
+
401
+ return dst_file_path
402
+ end
403
+ alias_method :write, :save
404
+
405
+ DATE1904 = DateTime.new(1904, 1, 1)
406
+ # Subtracting one day to accomodate for erroneous 1900 leap year compatibility only for 1900 based dates
407
+ DATE1899 = DateTime.new(1899, 12, 31) - 1
408
+ MARCH_1_1900 = 61
409
+
410
+ def base_date
411
+ (workbook_properties && workbook_properties.date1904) ? DATE1904 : DATE1899
412
+ end
413
+ private :base_date
414
+
415
+ def date_to_num(date)
416
+ date && (date.ajd - base_date().ajd).to_f
417
+ end
418
+
419
+ def num_to_date(num)
420
+ # Bug-for-bug Excel compatibility (https://support.microsoft.com/kb/214058/)
421
+ if num && num < MARCH_1_1900 then
422
+ num += 1 unless workbook_properties && workbook_properties.date1904
423
+ end
424
+
425
+ num && (base_date + num)
426
+ end
427
+
428
+ include Enumerable
429
+
430
+ APPLICATION = 'Microsoft Macintosh Excel'
431
+ APPVERSION = '12.0000'
432
+
433
+ def initialize(worksheets = [], src_file_path = nil, creator = nil, modifier = nil, created_at = nil,
434
+ company = '', application = APPLICATION, appversion = APPVERSION, date1904 = 0)
435
+ super()
436
+
437
+ # Order of sheets in the +worksheets+ array corresponds to the order of pages in Excel UI.
438
+ # SheetId's, rId's, etc. are completely unrelated to ordering.
439
+ @worksheets = worksheets
440
+ add_worksheet if @worksheets.empty?
441
+
442
+ @theme = RubyXL::Theme.default
443
+ @shared_strings_container = RubyXL::SharedStringsTable.new
444
+ @stylesheet = RubyXL::Stylesheet.default
445
+ @relationship_container = RubyXL::OOXMLRelationshipsFile.new
446
+ @root = RubyXL::WorkbookRoot.default
447
+ @root.workbook = self
448
+ @root.source_file_path = src_file_path
449
+
450
+ creation_time = DateTime.parse(created_at) rescue DateTime.now
451
+ self.created_at = creation_time
452
+ self.modified_at = creation_time
453
+ self.company = company
454
+ self.application = application
455
+ self.appversion = appversion
456
+ self.creator = creator
457
+ self.modifier = modifier
458
+ self.date1904 = date1904 > 0
459
+ end
460
+
461
+ include WorkbookConvenienceMethods
462
+ end
463
+
464
+ end