prawn 0.11.1 → 0.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (353) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +10 -0
  3. data/COPYING +2 -2
  4. data/GPLv2 +340 -0
  5. data/GPLv3 +674 -0
  6. data/Gemfile +11 -0
  7. data/LICENSE +1 -1
  8. data/Rakefile +29 -38
  9. data/data/images/16bit.alpha +0 -0
  10. data/data/images/16bit.color +0 -0
  11. data/data/images/dice.alpha +0 -0
  12. data/data/images/dice.color +0 -0
  13. data/data/images/indexed_color.dat +0 -0
  14. data/data/images/indexed_color.png +0 -0
  15. data/data/images/page_white_text.alpha +0 -0
  16. data/data/images/page_white_text.color +0 -0
  17. data/data/pdfs/nested_pages.pdf +13 -13
  18. data/lib/prawn/document/bounding_box.rb +87 -12
  19. data/lib/prawn/document/column_box.rb +57 -28
  20. data/lib/prawn/document/graphics_state.rb +11 -74
  21. data/lib/prawn/document/internals.rb +25 -23
  22. data/lib/prawn/document/snapshot.rb +11 -8
  23. data/lib/prawn/document/span.rb +12 -10
  24. data/lib/prawn/document.rb +250 -194
  25. data/lib/prawn/encoding.rb +9 -10
  26. data/lib/prawn/errors.rb +18 -29
  27. data/lib/prawn/font/afm.rb +52 -41
  28. data/lib/prawn/font/dfont.rb +4 -3
  29. data/lib/prawn/font/ttf.rb +44 -48
  30. data/lib/prawn/font.rb +138 -88
  31. data/lib/prawn/font_metric_cache.rb +47 -0
  32. data/lib/prawn/graphics/cap_style.rb +4 -3
  33. data/lib/prawn/graphics/color.rb +13 -5
  34. data/lib/prawn/graphics/dash.rb +53 -31
  35. data/lib/prawn/graphics/join_style.rb +9 -7
  36. data/lib/prawn/graphics/patterns.rb +138 -0
  37. data/lib/prawn/graphics/transformation.rb +10 -9
  38. data/lib/prawn/graphics/transparency.rb +3 -1
  39. data/lib/prawn/graphics.rb +316 -61
  40. data/lib/prawn/image_handler.rb +36 -0
  41. data/lib/prawn/images/image.rb +49 -0
  42. data/lib/prawn/images/jpg.rb +21 -15
  43. data/lib/prawn/images/png.rb +62 -119
  44. data/lib/prawn/images.rb +89 -108
  45. data/lib/prawn/layout/grid.rb +66 -54
  46. data/lib/prawn/layout.rb +10 -15
  47. data/lib/prawn/measurement_extensions.rb +10 -6
  48. data/lib/prawn/measurements.rb +27 -21
  49. data/lib/prawn/outline.rb +6 -308
  50. data/lib/prawn/repeater.rb +11 -9
  51. data/lib/prawn/security/arcfour.rb +1 -0
  52. data/lib/prawn/security.rb +55 -33
  53. data/lib/prawn/soft_mask.rb +96 -0
  54. data/lib/prawn/stamp.rb +5 -3
  55. data/lib/prawn/table/cell/image.rb +69 -0
  56. data/lib/prawn/table/cell/in_table.rb +4 -2
  57. data/lib/prawn/table/cell/span_dummy.rb +93 -0
  58. data/lib/prawn/table/cell/subtable.rb +2 -2
  59. data/lib/prawn/table/cell/text.rb +44 -26
  60. data/lib/prawn/table/cell.rb +302 -50
  61. data/lib/prawn/table/cells.rb +147 -49
  62. data/lib/prawn/table/column_width_calculator.rb +61 -0
  63. data/lib/prawn/table.rb +297 -118
  64. data/lib/prawn/text/box.rb +21 -5
  65. data/lib/prawn/text/formatted/arranger.rb +290 -0
  66. data/lib/prawn/text/formatted/box.rb +103 -59
  67. data/lib/prawn/text/formatted/fragment.rb +34 -23
  68. data/lib/prawn/text/formatted/line_wrap.rb +266 -0
  69. data/lib/prawn/text/formatted/parser.rb +15 -5
  70. data/lib/prawn/text/formatted/wrap.rb +150 -0
  71. data/lib/prawn/text/formatted.rb +5 -4
  72. data/lib/prawn/text.rb +38 -24
  73. data/lib/prawn/utilities.rb +46 -0
  74. data/lib/prawn.rb +85 -20
  75. data/manual/basic_concepts/adding_pages.rb +27 -0
  76. data/manual/basic_concepts/basic_concepts.rb +34 -0
  77. data/manual/basic_concepts/creation.rb +39 -0
  78. data/manual/basic_concepts/cursor.rb +33 -0
  79. data/manual/basic_concepts/measurement.rb +25 -0
  80. data/manual/basic_concepts/origin.rb +38 -0
  81. data/manual/basic_concepts/other_cursor_helpers.rb +40 -0
  82. data/manual/bounding_box/bounding_box.rb +39 -0
  83. data/manual/bounding_box/bounds.rb +49 -0
  84. data/manual/bounding_box/canvas.rb +24 -0
  85. data/manual/bounding_box/creation.rb +23 -0
  86. data/manual/bounding_box/indentation.rb +46 -0
  87. data/manual/bounding_box/nesting.rb +45 -0
  88. data/manual/bounding_box/russian_boxes.rb +40 -0
  89. data/manual/bounding_box/stretchy.rb +31 -0
  90. data/manual/document_and_page_options/background.rb +27 -0
  91. data/manual/document_and_page_options/document_and_page_options.rb +32 -0
  92. data/manual/document_and_page_options/metadata.rb +23 -0
  93. data/manual/document_and_page_options/page_margins.rb +38 -0
  94. data/manual/document_and_page_options/page_size.rb +34 -0
  95. data/manual/document_and_page_options/print_scaling.rb +20 -0
  96. data/manual/example_file.rb +111 -0
  97. data/manual/example_helper.rb +411 -0
  98. data/manual/example_package.rb +53 -0
  99. data/manual/example_section.rb +46 -0
  100. data/manual/graphics/circle_and_ellipse.rb +22 -0
  101. data/manual/graphics/color.rb +24 -0
  102. data/manual/graphics/common_lines.rb +30 -0
  103. data/manual/graphics/fill_and_stroke.rb +42 -0
  104. data/manual/graphics/fill_rules.rb +37 -0
  105. data/manual/graphics/gradients.rb +37 -0
  106. data/manual/graphics/graphics.rb +58 -0
  107. data/manual/graphics/helper.rb +24 -0
  108. data/manual/graphics/line_width.rb +35 -0
  109. data/manual/graphics/lines_and_curves.rb +41 -0
  110. data/manual/graphics/polygon.rb +29 -0
  111. data/manual/graphics/rectangle.rb +21 -0
  112. data/manual/graphics/rotate.rb +28 -0
  113. data/manual/graphics/scale.rb +41 -0
  114. data/manual/graphics/soft_masks.rb +46 -0
  115. data/manual/graphics/stroke_cap.rb +31 -0
  116. data/manual/graphics/stroke_dash.rb +48 -0
  117. data/manual/graphics/stroke_join.rb +30 -0
  118. data/manual/graphics/translate.rb +29 -0
  119. data/manual/graphics/transparency.rb +35 -0
  120. data/manual/images/absolute_position.rb +23 -0
  121. data/manual/images/fit.rb +21 -0
  122. data/manual/images/horizontal.rb +25 -0
  123. data/manual/images/images.rb +40 -0
  124. data/manual/images/plain_image.rb +18 -0
  125. data/manual/images/scale.rb +22 -0
  126. data/manual/images/vertical.rb +28 -0
  127. data/manual/images/width_and_height.rb +25 -0
  128. data/manual/layout/boxes.rb +27 -0
  129. data/manual/layout/content.rb +25 -0
  130. data/manual/layout/layout.rb +28 -0
  131. data/manual/layout/simple_grid.rb +23 -0
  132. data/manual/manual/cover.rb +36 -0
  133. data/manual/manual/foreword.rb +85 -0
  134. data/manual/manual/how_to_read_this_manual.rb +41 -0
  135. data/manual/manual/manual.rb +34 -0
  136. data/manual/outline/add_subsection_to.rb +61 -0
  137. data/manual/outline/insert_section_after.rb +47 -0
  138. data/manual/outline/outline.rb +32 -0
  139. data/manual/outline/sections_and_pages.rb +67 -0
  140. data/manual/repeatable_content/page_numbering.rb +54 -0
  141. data/manual/repeatable_content/repeatable_content.rb +31 -0
  142. data/manual/repeatable_content/repeater.rb +55 -0
  143. data/manual/repeatable_content/stamp.rb +41 -0
  144. data/manual/security/encryption.rb +31 -0
  145. data/manual/security/permissions.rb +38 -0
  146. data/manual/security/security.rb +28 -0
  147. data/manual/syntax_highlight.rb +52 -0
  148. data/manual/table/basic_block.rb +53 -0
  149. data/manual/table/before_rendering_page.rb +26 -0
  150. data/manual/table/cell_border_lines.rb +24 -0
  151. data/manual/table/cell_borders_and_bg.rb +31 -0
  152. data/manual/table/cell_dimensions.rb +30 -0
  153. data/manual/table/cell_text.rb +38 -0
  154. data/manual/table/column_widths.rb +30 -0
  155. data/manual/table/content_and_subtables.rb +39 -0
  156. data/manual/table/creation.rb +27 -0
  157. data/manual/table/filtering.rb +36 -0
  158. data/manual/table/flow_and_header.rb +17 -0
  159. data/manual/table/image_cells.rb +33 -0
  160. data/manual/table/position.rb +29 -0
  161. data/manual/table/row_colors.rb +20 -0
  162. data/manual/table/span.rb +30 -0
  163. data/manual/table/style.rb +22 -0
  164. data/manual/table/table.rb +52 -0
  165. data/manual/table/width.rb +27 -0
  166. data/manual/text/alignment.rb +44 -0
  167. data/manual/text/color.rb +24 -0
  168. data/manual/text/column_box.rb +32 -0
  169. data/manual/text/fallback_fonts.rb +37 -0
  170. data/manual/text/font.rb +41 -0
  171. data/manual/text/font_size.rb +45 -0
  172. data/manual/text/font_style.rb +23 -0
  173. data/manual/text/formatted_callbacks.rb +60 -0
  174. data/manual/text/formatted_text.rb +54 -0
  175. data/manual/text/free_flowing_text.rb +51 -0
  176. data/manual/text/group.rb +31 -0
  177. data/manual/text/inline.rb +43 -0
  178. data/manual/text/kerning_and_character_spacing.rb +39 -0
  179. data/manual/text/leading.rb +25 -0
  180. data/manual/text/line_wrapping.rb +41 -0
  181. data/manual/text/paragraph_indentation.rb +26 -0
  182. data/manual/text/positioned_text.rb +38 -0
  183. data/manual/text/registering_families.rb +48 -0
  184. data/manual/text/rendering_and_color.rb +37 -0
  185. data/manual/text/right_to_left_text.rb +43 -0
  186. data/manual/text/rotation.rb +43 -0
  187. data/manual/text/single_usage.rb +37 -0
  188. data/manual/text/text.rb +75 -0
  189. data/manual/text/text_box_excess.rb +32 -0
  190. data/manual/text/text_box_extensions.rb +45 -0
  191. data/manual/text/text_box_overflow.rb +44 -0
  192. data/manual/text/utf8.rb +28 -0
  193. data/{examples/m17n → manual/text}/win_ansi_charset.rb +14 -10
  194. data/prawn.gemspec +27 -17
  195. data/spec/acceptance/png.rb +23 -0
  196. data/spec/annotations_spec.rb +16 -32
  197. data/spec/bounding_box_spec.rb +284 -2
  198. data/spec/cell_spec.rb +169 -38
  199. data/spec/column_box_spec.rb +65 -0
  200. data/spec/data/curves.pdf +66 -0
  201. data/spec/destinations_spec.rb +5 -5
  202. data/spec/document_spec.rb +212 -113
  203. data/spec/extensions/encoding_helpers.rb +9 -0
  204. data/spec/extensions/mocha.rb +2 -3
  205. data/spec/font_metric_cache_spec.rb +52 -0
  206. data/spec/font_spec.rb +205 -95
  207. data/spec/formatted_text_arranger_spec.rb +43 -43
  208. data/spec/formatted_text_box_spec.rb +63 -24
  209. data/spec/formatted_text_fragment_spec.rb +8 -8
  210. data/spec/graphics_spec.rb +175 -68
  211. data/spec/grid_spec.rb +26 -15
  212. data/spec/image_handler_spec.rb +54 -0
  213. data/spec/images_spec.rb +58 -30
  214. data/spec/inline_formatted_text_parser_spec.rb +73 -19
  215. data/spec/jpg_spec.rb +4 -4
  216. data/spec/line_wrap_spec.rb +28 -28
  217. data/spec/measurement_units_spec.rb +6 -6
  218. data/spec/object_store_spec.rb +17 -106
  219. data/spec/outline_spec.rb +103 -63
  220. data/spec/png_spec.rb +25 -25
  221. data/spec/reference_spec.rb +8 -65
  222. data/spec/repeater_spec.rb +25 -11
  223. data/spec/security_spec.rb +44 -12
  224. data/spec/snapshot_spec.rb +38 -6
  225. data/spec/soft_mask_spec.rb +117 -0
  226. data/spec/span_spec.rb +10 -15
  227. data/spec/spec_helper.rb +32 -8
  228. data/spec/stamp_spec.rb +29 -30
  229. data/spec/stroke_styles_spec.rb +36 -18
  230. data/spec/table/span_dummy_spec.rb +17 -0
  231. data/spec/table_spec.rb +850 -104
  232. data/spec/text_at_spec.rb +19 -33
  233. data/spec/text_box_spec.rb +117 -64
  234. data/spec/text_rendering_mode_spec.rb +5 -5
  235. data/spec/text_spacing_spec.rb +20 -2
  236. data/spec/text_spec.rb +111 -59
  237. data/spec/transparency_spec.rb +5 -5
  238. metadata +477 -328
  239. data/HACKING +0 -50
  240. data/README +0 -141
  241. data/data/fonts/Action Man.dfont +0 -0
  242. data/data/fonts/Activa.ttf +0 -0
  243. data/data/fonts/Chalkboard.ttf +0 -0
  244. data/data/fonts/DejaVuSans.ttf +0 -0
  245. data/data/fonts/Dustismo_Roman.ttf +0 -0
  246. data/data/fonts/comicsans.ttf +0 -0
  247. data/data/fonts/gkai00mp.ttf +0 -0
  248. data/data/images/16bit.dat +0 -0
  249. data/data/images/dice.dat +0 -0
  250. data/data/images/page_white_text.dat +0 -0
  251. data/data/images/rails.dat +0 -0
  252. data/data/images/rails.png +0 -0
  253. data/examples/bounding_box/bounding_boxes.rb +0 -44
  254. data/examples/bounding_box/indentation.rb +0 -35
  255. data/examples/bounding_box/russian_boxes.rb +0 -37
  256. data/examples/bounding_box/stretched_nesting.rb +0 -68
  257. data/examples/example_helper.rb +0 -8
  258. data/examples/general/background.rb +0 -24
  259. data/examples/general/canvas.rb +0 -16
  260. data/examples/general/context_sensitive_headers.rb +0 -38
  261. data/examples/general/float.rb +0 -12
  262. data/examples/general/margin.rb +0 -37
  263. data/examples/general/measurement_units.rb +0 -52
  264. data/examples/general/metadata-info.rb +0 -17
  265. data/examples/general/multi_page_layout.rb +0 -19
  266. data/examples/general/outlines.rb +0 -67
  267. data/examples/general/page_geometry.rb +0 -32
  268. data/examples/general/page_numbering.rb +0 -40
  269. data/examples/general/page_templates.rb +0 -20
  270. data/examples/general/repeaters.rb +0 -48
  271. data/examples/general/stamp.rb +0 -42
  272. data/examples/general/templates.rb +0 -14
  273. data/examples/graphics/basic_images.rb +0 -24
  274. data/examples/graphics/cmyk.rb +0 -13
  275. data/examples/graphics/curves.rb +0 -12
  276. data/examples/graphics/gradient.rb +0 -23
  277. data/examples/graphics/hexagon.rb +0 -14
  278. data/examples/graphics/image_fit.rb +0 -16
  279. data/examples/graphics/image_flow.rb +0 -38
  280. data/examples/graphics/image_position.rb +0 -18
  281. data/examples/graphics/line.rb +0 -33
  282. data/examples/graphics/png_types.rb +0 -23
  283. data/examples/graphics/polygons.rb +0 -17
  284. data/examples/graphics/remote_images.rb +0 -13
  285. data/examples/graphics/rounded_polygons.rb +0 -20
  286. data/examples/graphics/rounded_rectangle.rb +0 -21
  287. data/examples/graphics/ruport_style_helpers.rb +0 -20
  288. data/examples/graphics/stroke_bounds.rb +0 -21
  289. data/examples/graphics/stroke_cap_and_join.rb +0 -46
  290. data/examples/graphics/stroke_dash.rb +0 -43
  291. data/examples/graphics/transformations.rb +0 -53
  292. data/examples/graphics/transparency.rb +0 -27
  293. data/examples/grid/bounding_boxes.rb +0 -22
  294. data/examples/grid/column_gutter_grid.rb +0 -21
  295. data/examples/grid/multi_boxes.rb +0 -52
  296. data/examples/grid/show_grid.rb +0 -14
  297. data/examples/grid/simple_grid.rb +0 -21
  298. data/examples/m17n/chinese_text_wrapping.rb +0 -18
  299. data/examples/m17n/euro.rb +0 -16
  300. data/examples/m17n/full_win_ansi_character_list.rb +0 -20
  301. data/examples/m17n/sjis.rb +0 -29
  302. data/examples/m17n/utf8.rb +0 -14
  303. data/examples/security/hello_foo.rb +0 -9
  304. data/examples/table/bill.rb +0 -54
  305. data/examples/table/borders.rb +0 -25
  306. data/examples/table/cell.rb +0 -13
  307. data/examples/table/checkerboard.rb +0 -23
  308. data/examples/table/header.rb +0 -15
  309. data/examples/table/inline_format_table.rb +0 -13
  310. data/examples/table/multi_page_table.rb +0 -10
  311. data/examples/table/simple_table.rb +0 -25
  312. data/examples/table/subtable.rb +0 -13
  313. data/examples/table/widths.rb +0 -21
  314. data/examples/text/alignment.rb +0 -19
  315. data/examples/text/character_spacing.rb +0 -13
  316. data/examples/text/dfont.rb +0 -49
  317. data/examples/text/family_based_styling.rb +0 -25
  318. data/examples/text/font_calculations.rb +0 -92
  319. data/examples/text/font_size.rb +0 -34
  320. data/examples/text/hyphenation.rb +0 -45
  321. data/examples/text/indent_paragraphs.rb +0 -24
  322. data/examples/text/inline_format.rb +0 -104
  323. data/examples/text/kerning.rb +0 -31
  324. data/examples/text/rendering_mode.rb +0 -21
  325. data/examples/text/rotated.rb +0 -99
  326. data/examples/text/shaped_text_box.rb +0 -32
  327. data/examples/text/simple_text.rb +0 -18
  328. data/examples/text/simple_text_ttf.rb +0 -18
  329. data/examples/text/span.rb +0 -30
  330. data/examples/text/text_box.rb +0 -90
  331. data/examples/text/text_box_returning_excess.rb +0 -52
  332. data/examples/text/text_flow.rb +0 -68
  333. data/lib/prawn/compatibility.rb +0 -51
  334. data/lib/prawn/core/annotations.rb +0 -61
  335. data/lib/prawn/core/byte_string.rb +0 -9
  336. data/lib/prawn/core/destinations.rb +0 -90
  337. data/lib/prawn/core/document_state.rb +0 -78
  338. data/lib/prawn/core/literal_string.rb +0 -16
  339. data/lib/prawn/core/name_tree.rb +0 -165
  340. data/lib/prawn/core/object_store.rb +0 -264
  341. data/lib/prawn/core/page.rb +0 -213
  342. data/lib/prawn/core/pdf_object.rb +0 -108
  343. data/lib/prawn/core/reference.rb +0 -112
  344. data/lib/prawn/core/text/formatted/arranger.rb +0 -293
  345. data/lib/prawn/core/text/formatted/line_wrap.rb +0 -272
  346. data/lib/prawn/core/text/formatted/wrap.rb +0 -149
  347. data/lib/prawn/core/text.rb +0 -268
  348. data/lib/prawn/core.rb +0 -85
  349. data/lib/prawn/document/page_geometry.rb +0 -136
  350. data/lib/prawn/graphics/gradient.rb +0 -84
  351. data/spec/name_tree_spec.rb +0 -112
  352. data/spec/pdf_object_spec.rb +0 -170
  353. data/spec/template_spec.rb +0 -291
@@ -1,15 +1,22 @@
1
1
  module Prawn
2
2
  class Document
3
-
4
- # Defines the grid system for a particular document. Takes the number of
5
- # rows and columns and the width to use for the gutter as the
3
+ # @group Experimental API
4
+
5
+ # Defines the grid system for a particular document. Takes the number of
6
+ # rows and columns and the width to use for the gutter as the
6
7
  # keys :rows, :columns, :gutter, :row_gutter, :column_gutter
7
8
  #
9
+ # Note that a completely new grid object is built each time define_grid()
10
+ # is called. This means that all subsequent calls to grid() will use
11
+ # the newly defined Grid object -- grids are not nestable like
12
+ # bounding boxes are.
13
+
8
14
  def define_grid(options = {})
15
+ @boxes = nil
9
16
  @grid = Grid.new(self, options)
10
17
  end
11
-
12
- # A method that can either be used to access a particular grid on the page
18
+
19
+ # A method that can either be used to access a particular grid on the page
13
20
  # or work with the grid system directly.
14
21
  #
15
22
  # @pdf.grid # Get the Grid directly
@@ -22,7 +29,7 @@ module Prawn
22
29
  @grid
23
30
  else
24
31
  g1, g2 = args
25
- if(g1.class == Array && g2.class == Array &&
32
+ if(g1.class == Array && g2.class == Array &&
26
33
  g1.length == 2 && g2.length == 2)
27
34
  multi_box(single_box(*g1), single_box(*g2))
28
35
  else
@@ -30,15 +37,17 @@ module Prawn
30
37
  end
31
38
  end
32
39
  end
33
-
34
- # A Grid represents the entire grid system of a Page and calculates
40
+
41
+ # A Grid represents the entire grid system of a Page and calculates
35
42
  # the column width and row height of the base box.
43
+ #
44
+ # @private
36
45
  class Grid
37
46
  attr_reader :pdf, :columns, :rows, :gutter, :row_gutter, :column_gutter
38
47
  def initialize(pdf, options = {}) # :nodoc:
39
48
  valid_options = [:columns, :rows, :gutter, :row_gutter, :column_gutter]
40
49
  Prawn.verify_options valid_options, options
41
-
50
+
42
51
  @pdf = pdf
43
52
  @columns = options[:columns]
44
53
  @rows = options[:rows]
@@ -49,7 +58,7 @@ module Prawn
49
58
  def column_width
50
59
  @column_width ||= subdivide(pdf.bounds.width, columns, column_gutter)
51
60
  end
52
-
61
+
53
62
  # Calculates the base height of boxes.
54
63
  def row_height
55
64
  @row_height ||= subdivide(pdf.bounds.height, rows, row_gutter)
@@ -65,11 +74,11 @@ module Prawn
65
74
  end
66
75
 
67
76
  private
68
-
77
+
69
78
  def subdivide(total, num, gutter)
70
79
  (total.to_f - (gutter * (num - 1).to_f)) / num.to_f
71
80
  end
72
-
81
+
73
82
  def set_gutter(options)
74
83
  if options.has_key?(:gutter)
75
84
  @gutter = options[:gutter].to_f
@@ -81,92 +90,93 @@ module Prawn
81
90
  end
82
91
  end
83
92
  end
84
-
85
- # A Box is a class that represents a bounded area of a page.
86
- # A Grid object has methods that allow easy access to the coordinates of
93
+
94
+ # A Box is a class that represents a bounded area of a page.
95
+ # A Grid object has methods that allow easy access to the coordinates of
87
96
  # its corners, which can be plugged into most existing prawnmethods.
88
97
  #
89
- class Box #:nodoc:
98
+ # @private
99
+ class GridBox
90
100
  attr_reader :pdf
91
-
101
+
92
102
  def initialize(pdf, i, j)
93
103
  @pdf = pdf
94
104
  @i = i
95
105
  @j = j
96
106
  end
97
-
98
- # Mostly diagnostic method that outputs the name of a box as
107
+
108
+ # Mostly diagnostic method that outputs the name of a box as
99
109
  # col_num, row_num
100
110
  #
101
111
  def name
102
112
  "#{@i.to_s},#{@j.to_s}"
103
113
  end
104
-
114
+
105
115
  # :nodoc
106
116
  def total_height
107
117
  pdf.bounds.height.to_f
108
118
  end
109
-
119
+
110
120
  # Width of a box
111
121
  def width
112
122
  grid.column_width.to_f
113
123
  end
114
-
124
+
115
125
  # Height of a box
116
126
  def height
117
127
  grid.row_height.to_f
118
128
  end
119
-
129
+
120
130
  # Width of the gutter
121
131
  def gutter
122
132
  grid.gutter.to_f
123
133
  end
124
-
134
+
125
135
  # x-coordinate of left side
126
136
  def left
127
137
  @left ||= (width + grid.column_gutter) * @j.to_f
128
138
  end
129
-
130
- # x-coordinate of right side
139
+
140
+ # x-coordinate of right side
131
141
  def right
132
142
  @right ||= left + width
133
143
  end
134
-
144
+
135
145
  # y-coordinate of the top
136
146
  def top
137
147
  @top ||= total_height - ((height + grid.row_gutter) * @i.to_f)
138
148
  end
139
-
149
+
140
150
  # y-coordinate of the bottom
141
151
  def bottom
142
152
  @bottom ||= top - height
143
153
  end
144
-
154
+
145
155
  # x,y coordinates of top left corner
146
156
  def top_left
147
157
  [left, top]
148
158
  end
149
-
150
- # x,y coordinates of top right corner
159
+
160
+ # x,y coordinates of top right corner
151
161
  def top_right
152
162
  [right, top]
153
163
  end
154
-
164
+
155
165
  # x,y coordinates of bottom left corner
156
166
  def bottom_left
157
167
  [left, bottom]
158
168
  end
159
-
169
+
160
170
  # x,y coordinates of bottom right corner
161
171
  def bottom_right
162
172
  [right, bottom]
163
173
  end
164
-
174
+
165
175
  # Creates a standard bounding box based on the grid box.
166
176
  def bounding_box(&blk)
167
177
  pdf.bounding_box(top_left, :width => width, :height => height, &blk)
168
178
  end
169
-
179
+
170
180
  # Diagnostic method
171
181
  def show(grid_color = "CCCCCC")
172
182
  self.bounding_box do
@@ -175,28 +185,30 @@ module Prawn
175
185
  pdf.stroke_color = grid_color
176
186
  pdf.text self.name
177
187
  pdf.stroke_bounds
178
-
188
+
179
189
  pdf.stroke_color = original_stroke_color
180
190
  end
181
191
  end
182
-
192
+
183
193
  private
184
194
  def grid
185
195
  pdf.grid
186
196
  end
187
197
  end
188
-
198
+
189
199
  # A MultiBox is specified by 2 Boxes and spans the areas between.
190
- class MultiBox < Box #:nodoc:
200
+ #
201
+ # @private
202
+ class MultiBox < GridBox #:nodoc:
191
203
  def initialize(pdf, b1, b2)
192
204
  @pdf = pdf
193
205
  @bs = [b1, b2]
194
206
  end
195
-
207
+
196
208
  def name
197
209
  @bs.map {|b| b.name}.join(":")
198
210
  end
199
-
211
+
200
212
  def total_height
201
213
  @bs[0].total_height
202
214
  end
@@ -204,54 +216,54 @@ module Prawn
204
216
  def width
205
217
  right_box.right - left_box.left
206
218
  end
207
-
219
+
208
220
  def height
209
221
  top_box.top - bottom_box.bottom
210
222
  end
211
-
223
+
212
224
  def gutter
213
225
  @bs[0].gutter
214
226
  end
215
-
227
+
216
228
  def left
217
229
  left_box.left
218
230
  end
219
-
231
+
220
232
  def right
221
233
  right_box.right
222
234
  end
223
-
235
+
224
236
  def top
225
237
  top_box.top
226
238
  end
227
-
239
+
228
240
  def bottom
229
241
  bottom_box.bottom
230
242
  end
231
-
243
+
232
244
  private
233
245
  def left_box
234
246
  @left_box ||= @bs.min {|a,b| a.left <=> b.left}
235
247
  end
236
-
248
+
237
249
  def right_box
238
250
  @right_box ||= @bs.max {|a,b| a.right <=> b.right}
239
251
  end
240
-
252
+
241
253
  def top_box
242
254
  @top_box ||= @bs.max {|a,b| a.top <=> b.top}
243
255
  end
244
-
256
+
245
257
  def bottom_box
246
258
  @bottom_box ||= @bs.min {|a,b| a.bottom <=> b.bottom}
247
259
  end
248
260
  end
249
-
261
+
250
262
  private
251
263
  def single_box(i, j)
252
- Box.new(self, i, j)
264
+ GridBox.new(self, i, j)
253
265
  end
254
-
266
+
255
267
  def multi_box(b1, b2)
256
268
  MultiBox.new(self, b1, b2)
257
269
  end
data/lib/prawn/layout.rb CHANGED
@@ -1,20 +1,15 @@
1
- require "prawn/table"
2
- require 'prawn/layout/grid'
1
+ require_relative "table"
2
+ require_relative "layout/grid"
3
3
 
4
4
  module Prawn
5
-
6
- module Errors
7
-
8
- # This error is raised when table data is malformed
9
- #
10
- InvalidTableData = Class.new(StandardError)
5
+ module Errors
11
6
 
12
- # This error is raised when an empty or nil table is rendered
13
- #
14
- EmptyTable = Class.new(StandardError)
15
- end
7
+ # This error is raised when table data is malformed
8
+ #
9
+ InvalidTableData = Class.new(StandardError)
16
10
 
17
- module Layout
18
-
19
- end
11
+ # This error is raised when an empty or nil table is rendered
12
+ #
13
+ EmptyTable = Class.new(StandardError)
14
+ end
20
15
  end
@@ -5,13 +5,17 @@
5
5
  #
6
6
  # This is free software. Please see the LICENSE and COPYING files for details.
7
7
 
8
- require 'prawn/measurements'
8
+ require_relative 'measurements'
9
+
10
+ # @group Stable API
9
11
 
10
12
  class Numeric
11
- include Prawn::Measurements
12
- # prawns' basic unit is PostScript-Point
13
+ include Prawn::Measurements
14
+ # prawns' basic unit is PostScript-Point
13
15
  # 72 points per inch
14
16
 
17
+ # @group Experimental API
18
+
15
19
  def mm
16
20
  return mm2pt(self)
17
21
  end
@@ -39,8 +43,8 @@ class Numeric
39
43
  def ft
40
44
  return ft2pt(self)
41
45
  end
42
-
46
+
43
47
  def pt
44
- return self
48
+ return pt2pt(self)
45
49
  end
46
- end
50
+ end
@@ -3,69 +3,75 @@
3
3
  #
4
4
  # Copyright December 2008, Florian Witteler. All Rights Reserved.
5
5
  #
6
- module Prawn
6
+ module Prawn
7
+ # @group Stable API
8
+
7
9
  module Measurements
8
-
10
+
9
11
  # ============================================================================
10
12
  #metric conversions
11
13
  def cm2mm(cm)
12
14
  return cm*10
13
15
  end
14
-
16
+
15
17
  def dm2mm(dm)
16
- return dm*100
18
+ return dm*100
17
19
  end
18
-
20
+
19
21
  def m2mm(m)
20
22
  return m*1000
21
23
  end
22
-
24
+
23
25
  # ============================================================================
24
- # imperial conversions
26
+ # imperial conversions
25
27
  # from http://en.wikipedia.org/wiki/Imperial_units
26
-
28
+
27
29
  def ft2in(ft)
28
30
  return ft * 12
29
- end
31
+ end
30
32
 
31
33
  def yd2in(yd)
32
34
  return yd*36
33
35
  end
34
36
 
35
-
37
+
36
38
  # ============================================================================
37
39
  # PostscriptPoint-converisons
38
-
40
+
41
+ def pt2pt(pt)
42
+ return pt
43
+ end
44
+
39
45
  def in2pt(inch)
40
- return inch * 72
46
+ return inch * 72
41
47
  end
42
-
48
+
43
49
  def ft2pt(ft)
44
50
  return in2pt(ft2in(ft))
45
51
  end
46
-
52
+
47
53
  def yd2pt(yd)
48
54
  return in2pt(yd2in(yd))
49
55
  end
50
-
56
+
51
57
  def mm2pt(mm)
52
58
  return mm*(72 / 25.4)
53
59
  end
54
-
60
+
55
61
  def cm2pt(cm)
56
62
  return mm2pt(cm2mm(cm))
57
63
  end
58
-
64
+
59
65
  def dm2pt(dm)
60
66
  return mm2pt(dm2mm(dm))
61
67
  end
62
-
68
+
63
69
  def m2pt(m)
64
70
  return mm2pt(m2mm(m))
65
71
  end
66
-
67
- def pt2mm(pt)
72
+
73
+ def pt2mm(pt)
68
74
  return pt * 1 / mm2pt(1)# (25.4 / 72)
69
75
  end
70
76
  end
71
- end
77
+ end