Mon, 24 Mar 2003 18:29:10 +0000
[gaim-migrate @ 5212]
Removed wgaim_created_loginwin
| 4862 | 1 | /* |
| 2 | * wspell.h | |
| 3 | * | |
| 4 | * Author: Herman Bloggs <hermanator12002@yahoo.com> | |
| 5 | * Date: March, 2003 | |
| 6 | * Description: Windows Gaim gtkspell interface. | |
| 7 | */ | |
| 8 | #ifndef _WSPELL_H_ | |
| 9 | #define _WSPELL_H_ | |
| 10 | #include <gtkspell/gtkspell.h> | |
| 11 | ||
| 12 | extern void wgaim_gtkspell_init(); | |
| 13 | ||
| 14 | extern GtkSpell* (*wgaim_gtkspell_new_attach)(GtkTextView*, const gchar*, GError**); | |
| 15 | #define gtkspell_new_attach( view, lang, error ) \ | |
| 16 | wgaim_gtkspell_new_attach( ## view ##, ## lang ##, ## error ## ) | |
| 17 | ||
| 18 | extern GtkSpell* (*wgaim_gtkspell_get_from_text_view)(GtkTextView*); | |
| 19 | #define gtkspell_get_from_text_view( view ) \ | |
| 20 | wgaim_gtkspell_get_from_text_view( ## view ## ) | |
| 21 | ||
| 22 | extern void (*wgaim_gtkspell_detach)(GtkSpell*); | |
| 23 | #define gtkspell_detach( spell ) \ | |
| 24 | wgaim_gtkspell_detach( ## spell ## ) | |
| 25 | ||
| 26 | extern gboolean (*wgaim_gtkspell_set_language)(GtkSpell*, const gchar*, GError**); | |
| 27 | #define gtkspell_set_language( spell, lang, error ) \ | |
| 28 | wgaim_gtkspell_set_language( ## spell ##, ## lang ##, ## error ## ) | |
| 29 | ||
| 30 | extern void (*wgaim_gtkspell_recheck_all)(GtkSpell*); | |
| 31 | #define gtkspell_recheck_all( spell ) \ | |
| 32 | wgaim_gtkspell_recheck_all( ## spell ## ) | |
| 33 | ||
| 34 | #endif /* _WSPELL_H_ */ |