Class: OoxmlParser::PresentationFill

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/common_parser/common_data/colors/presentation_fill.rb

Overview

Class for working with PresentationFill

Instance Attribute Summary collapse

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

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

Methods included from OoxmlObjectAttributeHelper

#attribute_enabled?, #option_enabled?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

This class inherits a constructor from OoxmlParser::OOXMLDocumentObject

Instance Attribute Details

#colorObject

Returns the value of attribute color.



9
10
11
# File 'lib/ooxml_parser/common_parser/common_data/colors/presentation_fill.rb', line 9

def color
  @color
end

#imageObject

Returns the value of attribute image.



9
10
11
# File 'lib/ooxml_parser/common_parser/common_data/colors/presentation_fill.rb', line 9

def image
  @image
end

#patternObject

Returns the value of attribute pattern.



9
10
11
# File 'lib/ooxml_parser/common_parser/common_data/colors/presentation_fill.rb', line 9

def pattern
  @pattern
end

#typeObject

Returns the value of attribute type.



9
10
11
# File 'lib/ooxml_parser/common_parser/common_data/colors/presentation_fill.rb', line 9

def type
  @type
end

Instance Method Details

#parse(node) ⇒ PresentationFill

Parse PresentationFill object

Parameters:

  • node (Nokogiri::XML:Element)

    node to parse

Returns:



14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/ooxml_parser/common_parser/common_data/colors/presentation_fill.rb', line 14

def parse(node)
  return nil if node.xpath('*').empty?

  node.xpath('*').each do |node_child|
    case node_child.name
    when 'gradFill'
      @type = :gradient
      @color = GradientColor.new(parent: self).parse(node_child)
    when 'solidFill'
      @type = :solid
      @color = Color.new(parent: self).parse_color(node_child.xpath('*').first)
    when 'blipFill'
      @type = :image
      @image = ImageFill.new(parent: self).parse(node_child)
    when 'pattFill'
      @type = :pattern
      @pattern = PresentationPattern.new(parent: self).parse(node_child)
    when 'noFill'
      @type = :noneColor
      @color = :none
    end
  end
  return nil if @type.nil?

  self
end