A gtkspellmm example program.
#include <gtkmm.h>
#include <gtkspellmm.h>
int main(int argc, char **argv)
{
"org.gtkmm.examples.gtkspell");
Gtk::Label label(
"Type some text into the text box.\n"
"Try misspelling some words. Then right-click on them.");
box.pack_start(label, false, false, 0);
box.pack_start(scroll, true, true, 0);
try {
}
window.set_default_size(400, 400);
window.set_title("Simple GtkSpell Demonstration");
window.set_border_width(10);
window.add(box);
box.show_all();
}