This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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> |