Skip to content

Instantly share code, notes, and snippets.

View afranke's full-sized avatar
💸
Looking for funding

Alexandre Franke afranke

💸
Looking for funding
View GitHub Profile
@chergert
chergert / foo-widget.c
Last active May 15, 2024 20:40
simple widget example
#include "foo-widget.h"
struct _FooWidget
{
GtkBin parent_instance;
GtkLabel *label;
};
G_DEFINE_TYPE (FooWidget, foo_widget, GTK_TYPE_BIN)