aboutsummaryrefslogtreecommitdiffstats
path: root/char-table.h
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-06-07 10:42:40 +0200
committerMattias Andrée <m@maandree.se>2026-06-07 10:42:40 +0200
commitcf89c3f538a5c3867ff3ae84c26dea87e54d615e (patch)
treefb0b3efbbdcaa9393d2ab6395f2d27568a0ffe0e /char-table.h
parentstyle improvement + check mem alloc failure (diff)
downloadgcmap-cf89c3f538a5c3867ff3ae84c26dea87e54d615e.tar.gz
gcmap-cf89c3f538a5c3867ff3ae84c26dea87e54d615e.tar.bz2
gcmap-cf89c3f538a5c3867ff3ae84c26dea87e54d615e.tar.xz
Implement basic character table
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'char-table.h')
-rw-r--r--char-table.h3
1 files changed, 3 insertions, 0 deletions
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 {