prawn 0.15.0 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (269) hide show
  1. data/COPYING +2 -2
  2. data/LICENSE +1 -1
  3. data/README.md +96 -0
  4. data/Rakefile +27 -30
  5. data/data/fonts/Action Man.dfont +0 -0
  6. data/data/fonts/Activa.ttf +0 -0
  7. data/data/fonts/Chalkboard.ttf +0 -0
  8. data/data/fonts/DejaVuSans.ttf +0 -0
  9. data/data/fonts/Dustismo_Roman.ttf +0 -0
  10. data/data/fonts/comicsans.ttf +0 -0
  11. data/data/fonts/gkai00mp.ttf +0 -0
  12. data/data/images/16bit.alpha +0 -0
  13. data/data/images/16bit.dat +0 -0
  14. data/data/images/dice.alpha +0 -0
  15. data/data/images/dice.dat +0 -0
  16. data/data/images/page_white_text.alpha +0 -0
  17. data/data/images/page_white_text.dat +0 -0
  18. data/data/images/rails.dat +0 -0
  19. data/data/images/rails.png +0 -0
  20. data/data/pdfs/nested_pages.pdf +13 -13
  21. data/lib/prawn.rb +21 -85
  22. data/lib/prawn/compatibility.rb +51 -0
  23. data/lib/prawn/core.rb +85 -0
  24. data/lib/prawn/core/annotations.rb +61 -0
  25. data/lib/prawn/core/byte_string.rb +9 -0
  26. data/lib/prawn/core/destinations.rb +90 -0
  27. data/lib/prawn/core/document_state.rb +78 -0
  28. data/lib/prawn/core/literal_string.rb +16 -0
  29. data/lib/prawn/core/name_tree.rb +177 -0
  30. data/lib/prawn/core/object_store.rb +264 -0
  31. data/lib/prawn/core/page.rb +215 -0
  32. data/lib/prawn/core/pdf_object.rb +108 -0
  33. data/lib/prawn/core/reference.rb +115 -0
  34. data/lib/prawn/core/text.rb +268 -0
  35. data/lib/prawn/core/text/formatted/arranger.rb +294 -0
  36. data/lib/prawn/core/text/formatted/line_wrap.rb +273 -0
  37. data/lib/prawn/core/text/formatted/wrap.rb +153 -0
  38. data/lib/prawn/document.rb +122 -155
  39. data/lib/prawn/document/bounding_box.rb +7 -36
  40. data/lib/prawn/document/column_box.rb +10 -38
  41. data/lib/prawn/document/graphics_state.rb +74 -11
  42. data/lib/prawn/document/internals.rb +23 -24
  43. data/lib/prawn/document/page_geometry.rb +136 -0
  44. data/lib/prawn/document/snapshot.rb +6 -7
  45. data/lib/prawn/document/span.rb +10 -12
  46. data/lib/prawn/encoding.rb +10 -9
  47. data/lib/prawn/errors.rb +30 -15
  48. data/lib/prawn/font.rb +104 -136
  49. data/lib/prawn/font/afm.rb +44 -46
  50. data/lib/prawn/font/dfont.rb +3 -4
  51. data/lib/prawn/font/ttf.rb +50 -31
  52. data/lib/prawn/graphics.rb +57 -302
  53. data/lib/prawn/graphics/cap_style.rb +3 -4
  54. data/lib/prawn/graphics/color.rb +5 -13
  55. data/lib/prawn/graphics/dash.rb +31 -53
  56. data/lib/prawn/graphics/gradient.rb +84 -0
  57. data/lib/prawn/graphics/join_style.rb +7 -9
  58. data/lib/prawn/graphics/transformation.rb +9 -10
  59. data/lib/prawn/graphics/transparency.rb +1 -3
  60. data/lib/prawn/images.rb +59 -69
  61. data/lib/prawn/images/image.rb +22 -6
  62. data/lib/prawn/images/jpg.rb +14 -20
  63. data/lib/prawn/images/png.rb +118 -61
  64. data/lib/prawn/layout.rb +15 -10
  65. data/lib/prawn/layout/grid.rb +54 -66
  66. data/lib/prawn/measurement_extensions.rb +6 -10
  67. data/lib/prawn/measurements.rb +21 -27
  68. data/lib/prawn/outline.rb +308 -6
  69. data/lib/prawn/repeater.rb +8 -10
  70. data/lib/prawn/security.rb +33 -55
  71. data/lib/prawn/security/arcfour.rb +0 -1
  72. data/lib/prawn/stamp.rb +3 -5
  73. data/lib/prawn/table.rb +60 -188
  74. data/lib/prawn/table/cell.rb +44 -272
  75. data/lib/prawn/table/cell/image.rb +3 -2
  76. data/lib/prawn/table/cell/in_table.rb +2 -4
  77. data/lib/prawn/table/cell/subtable.rb +2 -2
  78. data/lib/prawn/table/cell/text.rb +18 -41
  79. data/lib/prawn/table/cells.rb +48 -142
  80. data/lib/prawn/text.rb +25 -32
  81. data/lib/prawn/text/box.rb +6 -12
  82. data/lib/prawn/text/formatted.rb +4 -5
  83. data/lib/prawn/text/formatted/box.rb +59 -96
  84. data/lib/prawn/text/formatted/fragment.rb +23 -34
  85. data/lib/prawn/text/formatted/parser.rb +5 -15
  86. data/prawn.gemspec +13 -24
  87. data/spec/annotations_spec.rb +32 -16
  88. data/spec/bounding_box_spec.rb +17 -119
  89. data/spec/cell_spec.rb +42 -112
  90. data/spec/destinations_spec.rb +5 -5
  91. data/spec/document_spec.rb +111 -155
  92. data/spec/extensions/mocha.rb +0 -1
  93. data/spec/font_spec.rb +99 -149
  94. data/spec/formatted_text_arranger_spec.rb +43 -43
  95. data/spec/formatted_text_box_spec.rb +44 -43
  96. data/spec/formatted_text_fragment_spec.rb +8 -8
  97. data/spec/graphics_spec.rb +68 -151
  98. data/spec/grid_spec.rb +15 -26
  99. data/spec/images_spec.rb +30 -51
  100. data/spec/inline_formatted_text_parser_spec.rb +20 -69
  101. data/spec/jpg_spec.rb +4 -4
  102. data/spec/line_wrap_spec.rb +28 -28
  103. data/spec/measurement_units_spec.rb +6 -6
  104. data/spec/name_tree_spec.rb +112 -0
  105. data/spec/object_store_spec.rb +106 -17
  106. data/spec/outline_spec.rb +63 -103
  107. data/spec/pdf_object_spec.rb +170 -0
  108. data/spec/png_spec.rb +25 -25
  109. data/spec/reference_spec.rb +65 -8
  110. data/spec/repeater_spec.rb +10 -10
  111. data/spec/security_spec.rb +12 -44
  112. data/spec/snapshot_spec.rb +7 -7
  113. data/spec/span_spec.rb +15 -10
  114. data/spec/spec_helper.rb +8 -32
  115. data/spec/stamp_spec.rb +30 -29
  116. data/spec/stroke_styles_spec.rb +18 -36
  117. data/spec/table_spec.rb +111 -706
  118. data/spec/template_spec.rb +297 -0
  119. data/spec/text_at_spec.rb +33 -19
  120. data/spec/text_box_spec.rb +64 -100
  121. data/spec/text_rendering_mode_spec.rb +5 -5
  122. data/spec/text_spacing_spec.rb +4 -4
  123. data/spec/text_spec.rb +64 -84
  124. data/spec/transparency_spec.rb +5 -5
  125. metadata +290 -463
  126. checksums.yaml +0 -7
  127. data/.yardopts +0 -10
  128. data/Gemfile +0 -11
  129. data/data/images/16bit.color +0 -0
  130. data/data/images/dice.color +0 -0
  131. data/data/images/indexed_color.dat +0 -0
  132. data/data/images/indexed_color.png +0 -0
  133. data/data/images/page_white_text.color +0 -0
  134. data/lib/prawn/font_metric_cache.rb +0 -47
  135. data/lib/prawn/graphics/patterns.rb +0 -138
  136. data/lib/prawn/image_handler.rb +0 -36
  137. data/lib/prawn/soft_mask.rb +0 -96
  138. data/lib/prawn/table/cell/span_dummy.rb +0 -93
  139. data/lib/prawn/table/column_width_calculator.rb +0 -61
  140. data/lib/prawn/text/formatted/arranger.rb +0 -290
  141. data/lib/prawn/text/formatted/line_wrap.rb +0 -266
  142. data/lib/prawn/text/formatted/wrap.rb +0 -150
  143. data/lib/prawn/utilities.rb +0 -46
  144. data/manual/basic_concepts/adding_pages.rb +0 -27
  145. data/manual/basic_concepts/basic_concepts.rb +0 -34
  146. data/manual/basic_concepts/creation.rb +0 -39
  147. data/manual/basic_concepts/cursor.rb +0 -33
  148. data/manual/basic_concepts/measurement.rb +0 -25
  149. data/manual/basic_concepts/origin.rb +0 -38
  150. data/manual/basic_concepts/other_cursor_helpers.rb +0 -40
  151. data/manual/bounding_box/bounding_box.rb +0 -39
  152. data/manual/bounding_box/bounds.rb +0 -49
  153. data/manual/bounding_box/canvas.rb +0 -24
  154. data/manual/bounding_box/creation.rb +0 -23
  155. data/manual/bounding_box/indentation.rb +0 -46
  156. data/manual/bounding_box/nesting.rb +0 -45
  157. data/manual/bounding_box/russian_boxes.rb +0 -40
  158. data/manual/bounding_box/stretchy.rb +0 -31
  159. data/manual/document_and_page_options/background.rb +0 -27
  160. data/manual/document_and_page_options/document_and_page_options.rb +0 -32
  161. data/manual/document_and_page_options/metadata.rb +0 -23
  162. data/manual/document_and_page_options/page_margins.rb +0 -38
  163. data/manual/document_and_page_options/page_size.rb +0 -34
  164. data/manual/document_and_page_options/print_scaling.rb +0 -20
  165. data/manual/example_file.rb +0 -111
  166. data/manual/example_helper.rb +0 -411
  167. data/manual/example_package.rb +0 -53
  168. data/manual/example_section.rb +0 -46
  169. data/manual/graphics/circle_and_ellipse.rb +0 -22
  170. data/manual/graphics/color.rb +0 -24
  171. data/manual/graphics/common_lines.rb +0 -30
  172. data/manual/graphics/fill_and_stroke.rb +0 -42
  173. data/manual/graphics/fill_rules.rb +0 -37
  174. data/manual/graphics/gradients.rb +0 -37
  175. data/manual/graphics/graphics.rb +0 -58
  176. data/manual/graphics/helper.rb +0 -24
  177. data/manual/graphics/line_width.rb +0 -35
  178. data/manual/graphics/lines_and_curves.rb +0 -41
  179. data/manual/graphics/polygon.rb +0 -29
  180. data/manual/graphics/rectangle.rb +0 -21
  181. data/manual/graphics/rotate.rb +0 -28
  182. data/manual/graphics/scale.rb +0 -41
  183. data/manual/graphics/soft_masks.rb +0 -46
  184. data/manual/graphics/stroke_cap.rb +0 -31
  185. data/manual/graphics/stroke_dash.rb +0 -48
  186. data/manual/graphics/stroke_join.rb +0 -30
  187. data/manual/graphics/translate.rb +0 -29
  188. data/manual/graphics/transparency.rb +0 -35
  189. data/manual/images/absolute_position.rb +0 -23
  190. data/manual/images/fit.rb +0 -21
  191. data/manual/images/horizontal.rb +0 -25
  192. data/manual/images/images.rb +0 -40
  193. data/manual/images/plain_image.rb +0 -18
  194. data/manual/images/scale.rb +0 -22
  195. data/manual/images/vertical.rb +0 -28
  196. data/manual/images/width_and_height.rb +0 -25
  197. data/manual/layout/boxes.rb +0 -27
  198. data/manual/layout/content.rb +0 -25
  199. data/manual/layout/layout.rb +0 -28
  200. data/manual/layout/simple_grid.rb +0 -23
  201. data/manual/manual/cover.rb +0 -36
  202. data/manual/manual/foreword.rb +0 -85
  203. data/manual/manual/how_to_read_this_manual.rb +0 -41
  204. data/manual/manual/manual.rb +0 -34
  205. data/manual/outline/add_subsection_to.rb +0 -61
  206. data/manual/outline/insert_section_after.rb +0 -47
  207. data/manual/outline/outline.rb +0 -32
  208. data/manual/outline/sections_and_pages.rb +0 -67
  209. data/manual/repeatable_content/page_numbering.rb +0 -54
  210. data/manual/repeatable_content/repeatable_content.rb +0 -31
  211. data/manual/repeatable_content/repeater.rb +0 -55
  212. data/manual/repeatable_content/stamp.rb +0 -41
  213. data/manual/security/encryption.rb +0 -31
  214. data/manual/security/permissions.rb +0 -38
  215. data/manual/security/security.rb +0 -28
  216. data/manual/syntax_highlight.rb +0 -52
  217. data/manual/table/basic_block.rb +0 -53
  218. data/manual/table/before_rendering_page.rb +0 -26
  219. data/manual/table/cell_border_lines.rb +0 -24
  220. data/manual/table/cell_borders_and_bg.rb +0 -31
  221. data/manual/table/cell_dimensions.rb +0 -30
  222. data/manual/table/cell_text.rb +0 -38
  223. data/manual/table/column_widths.rb +0 -30
  224. data/manual/table/content_and_subtables.rb +0 -39
  225. data/manual/table/creation.rb +0 -27
  226. data/manual/table/filtering.rb +0 -36
  227. data/manual/table/flow_and_header.rb +0 -17
  228. data/manual/table/image_cells.rb +0 -33
  229. data/manual/table/position.rb +0 -29
  230. data/manual/table/row_colors.rb +0 -20
  231. data/manual/table/span.rb +0 -30
  232. data/manual/table/style.rb +0 -22
  233. data/manual/table/table.rb +0 -52
  234. data/manual/table/width.rb +0 -27
  235. data/manual/text/alignment.rb +0 -44
  236. data/manual/text/color.rb +0 -24
  237. data/manual/text/column_box.rb +0 -32
  238. data/manual/text/fallback_fonts.rb +0 -37
  239. data/manual/text/font.rb +0 -41
  240. data/manual/text/font_size.rb +0 -45
  241. data/manual/text/font_style.rb +0 -23
  242. data/manual/text/formatted_callbacks.rb +0 -60
  243. data/manual/text/formatted_text.rb +0 -54
  244. data/manual/text/free_flowing_text.rb +0 -51
  245. data/manual/text/group.rb +0 -31
  246. data/manual/text/inline.rb +0 -43
  247. data/manual/text/kerning_and_character_spacing.rb +0 -39
  248. data/manual/text/leading.rb +0 -25
  249. data/manual/text/line_wrapping.rb +0 -41
  250. data/manual/text/paragraph_indentation.rb +0 -26
  251. data/manual/text/positioned_text.rb +0 -38
  252. data/manual/text/registering_families.rb +0 -48
  253. data/manual/text/rendering_and_color.rb +0 -37
  254. data/manual/text/right_to_left_text.rb +0 -43
  255. data/manual/text/rotation.rb +0 -43
  256. data/manual/text/single_usage.rb +0 -37
  257. data/manual/text/text.rb +0 -75
  258. data/manual/text/text_box_excess.rb +0 -32
  259. data/manual/text/text_box_extensions.rb +0 -45
  260. data/manual/text/text_box_overflow.rb +0 -44
  261. data/manual/text/utf8.rb +0 -28
  262. data/manual/text/win_ansi_charset.rb +0 -59
  263. data/spec/acceptance/png.rb +0 -23
  264. data/spec/column_box_spec.rb +0 -65
  265. data/spec/extensions/encoding_helpers.rb +0 -9
  266. data/spec/font_metric_cache_spec.rb +0 -52
  267. data/spec/image_handler_spec.rb +0 -54
  268. data/spec/soft_mask_spec.rb +0 -117
  269. data/spec/table/span_dummy_spec.rb +0 -17
