1
Fork 0
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:
Andreas Kling 2018-10-12 20:05:11 +02:00
parent 20a1795218
commit fb4ae12bc2
4 changed files with 82 additions and 14 deletions

View file

@ -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; }