1 
2 EAPI Eina_Bool
elm_web_text_matches_highlight_set(Elm_Web * obj,Eina_Bool highlight)3 elm_web_text_matches_highlight_set(Elm_Web *obj, Eina_Bool highlight)
4 {
5    return elm_obj_web_text_matches_highlight_set(obj, highlight);
6 }
7 
8 EAPI Eina_Bool
elm_web_text_matches_highlight_get(const Elm_Web * obj)9 elm_web_text_matches_highlight_get(const Elm_Web *obj)
10 {
11    return elm_obj_web_text_matches_highlight_get(obj);
12 }
13 
14 EAPI void
elm_web_useragent_set(Elm_Web * obj,const char * user_agent)15 elm_web_useragent_set(Elm_Web *obj, const char *user_agent)
16 {
17    elm_obj_web_useragent_set(obj, user_agent);
18 }
19 
20 EAPI const char *
elm_web_useragent_get(const Elm_Web * obj)21 elm_web_useragent_get(const Elm_Web *obj)
22 {
23    return elm_obj_web_useragent_get(obj);
24 }
25 
26 EAPI Eina_Bool
elm_web_url_set(Elm_Web * obj,const char * url)27 elm_web_url_set(Elm_Web *obj, const char *url)
28 {
29    return elm_obj_web_url_set(obj, url);
30 }
31 
32 EAPI const char *
elm_web_url_get(const Elm_Web * obj)33 elm_web_url_get(const Elm_Web *obj)
34 {
35    return elm_obj_web_url_get(obj);
36 }
37 
38 EAPI void
elm_web_bg_color_set(Elm_Web * obj,int r,int g,int b,int a)39 elm_web_bg_color_set(Elm_Web *obj, int r, int g, int b, int a)
40 {
41    elm_obj_web_bg_color_set(obj, r, g, b, a);
42 }
43 
44 EAPI void
elm_web_bg_color_get(const Elm_Web * obj,int * r,int * g,int * b,int * a)45 elm_web_bg_color_get(const Elm_Web *obj, int *r, int *g, int *b, int *a)
46 {
47    elm_obj_web_bg_color_get(obj, r, g, b, a);
48 }
49 
50 EAPI void
elm_web_inwin_mode_set(Elm_Web * obj,Eina_Bool value)51 elm_web_inwin_mode_set(Elm_Web *obj, Eina_Bool value)
52 {
53    elm_obj_web_inwin_mode_set(obj, value);
54 }
55 
56 EAPI Eina_Bool
elm_web_inwin_mode_get(const Elm_Web * obj)57 elm_web_inwin_mode_get(const Elm_Web *obj)
58 {
59    return elm_obj_web_inwin_mode_get(obj);
60 }
61 
62 EAPI void
elm_web_tab_propagate_set(Elm_Web * obj,Eina_Bool propagate)63 elm_web_tab_propagate_set(Elm_Web *obj, Eina_Bool propagate)
64 {
65    elm_obj_web_tab_propagate_set(obj, propagate);
66 }
67 
68 EAPI Eina_Bool
elm_web_tab_propagate_get(const Elm_Web * obj)69 elm_web_tab_propagate_get(const Elm_Web *obj)
70 {
71    return elm_obj_web_tab_propagate_get(obj);
72 }
73 
74 EAPI void
elm_web_history_enabled_set(Elm_Web * obj,Eina_Bool enable)75 elm_web_history_enabled_set(Elm_Web *obj, Eina_Bool enable)
76 {
77    elm_obj_web_history_enabled_set(obj, enable);
78 }
79 
80 EAPI Eina_Bool
elm_web_history_enabled_get(const Elm_Web * obj)81 elm_web_history_enabled_get(const Elm_Web *obj)
82 {
83    return elm_obj_web_history_enabled_get(obj);
84 }
85 
86 EAPI void
elm_web_console_message_hook_set(Elm_Web * obj,Elm_Web_Console_Message func,void * data)87 elm_web_console_message_hook_set(Elm_Web *obj, Elm_Web_Console_Message func, void *data)
88 {
89    elm_obj_web_console_message_hook_set(obj, func, data);
90 }
91 
92 EAPI void
elm_web_window_create_hook_set(Elm_Web * obj,Elm_Web_Window_Open func,void * data)93 elm_web_window_create_hook_set(Elm_Web *obj, Elm_Web_Window_Open func, void *data)
94 {
95    elm_obj_web_window_create_hook_set(obj, func, data);
96 }
97 
98 EAPI void
elm_web_dialog_file_selector_hook_set(Elm_Web * obj,Elm_Web_Dialog_File_Selector func,void * data)99 elm_web_dialog_file_selector_hook_set(Elm_Web *obj, Elm_Web_Dialog_File_Selector func, void *data)
100 {
101    elm_obj_web_dialog_file_selector_hook_set(obj, func, data);
102 }
103 
104 EAPI void
elm_web_dialog_confirm_hook_set(Elm_Web * obj,Elm_Web_Dialog_Confirm func,void * data)105 elm_web_dialog_confirm_hook_set(Elm_Web *obj, Elm_Web_Dialog_Confirm func, void *data)
106 {
107    elm_obj_web_dialog_confirm_hook_set(obj, func, data);
108 }
109 
110 EAPI void
elm_web_popup_selected_set(Elm_Web * obj,int idx)111 elm_web_popup_selected_set(Elm_Web *obj, int idx)
112 {
113    elm_obj_web_popup_selected_set(obj, idx);
114 }
115 
116 EAPI void
elm_web_dialog_prompt_hook_set(Elm_Web * obj,Elm_Web_Dialog_Prompt func,void * data)117 elm_web_dialog_prompt_hook_set(Elm_Web *obj, Elm_Web_Dialog_Prompt func, void *data)
118 {
119    elm_obj_web_dialog_prompt_hook_set(obj, func, data);
120 }
121 
122 EAPI void
elm_web_dialog_alert_hook_set(Elm_Web * obj,Elm_Web_Dialog_Alert func,void * data)123 elm_web_dialog_alert_hook_set(Elm_Web *obj, Elm_Web_Dialog_Alert func, void *data)
124 {
125    elm_obj_web_dialog_alert_hook_set(obj, func, data);
126 }
127 
128 EAPI Eina_Bool
elm_web_forward_possible_get(const Elm_Web * obj)129 elm_web_forward_possible_get(const Elm_Web *obj)
130 {
131    return elm_obj_web_forward_possible_get(obj);
132 }
133 
134 EAPI Efl_Canvas_Object *
elm_web_webkit_view_get(const Elm_Web * obj)135 elm_web_webkit_view_get(const Elm_Web *obj)
136 {
137    return elm_obj_web_webkit_view_get(obj);
138 }
139 
140 EAPI Eina_Bool
elm_web_back_possible_get(const Elm_Web * obj)141 elm_web_back_possible_get(const Elm_Web *obj)
142 {
143    return elm_obj_web_back_possible_get(obj);
144 }
145 
146 EAPI double
elm_web_load_progress_get(const Elm_Web * obj)147 elm_web_load_progress_get(const Elm_Web *obj)
148 {
149    return elm_obj_web_load_progress_get(obj);
150 }
151 
152 EAPI char *
elm_web_selection_get(const Elm_Web * obj)153 elm_web_selection_get(const Elm_Web *obj)
154 {
155    return elm_obj_web_selection_get(obj);
156 }
157 
158 EAPI Eina_Stringshare *
elm_web_title_get(const Elm_Web * obj)159 elm_web_title_get(const Elm_Web *obj)
160 {
161    return elm_obj_web_title_get(obj);
162 }
163 
164 EAPI Eina_Bool
elm_web_navigate(Elm_Web * obj,int steps)165 elm_web_navigate(Elm_Web *obj, int steps)
166 {
167    return elm_obj_web_navigate(obj, steps);
168 }
169 
170 EAPI Eina_Bool
elm_web_back(Elm_Web * obj)171 elm_web_back(Elm_Web *obj)
172 {
173    return elm_obj_web_back(obj);
174 }
175 
176 EAPI Eina_Bool
elm_web_html_string_load(Elm_Web * obj,const char * html,const char * base_url,const char * unreachable_url)177 elm_web_html_string_load(Elm_Web *obj, const char *html, const char *base_url, const char *unreachable_url)
178 {
179    return elm_obj_web_html_string_load(obj, html, base_url, unreachable_url);
180 }
181 
182 EAPI Eina_Bool
elm_web_text_search(const Elm_Web * obj,const char * string,Eina_Bool case_sensitive,Eina_Bool forward,Eina_Bool wrap)183 elm_web_text_search(const Elm_Web *obj, const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap)
184 {
185    return elm_obj_web_text_search(obj, string, case_sensitive, forward, wrap);
186 }
187 
188 EAPI Eina_Bool
elm_web_popup_destroy(Elm_Web * obj)189 elm_web_popup_destroy(Elm_Web *obj)
190 {
191    return elm_obj_web_popup_destroy(obj);
192 }
193 
194 EAPI void
elm_web_region_show(Elm_Web * obj,int x,int y,int w,int h)195 elm_web_region_show(Elm_Web *obj, int x, int y, int w, int h)
196 {
197    elm_obj_web_region_show(obj, x, y, w, h);
198 }
199 
200 EAPI Eina_Bool
elm_web_forward(Elm_Web * obj)201 elm_web_forward(Elm_Web *obj)
202 {
203    return elm_obj_web_forward(obj);
204 }
205 
206 EAPI unsigned int
elm_web_text_matches_mark(Elm_Web * obj,const char * string,Eina_Bool case_sensitive,Eina_Bool highlight,unsigned int limit)207 elm_web_text_matches_mark(Elm_Web *obj, const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit)
208 {
209    return elm_obj_web_text_matches_mark(obj, string, case_sensitive, highlight, limit);
210 }
211 
212 EAPI void
elm_web_region_bring_in(Elm_Web * obj,int x,int y,int w,int h)213 elm_web_region_bring_in(Elm_Web *obj, int x, int y, int w, int h)
214 {
215    elm_obj_web_region_bring_in(obj, x, y, w, h);
216 }
217 
218 EAPI Eina_Bool
elm_web_stop(Elm_Web * obj)219 elm_web_stop(Elm_Web *obj)
220 {
221    return elm_obj_web_stop(obj);
222 }
223 
224 EAPI Eina_Bool
elm_web_navigate_possible_get(Elm_Web * obj,int steps)225 elm_web_navigate_possible_get(Elm_Web *obj, int steps)
226 {
227    return elm_obj_web_navigate_possible_get(obj, steps);
228 }
229 
230 EAPI Eina_Bool
elm_web_reload_full(Elm_Web * obj)231 elm_web_reload_full(Elm_Web *obj)
232 {
233    return elm_obj_web_reload_full(obj);
234 }
235 
236 EAPI Eina_Bool
elm_web_text_matches_unmark_all(Elm_Web * obj)237 elm_web_text_matches_unmark_all(Elm_Web *obj)
238 {
239    return elm_obj_web_text_matches_unmark_all(obj);
240 }
241 
242 EAPI Eina_Bool
elm_web_reload(Elm_Web * obj)243 elm_web_reload(Elm_Web *obj)
244 {
245    return elm_obj_web_reload(obj);
246 }
247