@@ -1,4 +1,4 @@
1
- # encoding: utf-8
1
+ # encoding: utf-8
2
2
 
3
3
  # image.rb: Table image cells.
4
4
  #
@@ -9,7 +9,8 @@ module Prawn
9
9
  class Table
10
10
  class Cell
11
11
 
12
- # @private
12
+ # A Cell that contains another table.
13
+ #
13
14
  class Image < Cell
14
15
 
15
16
  def initialize(pdf, point, options={})
@@ -3,9 +3,7 @@
3
3
  # Accessors for using a Cell inside a Table.
4
4
 
5
5
  module Prawn
6
- class Table
7
-
8
- # @private
6
+ class Table
9
7
  class Cell
10
8
 
11
9
  # This module extends Cell objects when they are used in a table (as
@@ -17,7 +15,7 @@ module Prawn
17
15
  # Row number (0-based).
18
16
  #
19
17
  attr_accessor :row
20
-
18
+
21
19
  # Column number (0-based).
22
20
  #
23
21
  attr_accessor :column
@@ -1,4 +1,4 @@
1
- # encoding: utf-8
1
+ # encoding: utf-8
2
2
 
3
3
  # subtable.rb: Yo dawg.
4
4
  #
@@ -47,7 +47,7 @@ module Prawn
47
47
  @subtable.cells.max_width
