prawn 1.0.0.rc1 → 1.0.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/Gemfile +18 -0
  2. data/README.md +5 -3
  3. data/Rakefile +8 -14
  4. data/data/pdfs/nested_pages.pdf +13 -13
  5. data/lib/prawn.rb +3 -1
  6. data/lib/prawn/compatibility.rb +46 -10
  7. data/lib/prawn/core.rb +3 -1
  8. data/lib/prawn/core/document_state.rb +2 -1
  9. data/lib/prawn/core/object_store.rb +61 -5
  10. data/lib/prawn/core/page.rb +3 -6
  11. data/lib/prawn/core/pdf_object.rb +21 -4
  12. data/lib/prawn/core/reference.rb +6 -2
  13. data/lib/prawn/core/text.rb +4 -4
  14. data/lib/prawn/core/text/formatted/line_wrap.rb +23 -8
  15. data/lib/prawn/document.rb +21 -15
  16. data/lib/prawn/document/bounding_box.rb +3 -3
  17. data/lib/prawn/document/column_box.rb +22 -4
  18. data/lib/prawn/document/snapshot.rb +1 -1
  19. data/lib/prawn/encoding.rb +1 -1
  20. data/lib/prawn/errors.rb +4 -0
  21. data/lib/prawn/font.rb +1 -1
  22. data/lib/prawn/font/afm.rb +30 -72
  23. data/lib/prawn/font/ttf.rb +6 -33
  24. data/lib/prawn/graphics.rb +148 -23
  25. data/lib/prawn/graphics/color.rb +8 -1
  26. data/lib/prawn/graphics/patterns.rb +137 -0
  27. data/lib/prawn/images.rb +25 -19
  28. data/lib/prawn/images/jpg.rb +4 -4
  29. data/lib/prawn/images/png.rb +18 -12
  30. data/lib/prawn/security.rb +6 -4
  31. data/lib/prawn/soft_mask.rb +94 -0
  32. data/lib/prawn/table.rb +136 -31
  33. data/lib/prawn/table/cell.rb +260 -29
  34. data/lib/prawn/table/cell/span_dummy.rb +88 -0
  35. data/lib/prawn/table/cell/text.rb +36 -14
  36. data/lib/prawn/table/cells.rb +91 -41
  37. data/lib/prawn/text.rb +3 -2
  38. data/lib/prawn/text/formatted/box.rb +14 -5
  39. data/lib/prawn/text/formatted/fragment.rb +33 -22
  40. data/lib/prawn/text/formatted/parser.rb +5 -2
  41. data/lib/prawn/utilities.rb +44 -0
  42. data/manual/basic_concepts/adding_pages.rb +27 -0
  43. data/manual/basic_concepts/basic_concepts.rb +34 -0
  44. data/manual/basic_concepts/creation.rb +39 -0
  45. data/manual/basic_concepts/cursor.rb +33 -0
  46. data/manual/basic_concepts/measurement.rb +25 -0
  47. data/manual/basic_concepts/origin.rb +38 -0
  48. data/manual/basic_concepts/other_cursor_helpers.rb +40 -0
  49. data/manual/bounding_box/bounding_box.rb +39 -0
  50. data/manual/bounding_box/bounds.rb +49 -0
  51. data/manual/bounding_box/canvas.rb +24 -0
  52. data/manual/bounding_box/creation.rb +23 -0
  53. data/manual/bounding_box/indentation.rb +46 -0
  54. data/manual/bounding_box/nesting.rb +45 -0
  55. data/manual/bounding_box/russian_boxes.rb +40 -0
  56. data/manual/bounding_box/stretchy.rb +31 -0
  57. data/manual/document_and_page_options/background.rb +27 -0
  58. data/manual/document_and_page_options/document_and_page_options.rb +31 -0
  59. data/manual/document_and_page_options/metadata.rb +23 -0
  60. data/manual/document_and_page_options/page_margins.rb +38 -0
  61. data/manual/document_and_page_options/page_size.rb +34 -0
  62. data/manual/example_file.rb +116 -0
  63. data/manual/example_helper.rb +430 -0
  64. data/manual/example_package.rb +53 -0
  65. data/manual/example_section.rb +46 -0
  66. data/manual/graphics/circle_and_ellipse.rb +22 -0
  67. data/manual/graphics/color.rb +24 -0
  68. data/manual/graphics/common_lines.rb +28 -0
  69. data/manual/graphics/fill_and_stroke.rb +42 -0
  70. data/manual/graphics/fill_rules.rb +37 -0
  71. data/manual/graphics/gradients.rb +37 -0
  72. data/manual/graphics/graphics.rb +58 -0
  73. data/manual/graphics/helper.rb +17 -0
  74. data/manual/graphics/line_width.rb +35 -0
  75. data/manual/graphics/lines_and_curves.rb +41 -0
  76. data/manual/graphics/polygon.rb +29 -0
  77. data/manual/graphics/rectangle.rb +21 -0
  78. data/manual/graphics/rotate.rb +28 -0
  79. data/manual/graphics/scale.rb +41 -0
  80. data/manual/graphics/soft_masks.rb +46 -0
  81. data/manual/graphics/stroke_cap.rb +31 -0
  82. data/manual/graphics/stroke_dash.rb +43 -0
  83. data/manual/graphics/stroke_join.rb +30 -0
  84. data/manual/graphics/translate.rb +29 -0
  85. data/manual/graphics/transparency.rb +35 -0
  86. data/manual/images/absolute_position.rb +23 -0
  87. data/manual/images/fit.rb +21 -0
  88. data/manual/images/horizontal.rb +25 -0
  89. data/manual/images/images.rb +40 -0
  90. data/manual/images/plain_image.rb +18 -0
  91. data/manual/images/scale.rb +22 -0
  92. data/manual/images/vertical.rb +28 -0
  93. data/manual/images/width_and_height.rb +25 -0
  94. data/manual/layout/boxes.rb +27 -0
  95. data/manual/layout/content.rb +25 -0
  96. data/manual/layout/layout.rb +28 -0
  97. data/manual/layout/simple_grid.rb +23 -0
  98. data/manual/manual/cover.rb +26 -0
  99. data/manual/manual/foreword.rb +13 -0
  100. data/manual/manual/how_to_read_this_manual.rb +41 -0
  101. data/manual/manual/manual.rb +36 -0
  102. data/manual/outline/add_subsection_to.rb +61 -0
  103. data/manual/outline/insert_section_after.rb +47 -0
  104. data/manual/outline/outline.rb +32 -0
  105. data/manual/outline/sections_and_pages.rb +67 -0
  106. data/manual/repeatable_content/page_numbering.rb +54 -0
  107. data/manual/repeatable_content/repeatable_content.rb +31 -0
  108. data/manual/repeatable_content/repeater.rb +55 -0
  109. data/manual/repeatable_content/stamp.rb +41 -0
  110. data/manual/security/encryption.rb +31 -0
  111. data/manual/security/permissions.rb +38 -0
  112. data/manual/security/security.rb +28 -0
  113. data/manual/syntax_highlight.rb +52 -0
  114. data/manual/table/basic_block.rb +53 -0
  115. data/manual/table/before_rendering_page.rb +26 -0
  116. data/manual/table/cell_border_lines.rb +24 -0
  117. data/manual/table/cell_borders_and_bg.rb +31 -0
  118. data/manual/table/cell_dimensions.rb +30 -0
  119. data/manual/table/cell_text.rb +38 -0
  120. data/manual/table/column_widths.rb +30 -0
  121. data/manual/table/content_and_subtables.rb +39 -0
  122. data/manual/table/creation.rb +27 -0
  123. data/manual/table/filtering.rb +36 -0
  124. data/manual/table/flow_and_header.rb +17 -0
  125. data/manual/table/image_cells.rb +33 -0
  126. data/manual/table/position.rb +29 -0
  127. data/manual/table/row_colors.rb +20 -0
  128. data/manual/table/span.rb +30 -0
  129. data/manual/table/style.rb +22 -0
  130. data/manual/table/table.rb +52 -0
  131. data/manual/table/width.rb +27 -0
  132. data/manual/templates/full_template.rb +23 -0
  133. data/manual/templates/page_template.rb +47 -0
  134. data/manual/templates/templates.rb +26 -0
  135. data/manual/text/alignment.rb +44 -0
  136. data/manual/text/color.rb +24 -0
  137. data/manual/text/column_box.rb +32 -0
  138. data/manual/text/fallback_fonts.rb +37 -0
  139. data/manual/text/font.rb +41 -0
  140. data/manual/text/font_size.rb +45 -0
  141. data/manual/text/font_style.rb +23 -0
  142. data/manual/text/formatted_callbacks.rb +60 -0
  143. data/manual/text/formatted_text.rb +50 -0
  144. data/manual/text/free_flowing_text.rb +51 -0
  145. data/manual/text/group.rb +29 -0
  146. data/manual/text/inline.rb +43 -0
  147. data/manual/text/kerning_and_character_spacing.rb +39 -0
  148. data/manual/text/leading.rb +25 -0
  149. data/manual/text/line_wrapping.rb +41 -0
  150. data/manual/text/paragraph_indentation.rb +26 -0
  151. data/manual/text/positioned_text.rb +38 -0
  152. data/manual/text/registering_families.rb +48 -0
  153. data/manual/text/rendering_and_color.rb +37 -0
  154. data/manual/text/right_to_left_text.rb +43 -0
  155. data/manual/text/rotation.rb +43 -0
  156. data/manual/text/single_usage.rb +37 -0
  157. data/manual/text/text.rb +75 -0
  158. data/manual/text/text_box_excess.rb +32 -0
  159. data/manual/text/text_box_extensions.rb +45 -0
  160. data/manual/text/text_box_overflow.rb +44 -0
  161. data/manual/text/utf8.rb +28 -0
  162. data/manual/text/win_ansi_charset.rb +59 -0
  163. data/prawn.gemspec +10 -7
  164. data/spec/bounding_box_spec.rb +107 -17
  165. data/spec/cell_spec.rb +66 -40
  166. data/spec/column_box_spec.rb +33 -0
  167. data/spec/document_spec.rb +45 -24
  168. data/spec/extensions/encoding_helpers.rb +6 -0
  169. data/spec/extensions/mocha.rb +1 -0
  170. data/spec/font_spec.rb +71 -53
  171. data/spec/formatted_text_arranger_spec.rb +19 -19
  172. data/spec/formatted_text_box_spec.rb +16 -16
  173. data/spec/formatted_text_fragment_spec.rb +6 -6
  174. data/spec/graphics_spec.rb +96 -31
  175. data/spec/grid_spec.rb +2 -2
  176. data/spec/images_spec.rb +18 -10
  177. data/spec/jpg_spec.rb +1 -1
  178. data/spec/line_wrap_spec.rb +14 -14
  179. data/spec/measurement_units_spec.rb +2 -2
  180. data/spec/name_tree_spec.rb +6 -6
  181. data/spec/object_store_spec.rb +17 -17
  182. data/spec/outline_spec.rb +35 -17
  183. data/spec/pdf_object_spec.rb +3 -1
  184. data/spec/png_spec.rb +22 -19
  185. data/spec/reference_spec.rb +24 -1
  186. data/spec/repeater_spec.rb +9 -9
  187. data/spec/security_spec.rb +3 -3
  188. data/spec/snapshot_spec.rb +3 -3
  189. data/spec/soft_mask_spec.rb +117 -0
  190. data/spec/span_spec.rb +4 -4
  191. data/spec/spec_helper.rb +12 -6
  192. data/spec/stamp_spec.rb +12 -12
  193. data/spec/stroke_styles_spec.rb +5 -5
  194. data/spec/table_spec.rb +458 -88
  195. data/spec/template_spec.rb +108 -54
  196. data/spec/text_at_spec.rb +17 -17
  197. data/spec/text_box_spec.rb +76 -45
  198. data/spec/text_rendering_mode_spec.rb +5 -5
  199. data/spec/text_spacing_spec.rb +4 -4
  200. data/spec/text_spec.rb +44 -40
  201. metadata +419 -250
  202. data/lib/prawn/graphics/gradient.rb +0 -84
  203. data/lib/prawn/security/arcfour.rb +0 -51
@@ -0,0 +1,28 @@
1
+ # encoding: utf-8
2
+ #
3
+ # To set the vertical position of an image use the <code>:vposition</code>
4
+ # option.
5
+ #
6
+ # It may be <code>:top</code>, <code>:center</code>, <code>:bottom</code> or a
7
+ # number representing the y-offset from the top boundary.
8
+ #
9
+ require File.expand_path(File.join(File.dirname(__FILE__),
10
+ %w[.. example_helper]))
11
+
12
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
13
+ Prawn::Example.generate(filename) do
14
+ bounding_box([0, cursor], :width => 500, :height => 450) do
15
+ stroke_bounds
16
+
17
+ [:top, :center, :bottom].each do |vposition|
18
+ text "Image vertically aligned to the #{vposition}.", :valign => vposition
19
+ image "#{Prawn::DATADIR}/images/stef.jpg", :position => 250,
20
+ :vposition => vposition
21
+ end
22
+
23
+ text_box "The next image has a 100 point offset from the top boundary",
24
+ :at => [bounds.width - 110, bounds.top - 10], :width => 100
25
+ image "#{Prawn::DATADIR}/images/stef.jpg", :position => :right,
26
+ :vposition => 100
27
+ end
28
+ end
@@ -0,0 +1,25 @@
1
+ # encoding: utf-8
2
+ #
3
+ # The image size can be set with the <code>:width</code> and
4
+ # <code>:height</code> options.
5
+ #
6
+ # If only one of those is provided, the image will be scaled proportionally.
7
+ # When both are provided, the image will be stretched to fit the dimensions
8
+ # without maintaining the aspect ratio.
9
+ #
10
+ require File.expand_path(File.join(File.dirname(__FILE__),
11
+ %w[.. example_helper]))
12
+
13
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
14
+ Prawn::Example.generate(filename) do
15
+ text "Scale by setting only the width"
16
+ image "#{Prawn::DATADIR}/images/pigs.jpg", :width => 150
17
+ move_down 20
18
+
19
+ text "Scale by setting only the height"
20
+ image "#{Prawn::DATADIR}/images/pigs.jpg", :height => 100
21
+ move_down 20
22
+
23
+ text "Stretch to fit the width and height provided"
24
+ image "#{Prawn::DATADIR}/images/pigs.jpg", :width => 500, :height => 100
25
+ end
@@ -0,0 +1,27 @@
1
+ # encoding: utf-8
2
+ #
3
+ # After defined the grid is there but nothing happens. To start taking effect
4
+ # we need to use the grid boxes.
5
+ #
6
+ # <code>grid</code> has three different return values based on the arguments
7
+ # received. With no arguments it will return the grid itself. With integers it
8
+ # will return the grid box at those indices. With two arrays it will return a
9
+ # multi-box spanning the region of the two grid boxes at the arrays indices.
10
+ #
11
+ require File.expand_path(File.join(File.dirname(__FILE__),
12
+ %w[.. example_helper]))
13
+
14
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
15
+ Prawn::Example.generate(filename) do
16
+ # The grid only need to be defined once, but since all the examples should be
17
+ # able to run alone we are repeating it on every example
18
+ define_grid(:columns => 5, :rows => 8, :gutter => 10)
19
+
20
+ grid(4,0).show
21
+ grid(5,1).show
22
+
23
+ grid([6,2], [7,3]).show
24
+
25
+ grid([4,4], [7,4]).show
26
+ grid([7,0], [7,1]).show
27
+ end
@@ -0,0 +1,25 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Now that we know how to access the boxes we might as well add some content
4
+ # to them.
5
+ #
6
+ # This can be done by taping into the bounding box for a given grid box or
7
+ # multi-box with the <code>bounding_box</code> method.
8
+ #
9
+ require File.expand_path(File.join(File.dirname(__FILE__),
10
+ %w[.. example_helper]))
11
+
12
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
13
+ Prawn::Example.generate(filename) do
14
+ # The grid only need to be defined once, but since all the examples should be
15
+ # able to run alone we are repeating it on every example
16
+ define_grid(:columns => 5, :rows => 8, :gutter => 10)
17
+
18
+ grid([5,0], [7,1]).bounding_box do
19
+ text "Adding some content to this multi_box.\n" + " _ " * 200
20
+ end
21
+
22
+ grid(6,3).bounding_box do
23
+ text "Just a little snippet here.\n" + " _ " * 10
24
+ end
25
+ end
@@ -0,0 +1,28 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Examples for using grid layouts.
4
+ #
5
+ require File.expand_path(File.join(File.dirname(__FILE__),
6
+ %w[.. example_helper]))
7
+
8
+ Prawn::Example.generate("layout.pdf", :page_size => "FOLIO") do
9
+
10
+ package "layout" do |p|
11
+
12
+ p.example "simple_grid"
13
+ p.example "boxes"
14
+ p.example "content"
15
+
16
+ p.intro do
17
+ prose("Prawn has support for two-dimensional grid based layouts out of the box.
18
+
19
+ The examples show:")
20
+
21
+ list( "How to define the document grid",
22
+ "How to configure the grid rows and columns gutters",
23
+ "How to create boxes according to the grid"
24
+ )
25
+ end
26
+
27
+ end
28
+ end
@@ -0,0 +1,23 @@
1
+ # encoding: utf-8
2
+ #
3
+ # The document grid on Prawn is just a table-like structure with a defined
4
+ # number of rows and columns. There are some helpers to create boxes of content
5
+ # based on the grid coordinates.
6
+ #
7
+ # <code>define_grid</code> accepts the following options which are pretty much
8
+ # self-explanatory: <code>:rows</code>, <code>:columns</code>,
9
+ # <code>:gutter</code>, <code>:row_gutter</code>, <code>:column_gutter</code>
10
+ #
11
+ require File.expand_path(File.join(File.dirname(__FILE__),
12
+ %w[.. example_helper]))
13
+
14
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
15
+ Prawn::Example.generate(filename) do
16
+ # The grid only need to be defined once, but since all the examples should be
17
+ # able to run alone we are repeating it on every example
18
+ define_grid(:columns => 5, :rows => 8, :gutter => 10)
19
+ text "We defined the grid, roll over to the next page to see its outline"
20
+
21
+ start_new_page
22
+ grid.show_all
23
+ end
@@ -0,0 +1,26 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Prawn manual how to read this manual page.
4
+ #
5
+ require File.expand_path(File.join(File.dirname(__FILE__),
6
+ %w[.. example_helper]))
7
+
8
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
9
+ Prawn::Example.generate(filename) do
10
+ move_down 200
11
+
12
+ image "#{Prawn::DATADIR}/images/prawn.png",
13
+ :scale => 0.9,
14
+ :at => [10, cursor]
15
+
16
+ formatted_text_box([ {:text => "Prawn\n",
17
+ :styles => [:bold],
18
+ :size => 100}
19
+ ], :at => [170, cursor - 50])
20
+
21
+ formatted_text_box([ {:text => "by example",
22
+ :font => 'Courier',
23
+ :size => 60}
24
+ ], :at => [170, cursor - 160])
25
+
26
+ end
@@ -0,0 +1,13 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Prawn manual foreword page.
4
+ #
5
+ require File.expand_path(File.join(File.dirname(__FILE__),
6
+ %w[.. example_helper]))
7
+
8
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
9
+ Prawn::Example.generate(filename) do
10
+ header("Foreword, by Gregory Brown")
11
+ prose "This will be written just before 1.0, to give the" +
12
+ " core team something to look forward to."
13
+ end
@@ -0,0 +1,41 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Prawn manual how to read this manual page.
4
+ #
5
+ require File.expand_path(File.join(File.dirname(__FILE__),
6
+ %w[.. example_helper]))
7
+
8
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
9
+ Prawn::Example.generate(filename) do
10
+ header("How to read this manual")
11
+
12
+ prose <<-END_TEXT
13
+ This manual is a collection of examples categorized by theme and organized from the least to the most complex. While it covers most of the common use cases it is not a comprehensive guide.
14
+
15
+ The best way to read it depends on your previous knowledge of Prawn and what you need to accomplish.
16
+
17
+ If you are beginning with Prawn the first chapter will teach you the most basic concepts and how to create pdf documents. For an overview of the other features each chapter beyond the first either has a Basics section (which offer enough insight on the feature without showing all the advanced stuff you might never use) or is simple enough with only a few examples.
18
+
19
+ Once you understand the basics you might want to come back to this manual looking for examples that accomplish tasks you need.
20
+
21
+ Advanced users are encouraged to go beyond this manual and read the source code directly if any doubt is not directly covered on this manual.
22
+ END_TEXT
23
+
24
+ move_down(BOX_MARGIN)
25
+ header("Reading the examples")
26
+
27
+ prose <<-END_TEXT
28
+ The title of each example is the relative path from the Prawn source manual/ folder.
29
+
30
+ The first body of text is the introductory text for the example. Generaly it is a short description of the features illustrated by the example.
31
+
32
+ Next comes the example source code block in fixed width font.
33
+
34
+ Most of the example snippets illustrate features that alter the page in place. The effect of these snippets is shown right below a dashed line. If it doesn't make sense to evaluate the snippet inline, a box with the link for the example file is shown instead.
35
+
36
+ Note that the <code>stroke_axis</code> method, used occasionally in the manual, is not part of standard Prawn and is used for demonstrative purposes. It is defined in this file:
37
+
38
+ https://github.com/prawnpdf/prawn/blob/master/manual/example_helper.rb
39
+ END_TEXT
40
+
41
+ end
@@ -0,0 +1,36 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Generates the Prawn by example manual.
4
+ #
5
+
6
+ Encoding.default_external = "UTF-8" if defined? Encoding
7
+
8
+ require File.expand_path(File.join(File.dirname(__FILE__),
9
+ %w[.. example_helper]))
10
+
11
+ Prawn::Example.generate("manual.pdf",
12
+ :optimize_objects => true,
13
+ :compress => false,
14
+ :skip_page_creation => true,
15
+ :page_size => "FOLIO") do
16
+
17
+ load_page "cover"
18
+ load_page "foreword"
19
+ load_page "how_to_read_this_manual"
20
+
21
+ # Core chapters
22
+ load_package "basic_concepts"
23
+ load_package "graphics"
24
+ load_package "text"
25
+ load_package "bounding_box"
26
+
27
+ # Remaining chapters
28
+ load_package "layout"
29
+ load_package "images"
30
+ load_package "table"
31
+ load_package "document_and_page_options"
32
+ load_package "outline"
33
+ load_package "repeatable_content"
34
+ load_package "templates"
35
+ load_package "security"
36
+ end
@@ -0,0 +1,61 @@
1
+ # encoding: utf-8
2
+ #
3
+ # We have already seen how to define an outline tree sequentially.
4
+ #
5
+ # If you'd like to add nodes to the middle of an outline tree the
6
+ # <code>add_subsection_to</code> may help you.
7
+ #
8
+ # It allows you to insert sections to the outline tree at any point. Just
9
+ # provide the <code>title</code> of the parent section, the
10
+ # <code>position</code> you want the new subsection to be inserted
11
+ # <code>:first</code> or <code>:last</code> (defaults to <code>:last</code>)
12
+ # and a block to declare the subsection.
13
+ #
14
+ # The <code>add_subsection_to</code> block doesn't necessarily create new
15
+ # sections, it may also create new pages.
16
+ #
17
+ # If the parent title provided is the title of a page. The page will be
18
+ # converted into a section to receive the subsection created.
19
+ #
20
+ require File.expand_path(File.join(File.dirname(__FILE__),
21
+ %w[.. example_helper]))
22
+
23
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
24
+ Prawn::Example.generate(filename) do
25
+ # First we create 10 pages and some default outline
26
+ (1..10).each do |index|
27
+ text "Page #{index}"
28
+ start_new_page
29
+ end
30
+
31
+ outline.define do
32
+ section("Section 1", :destination => 1) do
33
+ page :title => "Page 2", :destination => 2
34
+ page :title => "Page 3", :destination => 3
35
+ end
36
+ end
37
+
38
+ # Now we will start adding nodes to the previous outline
39
+ outline.add_subsection_to("Section 1", :first) do
40
+ outline.section("Added later - first position") do
41
+ outline.page :title => "Page 4", :destination => 4
42
+ outline.page :title => "Page 5", :destination => 5
43
+ end
44
+ end
45
+
46
+ outline.add_subsection_to("Section 1") do
47
+ outline.page :title => "Added later - last position",
48
+ :destination => 6
49
+ end
50
+
51
+ outline.add_subsection_to("Added later - first position") do
52
+ outline.page :title => "Another page added later",
53
+ :destination => 7
54
+ end
55
+
56
+ # The title provided is for a page which will be converted into a section
57
+ outline.add_subsection_to("Page 3") do
58
+ outline.page :title => "Last page added",
59
+ :destination => 8
60
+ end
61
+ end
@@ -0,0 +1,47 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Another way to insert nodes into an existing outline is the
4
+ # <code>insert_section_after</code> method.
5
+ #
6
+ # It accepts the title of the node that the new section will go after and a
7
+ # block declaring the new section.
8
+ #
9
+ # As is the case with <code>add_subsection_to</code> the section added
10
+ # doesn't need to be a section, it may be just a page.
11
+ #
12
+ require File.expand_path(File.join(File.dirname(__FILE__),
13
+ %w[.. example_helper]))
14
+
15
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
16
+ Prawn::Example.generate(filename) do
17
+ # First we create 10 pages and some default outline
18
+ (1..10).each do |index|
19
+ text "Page #{index}"
20
+ start_new_page
21
+ end
22
+
23
+ outline.define do
24
+ section("Section 1", :destination => 1) do
25
+ page :title => "Page 2", :destination => 2
26
+ page :title => "Page 3", :destination => 3
27
+ end
28
+ end
29
+
30
+ # Now we will start adding nodes to the previous outline
31
+ outline.insert_section_after("Page 2") do
32
+ outline.section("Section after Page 2") do
33
+ outline.page :title => "Page 4", :destination => 4
34
+ end
35
+ end
36
+
37
+ outline.insert_section_after("Section 1") do
38
+ outline.section("Section after Section 1") do
39
+ outline.page :title => "Page 5", :destination => 5
40
+ end
41
+ end
42
+
43
+ # Adding just a page
44
+ outline.insert_section_after("Page 3") do
45
+ outline.page :title => "Page after Page 3", :destination => 6
46
+ end
47
+ end
@@ -0,0 +1,32 @@
1
+ # encoding: utf-8
2
+ #
3
+ # Examples for defining the document outline.
4
+ #
5
+ require File.expand_path(File.join(File.dirname(__FILE__),
6
+ %w[.. example_helper]))
7
+
8
+ Prawn::Example.generate("outline.pdf", :page_size => "FOLIO") do
9
+
10
+ package "outline" do |p|
11
+
12
+ p.section "Basics" do |s|
13
+ s.example "sections_and_pages", :eval_source => false
14
+ end
15
+
16
+ p.section "Adding nodes later" do |s|
17
+ s.example "add_subsection_to", :eval_source => false
18
+ s.example "insert_section_after", :eval_source => false
19
+ end
20
+
21
+ p.intro do
22
+ prose("The outline of a PDF document is the table of contents tab you see to the right or left of your PDF viewer.
23
+
24
+ The examples include:")
25
+
26
+ list( "How to define sections and pages",
27
+ "How to insert sections and/or pages to a previously defined outline structure"
28
+ )
29
+ end
30
+
31
+ end
32
+ end
@@ -0,0 +1,67 @@
1
+ # encoding: utf-8
2
+ #
3
+ # The document outline tree is the set of links used to navigate through the
4
+ # various document sections and pages.
5
+ #
6
+ # To define the document outline we first use the <code>outline</code>
7
+ # method to lazily instantiate an outline object. Then we use the
8
+ # <code>define</code> method with a block to start the outline tree.
9
+ #
10
+ # The basic methods for creating outline nodes are <code>section</code> and
11
+ # <code>page</code>. The only difference between the two is that
12
+ # <code>page</code> doesn't accept a block and will only create leaf nodes
13
+ # while <code>section</code> accepts a block to create nested nodes.
14
+ #
15
+ # <code>section</code> accepts the title of the section and two options:
16
+ # <code>:destination</code> - a page number to link and <code>:closed</code> -
17
+ # a boolean value that defines if the nested outline nodes are shown when the
18
+ # document is open (defaults to true).
19
+ #
20
+ # <code>page</code> is very similar to section. It requires a
21
+ # <code>:title</code> option to be set and accepts a <code>:destination</code>.
22
+ #
23
+ # <code>section</code> and <code>page</code> may also be used without the
24
+ # <code>define</code> method but they will need to instantiate the
25
+ # <code>outline</code> object every time.
26
+ #
27
+ require File.expand_path(File.join(File.dirname(__FILE__),
28
+ %w[.. example_helper]))
29
+
30
+ filename = File.basename(__FILE__).gsub('.rb', '.pdf')
31
+ Prawn::Example.generate(filename) do
32
+ # First we create 10 pages just to have something to link to
33
+ (1..10).each do |index|
34
+ text "Page #{index}"
35
+ start_new_page
36
+ end
37
+
38
+ outline.define do
39
+ section("Section 1", :destination => 1) do
40
+ page :title => "Page 2", :destination => 2
41
+ page :title => "Page 3", :destination => 3
42
+ end
43
+
44
+ section("Section 2", :destination => 4) do
45
+ page :title => "Page 5", :destination => 5
46
+
47
+ section("Subsection 2.1", :destination => 6, :closed => true) do
48
+ page :title => "Page 7", :destination => 7
49
+ end
50
+ end
51
+ end
52
+
53
+ # Outside of the define block
54
+ outline.section("Section 3", :destination => 8) do
55
+ outline.page :title => "Page 9", :destination => 9
56
+ end
57
+
58
+ outline.page :title => "Page 10", :destination => 10
59
+
60
+ # Section and Pages without links. While a section without a link may be
61
+ # useful to group some pages, a page without a link is useless
62
+ outline.update do # update is an alias to define
63
+ section("Section without link") do
64
+ page :title => "Page without link"
65
+ end
66
+ end
67
+ end