Changes between Version 6 and Version 7 of WK2-EFLTextCheckerApiTutorial
- Timestamp:
- Jun 5, 2013, 3:28:27 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified WK2-EFLTextCheckerApiTutorial
v6 v7 99 99 == Notification about setting change == 100 100 101 There is a callback function used to notify the user when the continuous spell checking setting was changed by WebKit. Specifying of this callback is needed if the application wants to receive notifications once WebKit changes this setting. If the application is not interested, this callback is not set. Changing of this setting at the WebKit level can be made as a result of modifying options in a Context Menu by a user. The following API from ewk_ settings.h can be used:101 There is a callback function used to notify the user when the continuous spell checking setting was changed by WebKit. Specifying of this callback is needed if the application wants to receive notifications once WebKit changes this setting. If the application is not interested, this callback is not set. Changing of this setting at the WebKit level can be made as a result of modifying options in a Context Menu by a user. The following API from ewk_text_checker.h can be used: 102 102 {{{ 103 void ewk_text_checker_continuous_spell_checking_change_cb_set(Ewk_ Settings_Continuous_Spell_Checking_Change_Cb cb);103 void ewk_text_checker_continuous_spell_checking_change_cb_set(Ewk_Text_Checker_Continuous_Spell_Checking_Change_Cb cb); 104 104 typedef void (*Ewk_Text_Checker_Continuous_Spell_Checking_Change_Cb)(Eina_Bool enable); 105 105 }}}