You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

54 lines
1011 B

require 'squib/args/arg_loader'
module Squib
# @api private
module Args
class Box
include ArgLoader
def initialize(deck = nil)
@deck = deck
end
def self.parameters
{ x: 0, y: 0,
width: :native, height: :native,
radius: nil, x_radius: 0, y_radius: 0
}
end
def self.expanding_parameters
parameters.keys # all of them
end
def self.params_with_units
parameters.keys # all of them
end
def validate_width(arg, _i)
return arg if @deck.nil?
return @deck.width if arg == :native
arg
end
def validate_height(arg, _i)
return arg if @deck.nil?
return @deck.height if arg == :native
arg
end
def validate_x_radius(arg, i)
return radius[i] unless radius[i].nil?
arg
end
def validate_y_radius(arg, i)
return radius[i] unless radius[i].nil?
arg
end
end
end
end