Class: Vedeu::Cells::BottomRight Private

Inherits:
Corner show all
Defined in:
lib/vedeu/cells/borders/vertices/bottom_right.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Provides the character/escape sequence to draw the bottom right border with a custom value, colour and style.

Instance Attribute Summary

Attributes inherited from Empty

#name, #value

Instance Method Summary collapse

Methods inherited from Corner

#position, #text

Methods inherited from Border

#attributes, #name=, #value

Methods inherited from Empty

#border, #eql?, #geometry, #interface, #text, #to_ast, #to_h, #to_html, #value?

Methods included from Repositories::Defaults

#initialize, #validate

Methods included from Vedeu::Common

#absent?, #array?, #boolean, #boolean?, #empty_value?, #escape?, #falsy?, #hash?, #line_model?, #numeric?, #positionable?, #present?, #snake_case, #stream_model?, #string?, #symbol?, #truthy?, #view_model?

Methods included from Presentation::Styles

#render_style, #style, #style=, #style?

Methods included from Presentation::Parent

#name, #parent, #parent?

Methods included from Presentation::Position

#position, #position=, #position?, #render_position, #x, #y

Methods included from Presentation::Colour

#background, #background=, #colour, #colour=, #colour?, #foreground, #foreground=, #interface, #named_colour, #named_colour?, #parent_colour, #parent_colour?, #render_colour

Methods included from Presentation

#to_s

Instance Method Details

#as_htmlString

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (String)


15
16
17
# File 'lib/vedeu/cells/borders/vertices/bottom_right.rb', line 15

def as_html
  '┘'
end

#defaultsHash<Symbol => void> (private)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

The default options/attributes for a new instance of this class.

Returns:

  • (Hash<Symbol => void>)


27
28
29
30
# File 'lib/vedeu/cells/borders/vertices/bottom_right.rb', line 27

def defaults
  super.merge!(position: Vedeu::Geometries::Position.new(yn, xn),
               value:    Vedeu.esc.bottom_right)
end

#typeSymbol

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Symbol)


20
21
22
# File 'lib/vedeu/cells/borders/vertices/bottom_right.rb', line 20

def type
  :bottom_right
end