Sha256: d9ce81208710c2b9885ec56971f61f640fb67992f457ffe0965b07be4c2aba3a

Contents?: true

Size: 1.77 KB

Versions: 9

Compression:

Stored size: 1.77 KB

Contents

# frozen_string_literal: true

module OoxmlParser
  # Class for working with Table Margins
  class TableMargins < OOXMLDocumentObject
    attr_accessor :is_default, :top, :bottom, :left, :right

    def initialize(is_default = true, top = nil, bottom = nil, left = nil, right = nil, parent: nil)
      @is_default = is_default
      @top = top
      @bottom = bottom
      @left = left
      @right = right
      super(parent: parent)
    end

    # TODO: Separate @is_default attribute and remove this method
    # Compare this object to other
    # @param other [Object] any other object
    # @return [True, False] result of comparision
    def ==(other)
      instance_variables.each do |current_attribute|
        next if current_attribute == :@parent
        next if current_attribute == :@is_default
        return false unless instance_variable_get(current_attribute) == other.instance_variable_get(current_attribute)
      end
      true
    end

    # @return [String] result of convert of object to string
    def to_s
      "Default: #{is_default} top: #{@top}, bottom: #{@bottom}, left: #{@left}, right: #{@right}"
    end

    # Parse TableMargins object
    # @param margin_node [Nokogiri::XML:Element] node to parse
    # @return [TableMargins] result of parsing
    def parse(margin_node)
      margin_node.xpath('*').each do |cell_margin_node|
        case cell_margin_node.name
        when 'left'
          @left = OoxmlSize.new(parent: self).parse(cell_margin_node)
        when 'top'
          @top = OoxmlSize.new(parent: self).parse(cell_margin_node)
        when 'right'
          @right = OoxmlSize.new(parent: self).parse(cell_margin_node)
        when 'bottom'
          @bottom = OoxmlSize.new(parent: self).parse(cell_margin_node)
        end
      end
      self
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
ooxml_parser-0.38.0 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb
ooxml_parser-0.37.1 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb
ooxml_parser-0.37.0 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb
ooxml_parser-0.36.1 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb
ooxml_parser-0.36.0 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb
ooxml_parser-0.35.0 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb
ooxml_parser-0.34.2 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb
ooxml_parser-0.34.1 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb
ooxml_parser-0.34.0 lib/ooxml_parser/common_parser/common_data/table/margins/table_margins.rb