Class: Powerpoint::Slide::Gallery

Inherits:
Object
  • Object
show all
Includes:
Util
Defined in:
lib/powerpoint/slide/gallery.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Util

#copy_media, #merge_variables, #pixle_to_pt, #read_template, #render_view, #require_arguments

Constructor Details

#initialize(options = {}) ⇒ Gallery

Returns a new instance of Gallery.



13
14
15
16
17
# File 'lib/powerpoint/slide/gallery.rb', line 13

def initialize(options={})
  require_arguments [:title, :subtitle, :question, :page_number, :logo, :task_icon, :images], options
  options.each {|k, v| instance_variable_set("@#{k}", v)}
  @images = images
end

Instance Attribute Details

#imagesObject (readonly)

Returns the value of attribute images.



11
12
13
# File 'lib/powerpoint/slide/gallery.rb', line 11

def images
  @images
end

#logoObject (readonly)

Returns the value of attribute logo.



11
12
13
# File 'lib/powerpoint/slide/gallery.rb', line 11

def 
  @logo
end

#page_numberObject (readonly)

Returns the value of attribute page_number.



11
12
13
# File 'lib/powerpoint/slide/gallery.rb', line 11

def page_number
  @page_number
end

#questionObject (readonly)

Returns the value of attribute question.



11
12
13
# File 'lib/powerpoint/slide/gallery.rb', line 11

def question
  @question
end

#subtitleObject (readonly)

Returns the value of attribute subtitle.



11
12
13
# File 'lib/powerpoint/slide/gallery.rb', line 11

def subtitle
  @subtitle
end

#task_iconObject (readonly)

Returns the value of attribute task_icon.



11
12
13
# File 'lib/powerpoint/slide/gallery.rb', line 11

def task_icon
  @task_icon
end

#titleObject (readonly)

Returns the value of attribute title.



11
12
13
# File 'lib/powerpoint/slide/gallery.rb', line 11

def title
  @title
end

Instance Method Details

#save(extract_path, index) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
# File 'lib/powerpoint/slide/gallery.rb', line 19

def save(extract_path, index)
  @images.each do |image|
    copy_media(extract_path, image[0])
  end
  
  copy_media(extract_path, )
  copy_media(extract_path, task_icon)

  save_rel_xml(extract_path, index)
  save_slide_xml(extract_path, index)
end