diff options
Diffstat (limited to 'src/lib/ecore_imf/Ecore_IMF.h')
-rw-r--r-- | src/lib/ecore_imf/Ecore_IMF.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/lib/ecore_imf/Ecore_IMF.h b/src/lib/ecore_imf/Ecore_IMF.h index e411728d0c..6e8804e77f 100644 --- a/src/lib/ecore_imf/Ecore_IMF.h +++ b/src/lib/ecore_imf/Ecore_IMF.h | |||
@@ -712,6 +712,7 @@ struct _Ecore_IMF_Context_Class | |||
712 | void (*input_hint_set) (Ecore_IMF_Context *ctx, Ecore_IMF_Input_Hints input_hints); /**< Sets input hint to fine-tune input methods behavior */ | 712 | void (*input_hint_set) (Ecore_IMF_Context *ctx, Ecore_IMF_Input_Hints input_hints); /**< Sets input hint to fine-tune input methods behavior */ |
713 | void (*bidi_direction_set) (Ecore_IMF_Context *ctx, Ecore_IMF_BiDi_Direction direction); /**< Set bidirectionality at the cursor position */ | 713 | void (*bidi_direction_set) (Ecore_IMF_Context *ctx, Ecore_IMF_BiDi_Direction direction); /**< Set bidirectionality at the cursor position */ |
714 | Ecore_IMF_Input_Panel_Keyboard_Mode (*keyboard_mode_get) (Ecore_IMF_Context *ctx); /**< Return the current keyboard mode of the input panel */ | 714 | Ecore_IMF_Input_Panel_Keyboard_Mode (*keyboard_mode_get) (Ecore_IMF_Context *ctx); /**< Return the current keyboard mode of the input panel */ |
715 | void (*prediction_hint_set) (Ecore_IMF_Context *ctx, const char *prediction_hint); /**< Set the prediction hint to the input panel */ | ||
715 | }; | 716 | }; |
716 | 717 | ||
717 | /** | 718 | /** |
@@ -1884,6 +1885,22 @@ EAPI Ecore_IMF_BiDi_Direction ecore_imf_context_bidi_direction_get(Ecore_IM | |||
1884 | */ | 1885 | */ |
1885 | EAPI Ecore_IMF_Input_Panel_Keyboard_Mode ecore_imf_context_keyboard_mode_get(Ecore_IMF_Context *ctx); | 1886 | EAPI Ecore_IMF_Input_Panel_Keyboard_Mode ecore_imf_context_keyboard_mode_get(Ecore_IMF_Context *ctx); |
1886 | 1887 | ||
1888 | /** | ||
1889 | * @ingroup Ecore_IMF_Context_Group | ||
1890 | * @brief Set the prediction hint string to deliver to the input panel. | ||
1891 | * | ||
1892 | * This API can be used when you want to set prediction hint to use intelligent reply suggestion service. | ||
1893 | * The intelligent reply suggestion service generates reply candidates for given prediction hint. | ||
1894 | * Example | ||
1895 | * prediction hint: How are you? -> result: I'm fine, Not bad, I'm all right. | ||
1896 | * | ||
1897 | * @since 1.20.0 | ||
1898 | * | ||
1899 | * @param[in] ctx An #Ecore_IMF_Context | ||
1900 | * @param[in] prediction_hint The prediction hint string. | ||
1901 | */ | ||
1902 | EAPI void ecore_imf_context_prediction_hint_set(Ecore_IMF_Context *ctx, const char *prediction_hint); | ||
1903 | |||
1887 | /* The following entry points must be exported by each input method module | 1904 | /* The following entry points must be exported by each input method module |
1888 | */ | 1905 | */ |
1889 | 1906 | ||