Sha256: 1df71217e3c1aca31efb7bfc230fe5c879aad5c41a7a3b7481909a37ade70c49

Contents?: true

Size: 1.72 KB

Versions: 5

Compression:

Stored size: 1.72 KB

Contents

require "zebra/zpl/printable"

module Zebra
  module Zpl
    class Box
      include Printable

      class InvalidLineThickness  < StandardError; end
      class InvalidRoundingDegree < StandardError; end
      class InvalidColorError     < StandardError; end

      attr_reader :line_thickness, :box_width, :box_height, :width, :color, :rounding_degree

      def line_thickness=(thickness)
        raise InvalidLineThickness unless thickness.nil? || thickness.to_i.to_s == thickness.to_s
        @line_thickness = thickness
      end

      def box_width=(width)
        @box_width = width
      end

      ### The method below refers to the "label width"
      def width=(width)
        @width = width || 0
      end

      def box_height=(height)
        @box_height = height
      end

      def rounding_degree=(value)
        raise InvalidLineThickness unless (1..8).include?(value.to_i)
        @rounding_degree = value
      end

      def color=(value)
        raise InvalidColorError unless %w[B W].include?(value&.upcase)
        @color = value
      end

      def to_zpl
        check_attributes
        puts "The Box class is deprecated. Please switch to the Graphic class (graphic_type = box)." unless ENV['RUBY_ENV'] == 'test'
        "^FO#{x},#{y}^GB#{box_width},#{box_height},#{line_thickness},#{color},#{rounding_degree}^FS"
      end

      private

      def has_data?
        false
      end

      def check_attributes
        super
        raise MissingAttributeError.new("the line thickness is not given") unless line_thickness
        raise MissingAttributeError.new("the box_width is not given") unless box_width
        raise MissingAttributeError.new("the box_height is not given") unless box_height
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
zebra-zpl-1.1.4 lib/zebra/zpl/box.rb
zebra-zpl-1.1.3 lib/zebra/zpl/box.rb
zebra-zpl-1.1.2 lib/zebra/zpl/box.rb
zebra-zpl-1.1.1 lib/zebra/zpl/box.rb
zebra-zpl-1.1.0 lib/zebra/zpl/box.rb