Class: OoxmlParser::PresentationAlternateContent

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb

Overview

Class for parsing ‘AlternateContent`

Instance Attribute Summary collapse

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

#==, #boolean_attribute_value, #parse_xml, #with_data?

Methods included from OoxmlObjectAttributeHelper

#attribute_enabled?, #option_enabled?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

#initialize(parent: nil) ⇒ PresentationAlternateContent

Returns a new instance of PresentationAlternateContent.



9
10
11
12
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 9

def initialize(parent: nil)
  @elements = elements
  super
end

Instance Attribute Details

#elementsObject

Returns the value of attribute elements.



7
8
9
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 7

def elements
  @elements
end

#timingObject

Returns the value of attribute timing.



7
8
9
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 7

def timing
  @timing
end

#transitionObject

Returns the value of attribute transition.



7
8
9
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 7

def transition
  @transition
end

Instance Method Details

#parse(node) ⇒ PresentationAlternateContent

Parse PresentationAlternateContent object

Parameters:

  • node (Nokogiri::XML:Element)

    node to parse

Returns:



17
18
19
20
21
22
23
24
25
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 17

def parse(node)
  node.xpath('mc:Choice/*', 'xmlns:mc' => 'http://schemas.openxmlformats.org/markup-compatibility/2006').each do |node_child|
    case node_child.name
    when 'transition'
      @transition = Transition.new(parent: self).parse(node_child)
    end
  end
  self
end