Sha256: 9ffee59ff575832834117a6060bad21cf23f1ab6702ab9df811e1ac2026172ba

Contents?: true

Size: 619 Bytes

Versions: 48

Compression:

Stored size: 619 Bytes

Contents

# frozen_string_literal: true

module OoxmlParser
  # Class for p:notes
  class PresentationNotes < OOXMLDocumentObject
    # @return [CommonSlideData] common slide data
    attr_reader :common_slide_data

    # Parse PresentationNotes object
    # @param file [String] file to parse
    # @return [PresentationNotes] result of parsing
    def parse(file)
      node = parse_xml(file)
      node.xpath('p:notes/*').each do |node_child|
        case node_child.name
        when 'cSld'
          @common_slide_data = CommonSlideData.new(parent: self).parse(node_child)
        end
      end
      self
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
ooxml_parser-0.37.1 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.37.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.36.1 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.36.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.35.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.34.2 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.34.1 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.34.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.33.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.32.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.31.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.30.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.29.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.28.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.27.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.26.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.25.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.24.0 lib/ooxml_parser/pptx_parser/presentation/slide/presentation_notes.rb
ooxml_parser-0.23.0 lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/presentation_notes.rb
ooxml_parser-0.22.0 lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/presentation_notes.rb