Class: Powerpoint::Slide::Comment

Inherits:
Object
  • Object
show all
Includes:
Util
Defined in:
lib/powerpoint/slide/comment.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 = {}) ⇒ Comment

Returns a new instance of Comment.



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

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

end

Instance Attribute Details

#commentsObject (readonly)

Returns the value of attribute comments.



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

def comments
  @comments
end

#logoObject (readonly)

Returns the value of attribute logo.



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

def 
  @logo
end

#page_numberObject (readonly)

Returns the value of attribute page_number.



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

def page_number
  @page_number
end

#subtitleObject (readonly)

Returns the value of attribute subtitle.



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

def subtitle
  @subtitle
end

#task_iconObject (readonly)

Returns the value of attribute task_icon.



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

def task_icon
  @task_icon
end

#titleObject (readonly)

Returns the value of attribute title.



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

def title
  @title
end

#userObject (readonly)

Returns the value of attribute user.



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

def user
  @user
end

Instance Method Details

#save(extract_path, index) ⇒ Object



19
20
21
22
23
24
25
26
# File 'lib/powerpoint/slide/comment.rb', line 19

def save(extract_path, index)
  
  copy_media(extract_path, )
  copy_media(extract_path, task_icon)

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