What's the fastest way to create menu programmatically in C++11/Gtkmm3 without using glade? I'm looking for something easy like this:
Gtk::MenuBar* menubar = ezmenubar.create(
{"MenuBar1",
"File.New",
"File.Open",
"File.Save",
"File.Separate1:-",
"File.Coffee:check!",
"File.Cream:check!",
"File.Sugar:check",
"File.Separate2:-",
"File.Donuts:check",
"Edit.nested.item1:radio!",
"Edit.nested.item2:radio",
"Edit.nested.item3:radio",
"Edit.Copy",
"Edit.Cut",
"Radio.On:radio!",
"Radio.Off:radio",
"Radio.Random:radio",
"Help.About"}
);
add(m_box);
m_box.pack_start(*menubar, 0, 0);
There's probably a better way to do this without using xml, however, since of official way of creating gtkmm3 menus is to embedded xml string in your source code according gktmm3 manual. Here's a class to do the messy non-human friendly xml work for you. Hopefully somebody at gnome will get the idea that people hate writing xml in their c++ code and switch back to something like this: