Sha256: 608e09127cad8e730f861de2a99d1ff8ae34e664e92d72dd43d777dd805eacee
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
class Shoes module Swt module Common # Methods for retrieving stroke values from a Shoes DSL class # # @note Including classes must provide `#dsl` module Stroke # This object's stroke color # # @return [Swt::Graphics::Color] The Swt representation of this object's stroke color def stroke dsl.stroke ? ::Shoes.configuration.backend_for(dsl.stroke) : nil end # This object's stroke alpha value # # @return [Integer] The alpha value of this object's stroke color (0-255) def stroke_alpha dsl.stroke.alpha if dsl.stroke end # This object's strokewidth # # @return [Integer] This object's strokewidth def strokewidth dsl.strokewidth end def apply_stroke(context) if stroke l, t = self.is_a?(Star) ? [element_left - element_width/2.0, element_top - element_height/2.0] : [element_left, element_top] stroke.apply_as_stroke(context, l, t, element_width, element_height, angle) context.set_line_width strokewidth true end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shoes-4.0.0.pre1 | lib/shoes/swt/common/stroke.rb |