Sha256: ec558545f6f318d81cb61647d7a8c0a60f85f34e00e9d6b192d4c106a3fffee9
Contents?: true
Size: 787 Bytes
Versions: 11
Compression:
Stored size: 787 Bytes
Contents
require 'rabbit/element/base' module Rabbit module Element module BlockHorizontalCentering attr_reader :ox, :oy, :ow, :oh # dirty!!!! def do_horizontal_centering(canvas, x, y, w, h) @ox, @oy, @ow, @oh = @x, @y, @w, @h adjust_width = ((w - width) / 2.0).ceil x += adjust_width w -= adjust_width @centering_adjusted_width = adjust_width compile_for_horizontal_centering(canvas, x, @y, w, h) draw(true) end def clear_theme @ox = @oy = @ow = @oh = nil super end end module BlockElement def inline_element? false end def adjust_y_padding(y, h) y += @padding_bottom h -= @padding_bottom [y, h] end end end end
Version data entries
11 entries across 11 versions & 1 rubygems