Move menu and rendering logic into separate files

This commit is contained in:
adnano 2024-02-27 11:23:12 -05:00
parent 1104e8e51b
commit e8782db9c8
10 changed files with 1024 additions and 963 deletions

View file

@ -5,7 +5,9 @@
#include <stdlib.h>
#include <string.h>
int get_font_height(char *fontstr) {
#include "pango.h"
int get_font_height(const char *fontstr) {
PangoFontMap *fontmap = pango_cairo_font_map_get_default();
PangoContext *context = pango_font_map_create_context(fontmap);
PangoFontDescription *desc = pango_font_description_from_string(fontstr);