Skip to content

Instantly share code, notes, and snippets.

@rodolforg
rodolforg / gtkmm_simple_custom_property.cpp
Created July 24, 2020 05:24
How to read/parse simple custom properties from glade file for a custom widget in gtkmm
// Sample code showing how to read/parse properties from glade file for a custom widget in gtkmm
//
// On linux, you can build it with:
// g++ -o simple simple.cpp `pkg-config --cflags --libs gtkmm-3.0`
#include <gtkmm.h>
#include <iostream>
#include <string>