48
48
  end
49
49
 
50
- # Proxied to subtable.
50
+ # Proxied to subtable.
51
51
  #
52
52
  def natural_content_height
53
53
  @subtable.cells.height
@@ -1,4 +1,4 @@
1
- # encoding: utf-8
1
+ # encoding: utf-8
2
2
 
3
3
  # text.rb: Text table cells.
4
4
  #
@@ -47,7 +47,7 @@ module Prawn
47
47
  # from the final width if the text is long.
48
48
  #
49
49
  def natural_content_width
50
- @natural_content_width ||= [styled_width_of(@content), @pdf.bounds.width].min
50
+ [styled_width_of(@content), @pdf.bounds.width].min
51
51
  end
52
52
 
53
53
  # Returns the natural height of this block of text, wrapped to the
@@ -55,7 +55,7 @@ module Prawn
55
55
  #
56
56
  def natural_content_height
57
57
  with_font do
58
- b = text_box(:width => spanned_content_width + FPTolerance)
58
+ b = text_box(:width => content_width + FPTolerance)
59
59
  b.render(:dry_run => true)
60
60
  b.height + b.line_gap
61
61
  end
@@ -64,11 +64,11 @@ module Prawn
64
64
  # Draws the text content into its bounding box.
65
65
  #
66
66
  def draw_content
