blob: 78b9415475c0d943a996d6b35226925ed2b14365 (
plain)
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
|
#pragma once
#include "Widget.h"
#include <AK/ByteBuffer.h>
struct CharacterWithAttributes {
byte character;
byte attribute;
};
class TerminalWidget final : public Widget {
public:
explicit TerminalWidget(Widget* parent);
virtual ~TerminalWidget() override;
unsigned rows() const { return m_rows; }
unsigned columns() const { return m_columns; }
void onReceive(const ByteBuffer&);
void onReceive(byte);
private:
CharacterWithAttributes& at(unsigned row, unsigned column);
virtual void paintEvent(PaintEvent&) override;
virtual void keyDownEvent(KeyEvent&) override;
virtual void keyUpEvent(KeyEvent&) override;
virtual void timerEvent(TimerEvent&) override;
void bell();
unsigned m_columns { 80 };
unsigned m_rows { 25 };
unsigned m_cursorRow { 0 };
unsigned m_cursorColumn { 0 };
CharacterWithAttributes* m_screen { nullptr };
bool m_belling { false };
};
|