module MotionPrime module DrawBackgroundMixin def draw_background_in_context(context = nil) context ||= UIGraphicsGetCurrentContext() options = draw_options rect, background_color, border_width, border_color, border_sides, corner_radius, dashes_array = options.slice(:rect, :background_color, :border_width, :border_color, :border_sides, :corner_radius, :dashes).values return unless background_color || border_width > 0 inset = border_width > 0 ? (border_width - 1 )*0.5 : 0 rect = CGRectInset(rect, -inset, -inset) if dashes_array dashes = Pointer.new(:float, dashes_array.count) dashes_array.each_with_index { |length, i| dashes[i] = length } end if corner_radius > 0 bezier_path = UIBezierPath.bezierPathWithRoundedRect rect, cornerRadius: corner_radius UIGraphicsPushContext(context) bezier_path.setLineDash(dashes, count: dashes_array.count, phase: 0) if dashes if border_width > 0 bezier_path.lineWidth = border_width border_color.setStroke bezier_path.stroke end if background_color background_color.setFill bezier_path.fill end UIGraphicsPopContext() else if border_width > 0 && border_color CGContextSetLineDash(context, dashes_array.count, dashes, 0) if dashes CGContextSetLineWidth(context, border_width) CGContextSetStrokeColorWithColor(context, border_color.uicolor.cgcolor) if border_sides.present? points = [ [rect.origin.x, rect.origin.y], [rect.origin.x + rect.size.width, rect.origin.y], [rect.origin.x + rect.size.width, rect.origin.y + rect.size.height], [rect.origin.x, rect.origin.y + rect.size.height] ] CGContextMoveToPoint(context, *points[0]) if border_sides.include?(:top) CGContextAddLineToPoint(context, *points[1]) else CGContextMoveToPoint(context, *points[1]) end if border_sides.include?(:right) CGContextAddLineToPoint(context, *points[2]) else CGContextMoveToPoint(context, *points[2]) end if border_sides.include?(:bottom) CGContextAddLineToPoint(context, *points[3]) else CGContextMoveToPoint(context, *points[3]) end if border_sides.include?(:left) CGContextAddLineToPoint(context, *points[0]) else CGContextMoveToPoint(context, *points[0]) end CGContextStrokePath(context) else CGContextStrokeRect(context, rect) end end CGContextSetFillColorWithColor(context, background_color.uicolor.cgcolor) if background_color CGContextFillRect(context, rect) if background_color end end end end