1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
|
static Eina_Error
__eolian_elm_web_text_matches_highlight_set_reflect(Eo *obj, Eina_Value val)
{
Eina_Error r = 0; Eina_Bool cval;
if (!eina_value_bool_convert(&val, &cval))
{
r = EINA_ERROR_VALUE_FAILED;
goto end;
}
elm_obj_web_text_matches_highlight_set(obj, cval);
end:
eina_value_flush(&val);
return r;
}
EOAPI EFL_FUNC_BODYV(elm_obj_web_text_matches_highlight_set, Eina_Bool, 0, EFL_FUNC_CALL(highlight), Eina_Bool highlight);
static Eina_Value
__eolian_elm_web_text_matches_highlight_get_reflect(const Eo *obj)
{
Eina_Bool val = elm_obj_web_text_matches_highlight_get(obj);
return eina_value_bool_init(val);
}
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_text_matches_highlight_get, Eina_Bool, 0);
static Eina_Error
__eolian_elm_web_useragent_set_reflect(Eo *obj, Eina_Value val)
{
Eina_Error r = 0; const char *cval;
if (!eina_value_string_convert(&val, &cval))
{
r = EINA_ERROR_VALUE_FAILED;
goto end;
}
elm_obj_web_useragent_set(obj, cval);
end:
eina_value_flush(&val);
return r;
}
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_useragent_set, EFL_FUNC_CALL(user_agent), const char *user_agent);
static Eina_Value
__eolian_elm_web_useragent_get_reflect(const Eo *obj)
{
const char *val = elm_obj_web_useragent_get(obj);
return eina_value_string_init(val);
}
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_useragent_get, const char *, NULL);
static Eina_Error
__eolian_elm_web_url_set_reflect(Eo *obj, Eina_Value val)
{
Eina_Error r = 0; const char *cval;
if (!eina_value_string_convert(&val, &cval))
{
r = EINA_ERROR_VALUE_FAILED;
goto end;
}
elm_obj_web_url_set(obj, cval);
end:
eina_value_flush(&val);
return r;
}
EOAPI EFL_FUNC_BODYV(elm_obj_web_url_set, Eina_Bool, 0, EFL_FUNC_CALL(url), const char *url);
static Eina_Value
__eolian_elm_web_url_get_reflect(const Eo *obj)
{
const char *val = elm_obj_web_url_get(obj);
return eina_value_string_init(val);
}
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_url_get, const char *, NULL);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_bg_color_set, EFL_FUNC_CALL(r, g, b, a), int r, int g, int b, int a);
EOAPI EFL_VOID_FUNC_BODYV_CONST(elm_obj_web_bg_color_get, EFL_FUNC_CALL(r, g, b, a), int *r, int *g, int *b, int *a);
static Eina_Error
__eolian_elm_web_inwin_mode_set_reflect(Eo *obj, Eina_Value val)
{
Eina_Error r = 0; Eina_Bool cval;
if (!eina_value_bool_convert(&val, &cval))
{
r = EINA_ERROR_VALUE_FAILED;
goto end;
}
elm_obj_web_inwin_mode_set(obj, cval);
end:
eina_value_flush(&val);
return r;
}
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_inwin_mode_set, EFL_FUNC_CALL(value), Eina_Bool value);
static Eina_Value
__eolian_elm_web_inwin_mode_get_reflect(const Eo *obj)
{
Eina_Bool val = elm_obj_web_inwin_mode_get(obj);
return eina_value_bool_init(val);
}
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_inwin_mode_get, Eina_Bool, 0);
static Eina_Error
__eolian_elm_web_tab_propagate_set_reflect(Eo *obj, Eina_Value val)
{
Eina_Error r = 0; Eina_Bool cval;
if (!eina_value_bool_convert(&val, &cval))
{
r = EINA_ERROR_VALUE_FAILED;
goto end;
}
elm_obj_web_tab_propagate_set(obj, cval);
end:
eina_value_flush(&val);
return r;
}
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_tab_propagate_set, EFL_FUNC_CALL(propagate), Eina_Bool propagate);
static Eina_Value
__eolian_elm_web_tab_propagate_get_reflect(const Eo *obj)
{
Eina_Bool val = elm_obj_web_tab_propagate_get(obj);
return eina_value_bool_init(val);
}
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_tab_propagate_get, Eina_Bool, 0);
static Eina_Error
__eolian_elm_web_history_enabled_set_reflect(Eo *obj, Eina_Value val)
{
Eina_Error r = 0; Eina_Bool cval;
if (!eina_value_bool_convert(&val, &cval))
{
r = EINA_ERROR_VALUE_FAILED;
goto end;
}
elm_obj_web_history_enabled_set(obj, cval);
end:
eina_value_flush(&val);
return r;
}
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_history_enabled_set, EFL_FUNC_CALL(enable), Eina_Bool enable);
static Eina_Value
__eolian_elm_web_history_enabled_get_reflect(const Eo *obj)
{
Eina_Bool val = elm_obj_web_history_enabled_get(obj);
return eina_value_bool_init(val);
}
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_history_enabled_get, Eina_Bool, 0);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_console_message_hook_set, EFL_FUNC_CALL(func, data), Elm_Web_Console_Message func, void *data);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_window_create_hook_set, EFL_FUNC_CALL(func, data), Elm_Web_Window_Open func, void *data);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_dialog_file_selector_hook_set, EFL_FUNC_CALL(func, data), Elm_Web_Dialog_File_Selector func, void *data);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_dialog_confirm_hook_set, EFL_FUNC_CALL(func, data), Elm_Web_Dialog_Confirm func, void *data);
static Eina_Error
__eolian_elm_web_popup_selected_set_reflect(Eo *obj, Eina_Value val)
{
Eina_Error r = 0; int cval;
if (!eina_value_int_convert(&val, &cval))
{
r = EINA_ERROR_VALUE_FAILED;
goto end;
}
elm_obj_web_popup_selected_set(obj, cval);
end:
eina_value_flush(&val);
return r;
}
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_popup_selected_set, EFL_FUNC_CALL(idx), int idx);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_dialog_prompt_hook_set, EFL_FUNC_CALL(func, data), Elm_Web_Dialog_Prompt func, void *data);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_dialog_alert_hook_set, EFL_FUNC_CALL(func, data), Elm_Web_Dialog_Alert func, void *data);
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_forward_possible_get, Eina_Bool, 0);
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_webkit_view_get, Efl_Canvas_Object *, NULL);
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_back_possible_get, Eina_Bool, 0);
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_load_progress_get, double, 0);
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_selection_get, char *, NULL);
EOAPI EFL_FUNC_BODY_CONST(elm_obj_web_title_get, Eina_Stringshare *, NULL);
EOAPI EFL_FUNC_BODYV(elm_obj_web_navigate, Eina_Bool, 0, EFL_FUNC_CALL(steps), int steps);
EOAPI EFL_FUNC_BODY(elm_obj_web_back, Eina_Bool, 0);
EOAPI EFL_FUNC_BODYV(elm_obj_web_html_string_load, Eina_Bool, 0, EFL_FUNC_CALL(html, base_url, unreachable_url), const char *html, const char *base_url, const char *unreachable_url);
EOAPI EFL_FUNC_BODYV_CONST(elm_obj_web_text_search, Eina_Bool, 0, EFL_FUNC_CALL(string, case_sensitive, forward, wrap), const char *string, Eina_Bool case_sensitive, Eina_Bool forward, Eina_Bool wrap);
EOAPI EFL_FUNC_BODY(elm_obj_web_popup_destroy, Eina_Bool, 0);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_region_show, EFL_FUNC_CALL(x, y, w, h), int x, int y, int w, int h);
EOAPI EFL_FUNC_BODY(elm_obj_web_forward, Eina_Bool, 0);
EOAPI EFL_FUNC_BODYV(elm_obj_web_text_matches_mark, unsigned int, 0, EFL_FUNC_CALL(string, case_sensitive, highlight, limit), const char *string, Eina_Bool case_sensitive, Eina_Bool highlight, unsigned int limit);
EOAPI EFL_VOID_FUNC_BODYV(elm_obj_web_region_bring_in, EFL_FUNC_CALL(x, y, w, h), int x, int y, int w, int h);
EOAPI EFL_FUNC_BODY(elm_obj_web_stop, Eina_Bool, 0);
EOAPI EFL_FUNC_BODYV(elm_obj_web_navigate_possible_get, Eina_Bool, 0, EFL_FUNC_CALL(steps), int steps);
EOAPI EFL_FUNC_BODY(elm_obj_web_reload_full, Eina_Bool, 0);
EOAPI EFL_FUNC_BODY(elm_obj_web_text_matches_unmark_all, Eina_Bool, 0);
EOAPI EFL_FUNC_BODY(elm_obj_web_reload, Eina_Bool, 0);
Efl_Object *_elm_web_efl_object_constructor(Eo *obj, Elm_Web_Data *pd);
static Eina_Bool
_elm_web_class_initializer(Efl_Class *klass)
{
const Efl_Object_Ops *opsp = NULL;
const Efl_Object_Property_Reflection_Ops *ropsp = NULL;
#ifndef ELM_WEB_EXTRA_OPS
#define ELM_WEB_EXTRA_OPS
#endif
EFL_OPS_DEFINE(ops,
EFL_OBJECT_OP_FUNC(elm_obj_web_text_matches_highlight_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_text_matches_highlight_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_useragent_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_useragent_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_url_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_url_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_bg_color_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_bg_color_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_inwin_mode_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_inwin_mode_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_tab_propagate_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_tab_propagate_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_history_enabled_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_history_enabled_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_console_message_hook_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_window_create_hook_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_dialog_file_selector_hook_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_dialog_confirm_hook_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_popup_selected_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_dialog_prompt_hook_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_dialog_alert_hook_set, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_forward_possible_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_webkit_view_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_back_possible_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_load_progress_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_selection_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_title_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_navigate, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_back, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_html_string_load, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_text_search, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_popup_destroy, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_region_show, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_forward, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_text_matches_mark, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_region_bring_in, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_stop, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_navigate_possible_get, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_reload_full, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_text_matches_unmark_all, NULL),
EFL_OBJECT_OP_FUNC(elm_obj_web_reload, NULL),
EFL_OBJECT_OP_FUNC(efl_constructor, _elm_web_efl_object_constructor),
ELM_WEB_EXTRA_OPS
);
opsp = &ops;
static const Efl_Object_Property_Reflection refl_table[] = {
{"text_matches_highlight", __eolian_elm_web_text_matches_highlight_set_reflect, __eolian_elm_web_text_matches_highlight_get_reflect},
{"useragent", __eolian_elm_web_useragent_set_reflect, __eolian_elm_web_useragent_get_reflect},
{"url", __eolian_elm_web_url_set_reflect, __eolian_elm_web_url_get_reflect},
{"inwin_mode", __eolian_elm_web_inwin_mode_set_reflect, __eolian_elm_web_inwin_mode_get_reflect},
{"tab_propagate", __eolian_elm_web_tab_propagate_set_reflect, __eolian_elm_web_tab_propagate_get_reflect},
{"history_enabled", __eolian_elm_web_history_enabled_set_reflect, __eolian_elm_web_history_enabled_get_reflect},
{"popup_selected", __eolian_elm_web_popup_selected_set_reflect, NULL},
};
static const Efl_Object_Property_Reflection_Ops rops = {
refl_table, EINA_C_ARRAY_LENGTH(refl_table)
};
ropsp = &rops;
return efl_class_functions_set(klass, opsp, ropsp);
}
static const Efl_Class_Description _elm_web_class_desc = {
EO_VERSION,
"Elm.Web",
EFL_CLASS_TYPE_REGULAR_NO_INSTANT,
sizeof(Elm_Web_Data),
_elm_web_class_initializer,
_elm_web_class_constructor,
NULL
};
EFL_DEFINE_CLASS(elm_web_class_get, &_elm_web_class_desc, EFL_UI_WIDGET_CLASS, EFL_UI_LEGACY_INTERFACE, EFL_UI_ZOOM_INTERFACE, NULL);
#include "elm_web_eo.legacy.c"
|