start implementing textwindow

This commit is contained in:
Eggert Jung
2025-04-18 23:24:36 +02:00
parent 7cbe5f11e0
commit a84d23af31
3 changed files with 60 additions and 21 deletions

View File

@@ -20,6 +20,15 @@ class TextWindow {
TextWindow(const TextWindow&) = delete;
TextWindow& operator=(const TextWindow&) = delete;
unsigned from_col;
unsigned to_col;
unsigned from_row;
unsigned to_row;
bool use_cursor;
unsigned pos_x;
unsigned pos_y;
public:
/*! \brief Constructor of a text window
*