67
- with_font do
67
+ with_font do
68
68
  @pdf.move_down((@pdf.font.line_gap + @pdf.font.descender)/2)
69
69
  with_text_color do
70
- text_box(:width => spanned_content_width + FPTolerance,
71
- :height => spanned_content_height + FPTolerance,
70
+ text_box(:width => content_width + FPTolerance,
71
+ :height => content_height + FPTolerance,
72
72
  :at => [0, @pdf.cursor]).render
73
73
  end
74
74
  end
@@ -78,11 +78,9 @@ module Prawn
78
78
  # Sets a reasonable minimum width. If the cell has any content, make
79
79
  # sure we have enough width to be at least one character wide. This is
80
80
  # a bit of a hack, but it should work well enough.
81
- unless defined?(@min_width) && @min_width
82
- min_content_width = [natural_content_width, styled_width_of_single_character].min
83
- @min_width = padding_left + padding_right + min_content_width
84
- super
85
- end
81
+ min_content_width = [natural_content_width, styled_width_of("M")].min
82
+ @min_width ||= padding_left + padding_right + min_content_width
83
+ super
86
84
  end
87
85
 
88
86
  protected
@@ -91,37 +89,27 @@ module Prawn
91
89
  @pdf.save_font do
92
90
  options = {}
93
91
  options[:style] = @text_options[:style] if @text_options[:style]
94
- options[:style] ||= @pdf.font.options[:style] if @pdf.font.options[:style]
95
92
 
96
- @pdf.font(defined?(@font) && @font || @pdf.font.family, options)
93
+ @pdf.font(@font || @pdf.font.name, options)
97
94
 
98
95
  yield
99
96
  end
100
97
  end
101
98
 
102
99
  def with_text_color
103
- if defined?(@text_color) && @text_color
104
- begin
105
- old_color = @pdf.fill_color || '000000'
106
- @pdf.fill_color(@text_color)
107
- yield
108
- ensure
109
- @pdf.fill_color(old_color)
110
- end
111
- else
112
- yield
113
- end
100
+ old_color = @pdf.fill_color || '000000'
101
+ @pdf.fill_color(@text_color) if @text_color
102
+ yield
103
+ ensure
104
+ @pdf.fill_color(old_color)
114
105
  end
115
-
106
+
116
107
  def text_box(extra_options={})
117
- if p = @text_options[:inline_format]
118
- p = [] unless p.is_a?(Array)
108
+ if @text_options[:inline_format]
119
109
  options = @text_options.dup
120
110
  options.delete(:inline_format)
121
- options.merge!(extra_options)
122
- options[:document] = @pdf
123
111
 
124
- array = @pdf.text_formatter.format(@content, *p)
112
+ array = ::Prawn::Text::Formatted::Parser.to_array(@content)
125
113
  ::Prawn::Text::Formatted::Box.new(array,
126
114
  options.merge(extra_options).merge(:document => @pdf))
127
115
  else
@@ -136,17 +124,6 @@ module Prawn
136
124
  @pdf.width_of(text, @text_options)
137
125
  end
138
126
 
139
- private
140
-
141
- # Returns the greatest possible width of any single character
142
- # under the given text options.
143
- # (We use this to determine the minimum width of a table cell)
144
- # (Although we currently determine this by measuring "M", it should really
145
- # use whichever character is widest under the current font)
146
- #
147
- def styled_width_of_single_character
148
- styled_width_of("M")
149
- end
150
127
  end
151
128
  end
152
129
  end
@@ -8,6 +8,14 @@
8
8
 
9
9
  module Prawn
10
10
  class Table
11
+
12
+ # Returns a Cells object that can be used to select and style cells. See
13
+ # the Cells documentation for things you can do with cells.
14
+ #
15
+ def cells
16
+ @cell_proxy ||= Cells.new(@cells)
17
+ end
18
+
11
19
  # Selects the given rows (0-based) for styling. Returns a Cells object --
12
20
  # see the documentation on Cells for things you can do with cells.
13
21
  #
@@ -37,8 +45,6 @@ module Prawn
37
45
  #
38
46
  class Cells < Array
39
47
 
40
- # @group Experimental API
41
-
42
48
  # Limits selection to the given row or rows. +row_spec+ can be anything
43
49
  # that responds to the === operator selecting a set of 0-based row
44
50
  # numbers; most commonly a number or a range.
@@ -47,21 +53,14 @@ module Prawn
47
53
  # table.rows(3..4) # selects rows four and five
48
54
  #
49
55
  def rows(row_spec)
50
- index_cells unless defined?(@indexed) && @indexed
51
- row_spec = transform_spec(row_spec, @first_row, @row_count)
56
+ index_cells unless @indexed
57
+ row_spec = transform_spec(row_spec, @row_count)
52
58
  Cells.new(@rows[row_spec] ||= select { |c|
53
59
  row_spec.respond_to?(:include?) ?
54
60
  row_spec.include?(c.row) : row_spec === c.row })
55
61
  end
56
62
  alias_method :row, :rows
57
-
58
- # Returns the number of rows in the list.
59
- #
60
- def row_count
61
- index_cells unless defined?(@indexed) && @indexed
62
- @row_count
63
- end
64
-
63
+
65
64
  # Limits selection to the given column or columns. +col_spec+ can be
66
65
  # anything that responds to the === operator selecting a set of 0-based
67
66
  # column numbers; most commonly a number or a range.
@@ -70,21 +69,14 @@ module Prawn
70
69
  # table.columns(3..4) # selects columns four and five
71
70
  #
72
71
  def columns(col_spec)
73
- index_cells unless defined?(@indexed) && @indexed
74
- col_spec = transform_spec(col_spec, @first_column, @column_count)
72
+ index_cells unless @indexed
73
+ col_spec = transform_spec(col_spec, @column_count)
75
74
  Cells.new(@columns[col_spec] ||= select { |c|
76
- col_spec.respond_to?(:include?) ?
75
+ col_spec.respond_to?(:include?) ?
77
76
  col_spec.include?(c.column) : col_spec === c.column })
78
77
  end
79
78
  alias_method :column, :columns
80
79
 
81
- # Returns the number of columns in the list.
82
- #
83
- def column_count
84
- index_cells unless defined?(@indexed) && @indexed
85
- @column_count
86
- end
87
-
88
80
  # Allows you to filter the given cells by arbitrary properties.
89
81
  #
90
82
  # table.column(4).filter { |cell| cell.content =~ /Yes/ }.
@@ -96,37 +88,11 @@ module Prawn
96
88
 
97
89
  # Retrieves a cell based on its 0-based row and column. Returns an
98
90
  # individual Cell, not a Cells collection.
99
- #
91
+ #
100
92
  # table.cells[0, 0].content # => "First cell content"
101
93
  #
102
94
  def [](row, col)
103
- return nil if empty?
104
- index_cells unless defined?(@indexed) && @indexed
105
- row_array, col_array = @rows[@first_row + row] || [], @columns[@first_column + col] || []
106
- if row_array.length < col_array.length
107
- row_array.find { |c| c.column == @first_column + col }
108
- else
109
- col_array.find { |c| c.row == @first_row + row }
110
- end
111
- end
112
-
113
- # Puts a cell in the collection at the given position. Internal use only.
114
- #
115
- def []=(row, col, cell) # :nodoc:
116
- cell.extend(Cell::InTable)
117
- cell.row = row
118
- cell.column = col
119
-
120
- if defined?(@indexed) && @indexed
121
- (@rows[row] ||= []) << cell
122
- (@columns[col] ||= []) << cell
123
- @first_row = row if !@first_row || row < @first_row
124
- @first_column = col if !@first_column || col < @first_column
125
- @row_count = @rows.size
126
- @column_count = @columns.size
127
- end
128
-
129
- self << cell
95
+ find { |c| c.row == row && c.column == col }
130
96
  end
131
97
 
132
98
  # Supports setting multiple properties at once.
@@ -144,42 +110,51 @@ module Prawn
144
110
  # table.cells.style { |cell| cell.border_width += 12 }
145
111
  #
146
112
  def style(options={}, &block)
147
- each do |cell|
148
- next if cell.is_a?(Cell::SpanDummy)
149
- cell.style(options, &block)
150
- end
113
+ each { |cell| cell.style(options, &block) }
151
114
  end
152
115
 
153
116
  # Returns the total width of all columns in the selected set.
154
117
  #
155
118
  def width
156
- widths = {}
157
- each do |cell|
158
- per_cell_width = cell.width_ignoring_span.to_f / cell.colspan
159
- cell.colspan.times do |n|
160
- widths[cell.column+n] = [widths[cell.column+n], per_cell_width].
161
- compact.max
162
- end
119
+ column_widths = {}
120
+ each do |cell|
121
+ column_widths[cell.column] =
122
+ [column_widths[cell.column], cell.width].compact.max
163
123
  end
164
- widths.values.inject(0, &:+)
124
+ column_widths.values.inject(0) { |sum, width| sum + width }
165
125
  end
166
126
 
167
127
  # Returns minimum width required to contain cells in the set.
168
128
  #
169
129
  def min_width
170
- aggregate_cell_values(:column, :avg_spanned_min_width, :max)
130
+ column_min_widths = {}
131
+ each do |cell|
132
+ column_min_widths[cell.column] =
133
+ [column_min_widths[cell.column], cell.min_width].compact.max
134
+ end
135
+ column_min_widths.values.inject(0) { |sum, width| sum + width }
171
136
  end
172
137
 
173
138
  # Returns maximum width that can contain cells in the set.
174
139
  #
175
140
  def max_width
176
- aggregate_cell_values(:column, :max_width_ignoring_span, :max)
141
+ column_max_widths = {}
142
+ each do |cell|
143
+ column_max_widths[cell.column] =
144
+ [column_max_widths[cell.column], cell.max_width].compact.min
145
+ end
146
+ column_max_widths.values.inject(0) { |sum, width| sum + width }
177
147
  end
178
148
 
179
149
  # Returns the total height of all rows in the selected set.
180
150
  #
181
151
  def height
182
- aggregate_cell_values(:row, :height_ignoring_span, :max)
152
+ row_heights = {}
153
+ each do |cell|
154
+ row_heights[cell.row] =
155
+ [row_heights[cell.row], cell.height].compact.max
156
+ end
157
+ row_heights.values.inject(0) { |sum, width| sum + width }
183
158
  end
184
159
 
185
160
  # Supports setting arbitrary properties on a group of cells.
@@ -187,21 +162,17 @@ module Prawn
187
162
  # table.cells.row(3..6).background_color = 'cc0000'
188
163
  #
189
164
  def method_missing(id, *args, &block)
190
- if id.to_s =~ /=\z/
191
- each { |c| c.send(id, *args, &block) if c.respond_to?(id) }
192
- else
193
- super
194
- end
165
+ each { |c| c.send(id, *args, &block) }
195
166
  end
196
167
 
197
168
  protected
198
-
169
+
199
170
  # Defers indexing until rows() or columns() is actually called on the
200
171
  # Cells object. Without this, we would needlessly index the leaf nodes of
201
172
  # the object graph, the ones that are only there to be iterated over.
202
173
  #
203
174
  # Make sure to call this before using @rows or @columns.
204
- #
175
+ #
205
176
  def index_cells
206
177
  @rows = {}
207
178
  @columns = {}
@@ -214,89 +185,24 @@ module Prawn
214
185
  @columns[cell.column] << cell
215
186
  end
216
187
 
217
- @first_row = @rows.keys.min
218
- @first_column = @columns.keys.min
219
-
220
188
  @row_count = @rows.size
221
189
  @column_count = @columns.size
222
190
 
223
191
  @indexed = true
224
192
  end
225
193
 
226
- # Sum up a min/max value over rows or columns in the cells selected.
227
- # Takes the min/max (per +aggregate+) of the result of sending +meth+ to
228
- # each cell, grouped by +row_or_column+.
229
- #
230
- def aggregate_cell_values(row_or_column, meth, aggregate)
231
- values = {}
232
-
233
- #calculate values for all cells that do not span accross multiple cells
234
- #this ensures that we don't have a problem if the first line includes
235
- #a cell that spans across multiple cells
236
- each do |cell|
237
- #don't take spanned cells
238
- if cell.colspan == 1 and cell.class != Prawn::Table::Cell::SpanDummy
239
- index = cell.send(row_or_column)
240
- values[index] = [values[index], cell.send(meth)].compact.send(aggregate)
241
- end
242
- end
243
-
244
- #if there are only colspanned or rowspanned cells in a table
245
- spanned_width_needs_fixing = true
246
-
247
- each do |cell|
248
- index = cell.send(row_or_column)
249
- if cell.colspan > 1
250
- #calculate current (old) return value before we do anything
251
- old_sum = 0
252
- cell.colspan.times { |i|
253
- old_sum += values[index+i] unless values[index+i].nil?
254
- }
255
-
256
- #calculate future return value
257
- new_sum = cell.send(meth) * cell.colspan
258
-
259
- #due to float rounding errors we need to ignore a small difference in the new
260
- #and the old sum the same had to be done in
261
- #the column_width_calculator#natural_width
262
- spanned_width_needs_fixing = ((new_sum - old_sum) > Prawn::FLOAT_PRECISION)
263
-
264
- if spanned_width_needs_fixing
265
- #not entirely sure why we need this line, but with it the tests pass
266
- values[index] = [values[index], cell.send(meth)].compact.send(aggregate)
267
- #overwrite the old values with the new ones, but only if all entries existed
268
- entries_exist = true
269
- cell.colspan.times { |i| entries_exist = false if values[index+i].nil? }
270
- cell.colspan.times { |i|
271
- values[index+i] = cell.send(meth) if entries_exist
272
- }
273
- end
274
- else
275
- if spanned_width_needs_fixing && cell.class == Prawn::Table::Cell::SpanDummy
276
- values[index] = [values[index], cell.send(meth)].compact.send(aggregate)
277
- end
278
- end
279
- end
280
- values.values.inject(0, &:+)
281
- end
282
-
283
194
  # Transforms +spec+, a column / row specification, into an object that
284
195
  # can be compared against a row or column number using ===. Normalizes
285
- # negative indices to be positive, given a total size of +total+. The
286
- # first row/column is indicated by +first+; this value is considered row
287
- # or column 0.
196
+ # negative indices to be positive, given a total size of +total+.
288
197
  #
289
- def transform_spec(spec, first, total)
198
+ def transform_spec(spec, total)
290
199
  case spec
291
200
  when Range
292
- transform_spec(spec.begin, first, total) ..
293
- transform_spec(spec.end, first, total)
201
+ transform_spec(spec.begin, total)..transform_spec(spec.end, total)
294
202
  when Integer
295
- spec < 0 ? (first + total + spec) : first + spec
296
- when Enumerable
297
- spec.map { |x| first + x }
203
+ spec < 0 ? (total + spec) : spec
298
204
  else # pass through
299
- raise "Don't understand spec #{spec.inspect}"
205
+ spec
300
206
  end
301
207
  end
302
208
  end