Module: Muby::Styled

Included in:
HelperMethods, InputWindow
Defined in:
lib/muby/style.rb

Overview

class Style

Constant Summary collapse

RED =
Muby::Style.new(0, Ncurses.const_get("COLOR_RED"), :copy, true)
BLACK =
Muby::Style.new(0, Ncurses.const_get("COLOR_BLACK"), :copy, true)
GREEN =
Muby::Style.new(0, Ncurses.const_get("COLOR_GREEN"), :copy, true)
YELLOW =
Muby::Style.new(0, Ncurses.const_get("COLOR_YELLOW"), :copy, true)
MAGENTA =
Muby::Style.new(0, Ncurses.const_get("COLOR_MAGENTA"), :copy, true)
BLUE =
Muby::Style.new(0, Ncurses.const_get("COLOR_BLUE"), :copy, true)
CYAN =
Muby::Style.new(0, Ncurses.const_get("COLOR_CYAN"), :copy, true)
WHITE =
Muby::Style.new(0, Ncurses.const_get("COLOR_WHITE"), :copy, true)
BOLD =
Muby::Style.new(Ncurses.const_get("A_BOLD"), :copy, :copy, true)
DIM =
Muby::Style.new(Ncurses.const_get("A_DIM"), :copy, :copy, true)
UNDERLINE =
Muby::Style.new(Ncurses.const_get("A_UNDERLINE"), :copy, :copy, true)
Muby::Style.new(Ncurses.const_get("A_BLINK"), :copy, :copy, true)
REVERSE =
Muby::Style.new(Ncurses.const_get("A_REVERSE"), :copy, :copy, true)
INVIS =
Muby::Style.new(Ncurses.const_get("A_INVIS"), :copy, :copy, true)
STANDOUT =
Muby::Style.new(Ncurses.const_get("A_STANDOUT"), :copy, :copy, true)
PROTECT =
Muby::Style.new(Ncurses.const_get("A_PROTECT"), :copy, :copy, true)
ALTCHARSET =
Muby::Style.new(Ncurses.const_get("A_ALTCHARSET"), :copy, :copy, true)
CHARTEXT =
Muby::Style.new(Ncurses.const_get("A_CHARTEXT"), :copy, :copy, true)
NORMAL =
Muby::Style.new(Ncurses.const_get("A_NORMAL"), :copy, :copy, false)