mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:27:35 +00:00
Add a visual bell to TerminalWidget. Also backspace.
This commit is contained in:
parent
20a1795218
commit
fb4ae12bc2
4 changed files with 82 additions and 14 deletions
|
@ -4,7 +4,16 @@
|
|||
|
||||
class Color {
|
||||
public:
|
||||
enum NamedColor {
|
||||
Black,
|
||||
White,
|
||||
Red,
|
||||
Green,
|
||||
Blue,
|
||||
};
|
||||
|
||||
Color() { }
|
||||
Color(NamedColor);
|
||||
Color(byte r, byte g, byte b);
|
||||
|
||||
dword value() const { return m_value; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue