1
2
3
4
5
6
7
8
9
10
11
12
13
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# encoding: UTF-8
module Axlsx
# A GradientFill defines the color and positioning for gradiant cell fill.
# @see Open Office XML Part 1 §18.8.24
class GradientFill
# The type of gradient.
# @note
# valid options are
# :linear
# :path
# @return [Symbol]
attr_reader :type
# Angle of the linear gradient
# @return [Float]
attr_reader :degree
# Percentage format left
# @return [Float]
attr_reader :left
# Percentage format right
# @return [Float]
attr_reader :right
# Percentage format top
# @return [Float]
attr_reader :top
# Percentage format bottom
# @return [Float]
attr_reader :bottom
# Collection of stop objects
# @return [SimpleTypedList]
attr_reader :stop
# Creates a new GradientFill object
# @option options [Symbol] type
# @option options [Float] degree
# @option options [Float] left
# @option options [Float] right
# @option options [Float] top
# @option options [Float] bottom
def initialize(options={})
options[:type] ||= :linear
options.each do |o|
self.send("#{o[0]}=", o[1]) if self.respond_to? o[0]
end
@stop = SimpleTypedList.new GradientStop
end
# @see type
def type=(v) Axlsx::validate_gradient_type v; @type = v end
# @see degree
def degree=(v) Axlsx::validate_float v; @degree = v end
# @see left
def left=(v) DataTypeValidator.validate "GradientFill.left", Float, v, lambda { |arg| arg >= 0.0 && arg <= 1.0}; @left = v end
# @see right
def right=(v) DataTypeValidator.validate "GradientFill.right", Float, v, lambda { |arg| arg >= 0.0 && arg <= 1.0}; @right = v end
# @see top
def top=(v) DataTypeValidator.validate "GradientFill.top", Float, v, lambda { |arg| arg >= 0.0 && arg <= 1.0}; @top = v end
# @see bottom
def bottom=(v) DataTypeValidator.validate "GradientFill.bottom", Float, v, lambda { |arg| arg >= 0.0 && arg <= 1.0}; @bottom= v end
def to_xml_string(str = '')
str << '<gradientFill'
h = self.instance_values.reject { |k,v| k.to_sym == :stop }
str << h.map { |key, value| '' << key.to_s << '="' << value.to_s << '"' }.join(' ')
str << '>'
@stop.each { |s| s.to_xml_string(str) }
str << '</gradientFill>'
end
# Serializes the gradientFill
# @param [Nokogiri::XML::Builder] xml The document builder instance this objects xml will be added to.
# @return [String]
def to_xml(xml)
xml.gradientFill(self.instance_values.reject { |k,v| k.to_sym == :stop }) {
@stop.each { |s| s.to_xml(xml) }
}
end
end
end
|