Class: Booky::Layout::Base::H0

Inherits:
Element
  • Object
show all
Includes:
Helpers
Defined in:
lib/booky/layout/base/h0.rb

Constant Summary collapse

OPTIONS =
{
  :align => :right,
  :size => 24,
  :style => :italic
}

Instance Attribute Summary

Attributes inherited from Element

#ast, #document, #index, #options

Instance Method Summary collapse

Methods included from Helpers

#add_to_toc, #is_first_rendering?, #update_levels

Methods inherited from Element

#initialize, #method_missing, #next_option, #previous_option

Constructor Details

This class inherits a constructor from Booky::Layout::Element

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Booky::Layout::Element

Instance Method Details

#to_prawnObject



11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/booky/layout/base/h0.rb', line 11

def to_prawn
  start_new_page
  
  Booky::Layout.config.current_chapter = 0
  update_levels(0)
  add_to_toc(0)
  
  fill_color Booky::Layout::Base::COLORS[1]
  text @options[:text], OPTIONS
  fill_color Booky::Layout::Base::COLORS[0]
  
  move_down 4.cm
end