From cf89c3f538a5c3867ff3ae84c26dea87e54d615e Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 7 Jun 2026 10:42:40 +0200 Subject: Implement basic character table MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- char-table.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'char-table.h') diff --git a/char-table.h b/char-table.h index 0097e05..87d65d4 100644 --- a/char-table.h +++ b/char-table.h @@ -12,6 +12,9 @@ typedef struct _CharTable { GtkDrawingArea parent_instance; + int nrows, ncols, max_w, max_h; + PangoFontDescription *font; + PangoLayout *layout; } CharTable; typedef struct _CharTableClass { -- cgit v1.3.1