File: symbols.rb

package info (click to toggle)
ruby-tty-prompt 0.23.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,452 kB
  • sloc: ruby: 8,847; makefile: 4
file content (89 lines) | stat: -rw-r--r-- 1,975 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# frozen_string_literal: true

module TTY
  class Prompt
    # Cross platform common Unicode symbols.
    #
    # @api public
    module Symbols
      KEYS = {
        tick: "✓",
        cross: "✘",
        star: "★",
        square: "◼",
        square_empty: "◻",
        dot: "•",
        bullet: "●",
        bullet_empty: "○",
        marker: "‣",
        line: "─",
        pipe: "|",
        ellipsis: "…",
        radio_on: "⬢",
        radio_off: "⬡",
        checkbox_on: "☒",
        checkbox_off: "☐",
        circle: "◯",
        circle_on: "ⓧ",
        circle_off: "Ⓘ",
        arrow_up: "↑",
        arrow_down: "↓",
        arrow_up_down: "↕",
        arrow_left: "←",
        arrow_right: "→",
        arrow_left_right: "↔",
        heart: "♥",
        diamond: "♦",
        club: "♣",
        spade: "♠"
      }.freeze

      WIN_KEYS = {
        tick: "√",
        cross: "x",
        star: "*",
        square: "[█]",
        square_empty: "[ ]",
        dot: ".",
        bullet: "O",
        bullet_empty: "○",
        marker: ">",
        line: "-",
        pipe: "|",
        ellipsis: "...",
        radio_on: "(*)",
        radio_off: "( )",
        checkbox_on: "[×]",
        checkbox_off: "[ ]",
        circle: "( )",
        circle_on: "(x)",
        circle_off: "( )",
        arrow_up: "↑",
        arrow_down: "↓",
        arrow_up_down: "↕",
        arrow_left: "←",
        arrow_right: "→",
        arrow_left_right: "↔",
        heart: "♥",
        diamond: "♦",
        club: "♣",
        spade: "♠"
      }.freeze

      def symbols
        @symbols ||= windows? ? WIN_KEYS : KEYS
      end
      module_function :symbols

      # Check if Windowz
      #
      # @return [Boolean]
      #
      # @api public
      def windows?
        ::File::ALT_SEPARATOR == "\\"
      end
      module_function :windows?
    end # Symbols
  end # Prompt
end # TTY