initial import
[vuplus_webkit] / Source / WebKit / gtk / webkit / webkitspellchecker.h
1 /*
2  * Copyright (C) 2011 Igalia S.L.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef webkitspellchecker_h
21 #define webkitspellchecker_h
22
23 #include "webkitdefines.h"
24 #include <glib-object.h>
25
26 G_BEGIN_DECLS
27
28 #define WEBKIT_TYPE_SPELL_CHECKER           (webkit_spell_checker_get_type())
29 #define WEBKIT_SPELL_CHECKER(obj)           (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_TYPE_SPELL_CHECKER, WebKitSpellChecker))
30 #define WEBKIT_IS_SPELL_CHECKER(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), WEBKIT_TYPE_SPELL_CHECKER))
31 #define WEBKIT_SPELL_CHECKER_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), WEBKIT_TYPE_SPELL_CHECKER, WebKitSpellCheckerInterface))
32
33 struct _WebKitSpellCheckerInterface {
34     GTypeInterface g_iface;
35
36     void   (*check_spelling_of_string)                        (WebKitSpellChecker* checker, const char* word, int* misspelling_location, int* misspelling_length);
37     char** (*get_guesses_for_word)                            (WebKitSpellChecker* checker, const char* word, const char* context);
38     void   (*update_spell_checking_languages)                 (WebKitSpellChecker* checker, const char* languages);
39     char*  (*get_autocorrect_suggestions_for_misspelled_word) (WebKitSpellChecker* checker, const char* word);
40     void   (*learn_word)                                      (WebKitSpellChecker* checker, const char* word);
41     void   (*ignore_word)                                     (WebKitSpellChecker* checker, const char* word);
42 };
43
44 WEBKIT_API GType   webkit_spell_checker_get_type(void) G_GNUC_CONST;
45 WEBKIT_API void    webkit_spell_checker_check_spelling_of_string(WebKitSpellChecker* checker, const char* string, int* misspelling_location, int* misspelling_length);
46 WEBKIT_API char**  webkit_spell_checker_get_guesses_for_word(WebKitSpellChecker* checker, const char* word, const char* context);
47 WEBKIT_API void    webkit_spell_checker_update_spell_checking_languages(WebKitSpellChecker* checker, const char* languages);
48 WEBKIT_API char*   webkit_spell_checker_get_autocorrect_suggestions_for_misspelled_word(WebKitSpellChecker* checker, const char* word);
49 WEBKIT_API void    webkit_spell_checker_learn_word(WebKitSpellChecker* checker, const char* word);
50 WEBKIT_API void    webkit_spell_checker_ignore_word(WebKitSpellChecker* checker, const char* word);
51
52 G_END_DECLS
53
54 #endif
55