Class: PDF::Core::OutlineItem

Inherits:
Object
  • Object
show all
Defined in:
lib/pdf/core/outline.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(title, parent, options) ⇒ OutlineItem

Returns a new instance of OutlineItem.



296
297
298
299
300
301
# File 'lib/pdf/core/outline.rb', line 296

def initialize(title, parent, options)
  @closed = options[:closed]
  @title = title
  @parent = parent
  @count = 0
end

Instance Attribute Details

#closedObject

Returns the value of attribute closed.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def closed
  @closed
end

#countObject

Returns the value of attribute count.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def count
  @count
end

#destObject

Returns the value of attribute dest.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def dest
  @dest
end

#firstObject

Returns the value of attribute first.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def first
  @first
end

#lastObject

Returns the value of attribute last.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def last
  @last
end

#nextObject

Returns the value of attribute next.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def next
  @next
end

#parentObject

Returns the value of attribute parent.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def parent
  @parent
end

#prevObject

Returns the value of attribute prev.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def prev
  @prev
end

#titleObject

Returns the value of attribute title.



294
295
296
# File 'lib/pdf/core/outline.rb', line 294

def title
  @title
end

Instance Method Details

#to_hashObject



303
304
305
306
307
308
309
310
311
312
313
314
# File 'lib/pdf/core/outline.rb', line 303

def to_hash
  hash = { :Title => title,
           :Parent => parent,
           :Count => closed ? -count : count }
  [{:First => first}, {:Last => last}, {:Next => defined?(@next) && @next},
   {:Prev => prev}, {:Dest => dest}].each do |h|
    unless h.values.first.nil?
      hash.merge!(h)
    end
  end
  hash
end