add support for enabling input widgets w/ spellchecking

Registered by Vadim Peretokin

- find out how spellchecking is done in other gtk+ apps
- implement for certain input widgets

Blueprint information

Status:
Complete
Approver:
Vadim Peretokin
Priority:
Undefined
Drafter:
None
Direction:
Needs approval
Assignee:
Vadim Peretokin
Definition:
Approved
Series goal:
Accepted for 0.2x
Implementation:
Implemented
Milestone target:
None
Started by
Vadim Peretokin
Completed by
Vadim Peretokin

Sprints

Whiteboard

Looks like Sexy.SpellEntry if the way to go for entryes and GtkSpell for textviews

Nice snippet from xchat-gnome - have a box in glade, stuff it w/ proper widget at runtime :)

        entrybox = glade_xml_get_widget (gui.xml, "entry hbox");
#ifdef HAVE_LIBSEXY
        gui.text_entry = sexy_spell_entry_new ();
        g_signal_connect_after (G_OBJECT (gui.text_entry), "word-check", G_CALLBACK (spell_check), NULL);
#else
        gui.text_entry = gtk_entry_new ();
#endif
        gtk_box_pack_start (GTK_BOX (entrybox), gui.text_entry, TRUE, TRUE, 0);

(?)

Work Items

This blueprint contains Public information 
Everyone can see this information.

Subscribers

No subscribers.