Class: Prawn::GraphicStateStack

Inherits:
Object
  • Object
show all
Defined in:
lib/prawn/document/graphics_state.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(previous_state = nil) ⇒ GraphicStateStack

Returns a new instance of GraphicStateStack.



14
15
16
# File 'lib/prawn/document/graphics_state.rb', line 14

def initialize(previous_state = nil)
  self.stack = [GraphicState.new(previous_state)]
end

Instance Attribute Details

#stackObject

Returns the value of attribute stack.



12
13
14
# File 'lib/prawn/document/graphics_state.rb', line 12

def stack
  @stack
end

Instance Method Details

#current_stateObject



30
31
32
# File 'lib/prawn/document/graphics_state.rb', line 30

def current_state
  stack.last
end

#empty?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/prawn/document/graphics_state.rb', line 38

def empty?
  stack.empty?
end

#present?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/prawn/document/graphics_state.rb', line 34

def present?
  stack.size > 0
end

#restore_graphic_stateObject



22
23
24
25
26
27
28
# File 'lib/prawn/document/graphics_state.rb', line 22

def restore_graphic_state
  if stack.empty?
    raise Prawn::Errors::EmptyGraphicStateStack, 
      "\n You have reached the end of the graphic state stack" 
  end
  stack.pop
end

#save_graphic_state(graphic_state = nil) ⇒ Object



18
19
20
# File 'lib/prawn/document/graphics_state.rb', line 18

def save_graphic_state(graphic_state = nil)
  stack.push(GraphicState.new(graphic_state || current_state))
end