module Tablo::Config::Controls

Overview

Default control values for Table and/or Column initialization, with associated getters and setters.

Defined in:

config.cr

Constant Summary

BODY_WRAP_RANGE = 1..8

Default range of allowable values for body_wrap
Check is done by the Table#check_body_wrap private method, when initializing a Table.

COLUMN_WIDTH_RANGE = 1..128

Default range of allowable values for column width
Check is done by the Table#check_width private method, when initializing a Table.

HEADER_FREQUENCY_RANGE = 0..64

Default range of allowable values for header frequency
Check is done by the Table#check_header_frequency private method, when initializing a Table.

HEADER_WRAP_RANGE = 1..8

Default range of allowable values for header_wrap
Check is done by the Table#check_header_wrap private method, when initializing a Table.

LINE_BREAKS_RANGE = 0..8

Default range of allowable values for line_breaks_before and line_breaks_after attributes
Check is done in 'Tablo::Frame` struct

PADDING_WIDTH_RANGE = 0..8

Default range of allowable values for paddings (left or right)
Check is done by the Table#check_padding private method, when initializing a Table or Column.

ROUNDING_RANGE = -8..8

Default range of allowable values for rounding in Tablo::Functions.fp_align
Check is done inside Tablo::Functions.fp_align method

ROW_DIVIDER_FREQUENCY_RANGE = 1..8

Default range of allowable values for row_divider_frequency
Check is done by the Table#check_row_divider_frequency private method, when initializing a Table.

Class Method Summary

Class Method Detail

def self.body_wrap_range : Range(Int32, Int32) #

[View source]
def self.body_wrap_range=(body_wrap_range : Range(Int32, Int32)) #

[View source]
def self.column_width_range : Range(Int32, Int32) #

[View source]
def self.column_width_range=(column_width_range : Range(Int32, Int32)) #

[View source]
def self.header_frequency_range : Range(Int32, Int32) #

[View source]
def self.header_frequency_range=(header_frequency_range : Range(Int32, Int32)) #

[View source]
def self.header_wrap_range : Range(Int32, Int32) #

[View source]
def self.header_wrap_range=(header_wrap_range : Range(Int32, Int32)) #

[View source]
def self.line_breaks_range : Range(Int32, Int32) #

[View source]
def self.line_breaks_range=(line_breaks_range : Range(Int32, Int32)) #

[View source]
def self.padding_width_range : Range(Int32, Int32) #

[View source]
def self.padding_width_range=(padding_width_range : Range(Int32, Int32)) #

[View source]
def self.rounding_range : Range(Int32, Int32) #

[View source]
def self.rounding_range=(rounding_range : Range(Int32, Int32)) #

[View source]
def self.row_divider_frequency_range : Range(Int32, Int32) #

[View source]
def self.row_divider_frequency_range=(row_divider_frequency_range : Range(Int32, Int32)) #

[View source]