Skip to content

Instantly share code, notes, and snippets.

@marcelhollerbach
Last active July 17, 2017 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcelhollerbach/54709216bf64e0bac7531c7dabe81694 to your computer and use it in GitHub Desktop.
Save marcelhollerbach/54709216bf64e0bac7531c7dabe81694 to your computer and use it in GitHub Desktop.
#define EFL_BETA_API_SUPPORT
#include <Eolian.h>
static Eina_Bool
_is_implemented(Eolian_Class *class, Eolian_Function *function_id, Eolian_Function_Type *already_provided)
{
Eolian_Implement *implements;
Eina_Iterator *iter;
iter = eolian_class_implements_get(class);
EINA_ITERATOR_FOREACH(iter, implements)
{
Eolian_Function_Type type;
if (eolian_implement_function_get(implements, &type) != function_id) continue;
if (type == eolian_function_type_get(function_id)) return EINA_TRUE;
/*now the crap beginns */
if (eolian_function_type_get(function_id) == EOLIAN_PROPERTY)
{
if ((type == EOLIAN_PROP_SET && *already_provided == EOLIAN_PROP_GET) ||
(type == EOLIAN_PROP_GET && *already_provided == EOLIAN_PROP_SET))
{
*already_provided = EOLIAN_UNRESOLVED;
return EINA_TRUE;
}
*already_provided = type;
}
}
return EINA_FALSE;
}
static void
extend_with_inherits(const Eolian_Unit *unit, Eina_List **logic_inherits, Eina_List **api_inherits, const Eolian_Class *c)
{
Eina_Iterator *iterator;
Eina_Bool first = EINA_TRUE;
const char *inherit_name;
iterator = eolian_class_inherits_get(c);
EINA_ITERATOR_FOREACH(iterator, inherit_name)
{
const Eolian_Class *inherit = eolian_class_get_by_name(unit, inherit_name);
if (first)
{
if (!eina_list_data_find(*logic_inherits, inherit))
*logic_inherits = eina_list_append(*logic_inherits, inherit);
}
first = EINA_FALSE;
if (!eina_list_data_find(*api_inherits, inherit))
{
*api_inherits = eina_list_append(*api_inherits, inherit);
}
extend_with_inherits(unit, logic_inherits, api_inherits, inherit);
}
}
Eina_List*
check_unimplemented(const Eolian_Unit *src, const char *classname)
{
Eina_List *inherit_list = NULL;
Eina_List *impl_inherit_list = NULL;
Eina_List *function_list = NULL;
Eina_List *node;
const Eolian_Class *head = eolian_class_get_by_file(src, classname);
if (eolian_class_type_get(head) != EOLIAN_CLASS_REGULAR) return NULL;
/* build a list of all inherited classes */
{
inherit_list = eina_list_append(inherit_list, head);
impl_inherit_list = eina_list_append(impl_inherit_list, head);
extend_with_inherits(src, &impl_inherit_list, &inherit_list, head);
}
/* now find every single function available on the object */
{
Eolian_Class *c;
EINA_LIST_FOREACH(inherit_list, node, c)
{
Eolian_Function *id;
Eina_Iterator *itr;
itr = eolian_class_functions_get(c, EOLIAN_PROP_GET);
EINA_ITERATOR_FOREACH(itr, id)
{
function_list = eina_list_append(function_list, id);
}
itr = eolian_class_functions_get(c, EOLIAN_PROP_SET);
EINA_ITERATOR_FOREACH(itr, id)
{
function_list = eina_list_append(function_list, id);
}
itr = eolian_class_functions_get(c, EOLIAN_PROPERTY);
EINA_ITERATOR_FOREACH(itr, id)
{
function_list = eina_list_append(function_list, id);
}
itr = eolian_class_functions_get(c, EOLIAN_METHOD);
EINA_ITERATOR_FOREACH(itr, id)
{
function_list = eina_list_append(function_list, id);
}
}
}
/* now check every single function */
{
Eolian_Function *function_id;
EINA_LIST_FOREACH(function_list, node, function_id)
{
Eina_Bool found = EINA_FALSE;
Eina_List *inherit_node;
Eolian_Class *inherit;
Eolian_Function_Type partly_type = EOLIAN_UNRESOLVED;
//printf("%s\n", eolian_function_name_get(function_id));
EINA_LIST_FOREACH(impl_inherit_list, inherit_node, inherit)
{
if (_is_implemented(inherit, function_id, &partly_type))
{
//printf("Found in %s as regular inherit\n", eolian_class_full_name_get(inherit));
found = EINA_TRUE;
break;
}
}
if (!found)
{
EINA_LIST_FOREACH(inherit_list, inherit_node, inherit)
{
if (eolian_class_type_get(inherit) != EOLIAN_CLASS_MIXIN) continue;
if (_is_implemented(inherit, function_id, &partly_type))
{
//printf("Found in %s as mixin inherit\n", eolian_class_full_name_get(inherit));
found = EINA_TRUE;
break;
}
}
}
if (!found)
printf("Error, function %s is not implemented on %s\n", eolian_function_name_get(function_id), eolian_class_full_name_get(head));
}
}
return NULL;
}
static const char *
_get_filename(const char *path)
{
if (!path)
return NULL;
const char *ret1 = strrchr(path, '/');
const char *ret2 = strrchr(path, '\\');
if (!ret1 && !ret2)
return path;
if (ret1 && ret2)
{
if (ret1 > ret2)
return ret1 + 1;
else
return ret2 + 1;
}
if (ret1)
return ret1 + 1;
return ret2 + 1;
}
int main(int argc, char const *argv[])
{
const char *filename = argv[1];
eolian_init();
eolian_system_directory_scan();
const Eolian_Unit *src = eolian_file_parse(filename);
if (!src)
{
fprintf(stderr, "eolian: could not parse file '%s'\n", filename);
return -1;
}
if (!eolian_database_validate())
{
fprintf(stderr, "eolian: failed validating database\n");
return -1;
}
check_unimplemented(src, _get_filename(filename));
return 0;
}
Error, function pointer_xy is not implemented on Elm.Entry
Error, function pointer_inside is not implemented on Elm.Entry
Error, function pointer_iterate is not implemented on Elm.Entry
Error, function hint_base is not implemented on Elm.Entry
Error, function hint_step is not implemented on Elm.Entry
Error, function language is not implemented on Elm.Entry
Error, function base_scale is not implemented on Elm.Entry
Error, function save is not implemented on Elm.Entry
Error, function redirect is not implemented on Elm.Entry
Error, function root is not implemented on Elm.Entry
Error, function move is not implemented on Elm.Entry
Error, function request_move is not implemented on Elm.Entry
Error, function register is not implemented on Elm.Entry
Error, function register_logical is not implemented on Elm.Entry
Error, function update_redirect is not implemented on Elm.Entry
Error, function update_parent is not implemented on Elm.Entry
Error, function update_children is not implemented on Elm.Entry
Error, function update_order is not implemented on Elm.Entry
Error, function unregister is not implemented on Elm.Entry
Error, function focused is not implemented on Elm.Entry
Error, function fetch is not implemented on Elm.Entry
Error, function logical_end is not implemented on Elm.Entry
Error, function content_remove is not implemented on Elm.Layout.Internal.Part
Error, function content_iterate is not implemented on Elm.Layout.Internal.Part
Error, function content_count is not implemented on Elm.Layout.Internal.Part
Error, function pointer_xy is not implemented on Efl.Ui.Nstate
Error, function pointer_inside is not implemented on Efl.Ui.Nstate
Error, function pointer_iterate is not implemented on Efl.Ui.Nstate
Error, function hint_base is not implemented on Efl.Ui.Nstate
Error, function hint_step is not implemented on Efl.Ui.Nstate
Error, function language is not implemented on Efl.Ui.Nstate
Error, function base_scale is not implemented on Efl.Ui.Nstate
Error, function save is not implemented on Efl.Ui.Nstate
Error, function pointer_xy is not implemented on Elm.Code_Widget
Error, function pointer_inside is not implemented on Elm.Code_Widget
Error, function pointer_iterate is not implemented on Elm.Code_Widget
Error, function hint_base is not implemented on Elm.Code_Widget
Error, function hint_step is not implemented on Elm.Code_Widget
Error, function language is not implemented on Elm.Code_Widget
Error, function base_scale is not implemented on Elm.Code_Widget
Error, function save is not implemented on Elm.Code_Widget
Error, function character is not implemented on Elm.Code_Widget
Error, function string is not implemented on Elm.Code_Widget
Error, function text is not implemented on Elm.Code_Widget
Error, function caret_offset is not implemented on Elm.Code_Widget
Error, function attribute is not implemented on Elm.Code_Widget
Error, function attributes is not implemented on Elm.Code_Widget
Error, function default_attributes is not implemented on Elm.Code_Widget
Error, function character_extents is not implemented on Elm.Code_Widget
Error, function character_count is not implemented on Elm.Code_Widget
Error, function offset_at_point is not implemented on Elm.Code_Widget
Error, function bounded_ranges is not implemented on Elm.Code_Widget
Error, function range_extents is not implemented on Elm.Code_Widget
Error, function selections_count is not implemented on Elm.Code_Widget
Error, function selection is not implemented on Elm.Code_Widget
Error, function selection_add is not implemented on Elm.Code_Widget
Error, function selection_remove is not implemented on Elm.Code_Widget
Error, function pointer_xy is not implemented on Elm.Scroller
Error, function pointer_inside is not implemented on Elm.Scroller
Error, function pointer_iterate is not implemented on Elm.Scroller
Error, function hint_base is not implemented on Elm.Scroller
Error, function hint_step is not implemented on Elm.Scroller
Error, function language is not implemented on Elm.Scroller
Error, function base_scale is not implemented on Elm.Scroller
Error, function save is not implemented on Elm.Scroller
Error, function redirect is not implemented on Elm.Scroller
Error, function root is not implemented on Elm.Scroller
Error, function move is not implemented on Elm.Scroller
Error, function request_move is not implemented on Elm.Scroller
Error, function register is not implemented on Elm.Scroller
Error, function register_logical is not implemented on Elm.Scroller
Error, function update_redirect is not implemented on Elm.Scroller
Error, function update_parent is not implemented on Elm.Scroller
Error, function update_children is not implemented on Elm.Scroller
Error, function update_order is not implemented on Elm.Scroller
Error, function unregister is not implemented on Elm.Scroller
Error, function focused is not implemented on Elm.Scroller
Error, function fetch is not implemented on Elm.Scroller
Error, function logical_end is not implemented on Elm.Scroller
Error, function pointer_xy is not implemented on Efl.Ui.Progressbar
Error, function pointer_inside is not implemented on Efl.Ui.Progressbar
Error, function pointer_iterate is not implemented on Efl.Ui.Progressbar
Error, function hint_base is not implemented on Efl.Ui.Progressbar
Error, function hint_step is not implemented on Efl.Ui.Progressbar
Error, function language is not implemented on Efl.Ui.Progressbar
Error, function base_scale is not implemented on Efl.Ui.Progressbar
Error, function save is not implemented on Efl.Ui.Progressbar
Error, function range_min_max is not implemented on Efl.Ui.Progressbar
Error, function range_interval_enabled is not implemented on Efl.Ui.Progressbar
Error, function range_interval is not implemented on Efl.Ui.Progressbar
Error, function content_remove is not implemented on Elm.Mapbuf.Internal.Part
Error, function content_iterate is not implemented on Elm.Mapbuf.Internal.Part
Error, function content_count is not implemented on Elm.Mapbuf.Internal.Part
Error, function pointer_xy is not implemented on Elm.Genlist
Error, function pointer_inside is not implemented on Elm.Genlist
Error, function pointer_iterate is not implemented on Elm.Genlist
Error, function hint_base is not implemented on Elm.Genlist
Error, function hint_step is not implemented on Elm.Genlist
Error, function language is not implemented on Elm.Genlist
Error, function base_scale is not implemented on Elm.Genlist
Error, function save is not implemented on Elm.Genlist
Error, function redirect is not implemented on Elm.Genlist
Error, function root is not implemented on Elm.Genlist
Error, function move is not implemented on Elm.Genlist
Error, function request_move is not implemented on Elm.Genlist
Error, function register is not implemented on Elm.Genlist
Error, function register_logical is not implemented on Elm.Genlist
Error, function update_redirect is not implemented on Elm.Genlist
Error, function update_parent is not implemented on Elm.Genlist
Error, function update_children is not implemented on Elm.Genlist
Error, function update_order is not implemented on Elm.Genlist
Error, function unregister is not implemented on Elm.Genlist
Error, function focused is not implemented on Elm.Genlist
Error, function fetch is not implemented on Elm.Genlist
Error, function logical_end is not implemented on Elm.Genlist
Error, function content_remove is not implemented on Efl.Ui.Button.Internal.Part
Error, function content_iterate is not implemented on Efl.Ui.Button.Internal.Part
Error, function content_count is not implemented on Efl.Ui.Button.Internal.Part
Error, function pointer_xy is not implemented on Elm.Toolbar
Error, function pointer_inside is not implemented on Elm.Toolbar
Error, function pointer_iterate is not implemented on Elm.Toolbar
Error, function hint_base is not implemented on Elm.Toolbar
Error, function hint_step is not implemented on Elm.Toolbar
Error, function language is not implemented on Elm.Toolbar
Error, function base_scale is not implemented on Elm.Toolbar
Error, function redirect is not implemented on Elm.Toolbar
Error, function root is not implemented on Elm.Toolbar
Error, function move is not implemented on Elm.Toolbar
Error, function request_move is not implemented on Elm.Toolbar
Error, function register is not implemented on Elm.Toolbar
Error, function register_logical is not implemented on Elm.Toolbar
Error, function update_redirect is not implemented on Elm.Toolbar
Error, function update_parent is not implemented on Elm.Toolbar
Error, function update_children is not implemented on Elm.Toolbar
Error, function update_order is not implemented on Elm.Toolbar
Error, function unregister is not implemented on Elm.Toolbar
Error, function focused is not implemented on Elm.Toolbar
Error, function fetch is not implemented on Elm.Toolbar
Error, function logical_end is not implemented on Elm.Toolbar
Error, function pointer_xy is not implemented on Elm.Colorselector
Error, function pointer_inside is not implemented on Elm.Colorselector
Error, function pointer_iterate is not implemented on Elm.Colorselector
Error, function hint_base is not implemented on Elm.Colorselector
Error, function hint_step is not implemented on Elm.Colorselector
Error, function language is not implemented on Elm.Colorselector
Error, function base_scale is not implemented on Elm.Colorselector
Error, function save is not implemented on Elm.Colorselector
Error, function pointer_xy is not implemented on Elm.List
Error, function pointer_inside is not implemented on Elm.List
Error, function pointer_iterate is not implemented on Elm.List
Error, function hint_base is not implemented on Elm.List
Error, function hint_step is not implemented on Elm.List
Error, function language is not implemented on Elm.List
Error, function base_scale is not implemented on Elm.List
Error, function save is not implemented on Elm.List
Error, function redirect is not implemented on Elm.List
Error, function root is not implemented on Elm.List
Error, function move is not implemented on Elm.List
Error, function request_move is not implemented on Elm.List
Error, function register is not implemented on Elm.List
Error, function register_logical is not implemented on Elm.List
Error, function update_redirect is not implemented on Elm.List
Error, function update_parent is not implemented on Elm.List
Error, function update_children is not implemented on Elm.List
Error, function update_order is not implemented on Elm.List
Error, function unregister is not implemented on Elm.List
Error, function focused is not implemented on Elm.List
Error, function fetch is not implemented on Elm.List
Error, function logical_end is not implemented on Elm.List
Error, function pointer_xy is not implemented on Elm.Calendar
Error, function pointer_inside is not implemented on Elm.Calendar
Error, function pointer_iterate is not implemented on Elm.Calendar
Error, function hint_base is not implemented on Elm.Calendar
Error, function hint_step is not implemented on Elm.Calendar
Error, function language is not implemented on Elm.Calendar
Error, function base_scale is not implemented on Elm.Calendar
Error, function save is not implemented on Elm.Calendar
Error, function pointer_xy is not implemented on Efl.Ui.Grid
Error, function pointer_inside is not implemented on Efl.Ui.Grid
Error, function pointer_iterate is not implemented on Efl.Ui.Grid
Error, function hint_base is not implemented on Efl.Ui.Grid
Error, function hint_step is not implemented on Efl.Ui.Grid
Error, function language is not implemented on Efl.Ui.Grid
Error, function base_scale is not implemented on Efl.Ui.Grid
Error, function content_remove is not implemented on Elm.Entry.Internal.Part
Error, function content_iterate is not implemented on Elm.Entry.Internal.Part
Error, function content_count is not implemented on Elm.Entry.Internal.Part
Error, function pointer_xy is not implemented on Elm.Notify
Error, function pointer_inside is not implemented on Elm.Notify
Error, function pointer_iterate is not implemented on Elm.Notify
Error, function hint_base is not implemented on Elm.Notify
Error, function hint_step is not implemented on Elm.Notify
Error, function language is not implemented on Elm.Notify
Error, function base_scale is not implemented on Elm.Notify
Error, function content_remove is not implemented on Elm.Notify
Error, function content_iterate is not implemented on Elm.Notify
Error, function content_count is not implemented on Elm.Notify
Error, function content_remove is not implemented on Elm.Scroller.Internal.Part
Error, function content_iterate is not implemented on Elm.Scroller.Internal.Part
Error, function content_count is not implemented on Elm.Scroller.Internal.Part
Error, function content_remove is not implemented on Elm_Bubble.Internal.Part
Error, function content_iterate is not implemented on Elm_Bubble.Internal.Part
Error, function content_count is not implemented on Elm_Bubble.Internal.Part
Error, function pointer_xy is not implemented on Efl.Ui.Box
Error, function pointer_inside is not implemented on Efl.Ui.Box
Error, function pointer_iterate is not implemented on Efl.Ui.Box
Error, function hint_base is not implemented on Efl.Ui.Box
Error, function hint_step is not implemented on Efl.Ui.Box
Error, function language is not implemented on Efl.Ui.Box
Error, function base_scale is not implemented on Efl.Ui.Box
Error, function content_remove is not implemented on Elm.Multibuttonentry.Internal.Part
Error, function content_iterate is not implemented on Elm.Multibuttonentry.Internal.Part
Error, function content_count is not implemented on Elm.Multibuttonentry.Internal.Part
Error, function pointer_xy is not implemented on Efl.Ui.Button
Error, function pointer_inside is not implemented on Efl.Ui.Button
Error, function pointer_iterate is not implemented on Efl.Ui.Button
Error, function hint_base is not implemented on Efl.Ui.Button
Error, function hint_step is not implemented on Efl.Ui.Button
Error, function language is not implemented on Efl.Ui.Button
Error, function base_scale is not implemented on Efl.Ui.Button
Error, function save is not implemented on Efl.Ui.Button
Error, function pointer_xy is not implemented on Efl.Ui.Grid.Static
Error, function pointer_inside is not implemented on Efl.Ui.Grid.Static
Error, function pointer_iterate is not implemented on Efl.Ui.Grid.Static
Error, function hint_base is not implemented on Efl.Ui.Grid.Static
Error, function hint_step is not implemented on Efl.Ui.Grid.Static
Error, function language is not implemented on Efl.Ui.Grid.Static
Error, function base_scale is not implemented on Efl.Ui.Grid.Static
Error, function pointer_xy is not implemented on Efl.Ui.Image.Zoomable
Error, function pointer_inside is not implemented on Efl.Ui.Image.Zoomable
Error, function pointer_iterate is not implemented on Efl.Ui.Image.Zoomable
Error, function hint_base is not implemented on Efl.Ui.Image.Zoomable
Error, function hint_step is not implemented on Efl.Ui.Image.Zoomable
Error, function language is not implemented on Efl.Ui.Image.Zoomable
Error, function base_scale is not implemented on Efl.Ui.Image.Zoomable
Error, function scale_type is not implemented on Efl.Ui.Image.Zoomable
Error, function scalable is not implemented on Efl.Ui.Image.Zoomable
Error, function align is not implemented on Efl.Ui.Image.Zoomable
Error, function drag_target is not implemented on Efl.Ui.Image.Zoomable
Error, function mmap is not implemented on Efl.Ui.Image.Zoomable
Error, function save is not implemented on Efl.Ui.Image.Zoomable
Error, function smooth_scale is not implemented on Efl.Ui.Image.Zoomable
Error, function ratio is not implemented on Efl.Ui.Image.Zoomable
Error, function border is not implemented on Efl.Ui.Image.Zoomable
Error, function border_scale is not implemented on Efl.Ui.Image.Zoomable
Error, function border_center_fill is not implemented on Efl.Ui.Image.Zoomable
Error, function content_hint is not implemented on Efl.Ui.Image.Zoomable
Error, function scale_hint is not implemented on Efl.Ui.Image.Zoomable
Error, function load_size is not implemented on Efl.Ui.Image.Zoomable
Error, function load_dpi is not implemented on Efl.Ui.Image.Zoomable
Error, function load_region_support is not implemented on Efl.Ui.Image.Zoomable
Error, function load_region is not implemented on Efl.Ui.Image.Zoomable
Error, function load_orientation is not implemented on Efl.Ui.Image.Zoomable
Error, function load_scale_down is not implemented on Efl.Ui.Image.Zoomable
Error, function load_error is not implemented on Efl.Ui.Image.Zoomable
Error, function load_skip_header is not implemented on Efl.Ui.Image.Zoomable
Error, function load_async_start is not implemented on Efl.Ui.Image.Zoomable
Error, function load_async_cancel is not implemented on Efl.Ui.Image.Zoomable
Error, function position is not implemented on Efl.Ui.Image.Zoomable
Error, function progress is not implemented on Efl.Ui.Image.Zoomable
Error, function play_speed is not implemented on Efl.Ui.Image.Zoomable
Error, function volume is not implemented on Efl.Ui.Image.Zoomable
Error, function mute is not implemented on Efl.Ui.Image.Zoomable
Error, function length is not implemented on Efl.Ui.Image.Zoomable
Error, function seekable is not implemented on Efl.Ui.Image.Zoomable
Error, function view_size is not implemented on Efl.Ui.Image.Zoomable
Error, function animation is not implemented on Efl.Ui.Image.Zoomable
Error, function play is not implemented on Efl.Ui.Image.Zoomable
Error, function perspective is not implemented on Efl.Ui.Image.Zoomable
Error, function transition_duration_factor is not implemented on Efl.Ui.Image.Zoomable
Error, function load_error is not implemented on Efl.Ui.Image.Zoomable
Error, function calc_update_hints is not implemented on Efl.Ui.Image.Zoomable
Error, function group_size_min is not implemented on Efl.Ui.Image.Zoomable
Error, function group_size_max is not implemented on Efl.Ui.Image.Zoomable
Error, function group_data is not implemented on Efl.Ui.Image.Zoomable
Error, function global_color_class is not implemented on Efl.Ui.Image.Zoomable
Error, function color_class is not implemented on Efl.Ui.Image.Zoomable
Error, function color_class_description is not implemented on Efl.Ui.Image.Zoomable
Error, function text_class is not implemented on Efl.Ui.Image.Zoomable
Error, function size_class is not implemented on Efl.Ui.Image.Zoomable
Error, function text_change_cb is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_autocapital_type is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_prediction_allow is not implemented on Efl.Ui.Image.Zoomable
Error, function item_provider is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_select_allow is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_selection is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_imf_context is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_hint is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_imdata is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_layout is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_language is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_layout_variation is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_enabled is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_return_key_disabled is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_return_key_type is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_show_on_demand is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_prediction_hint is not implemented on Efl.Ui.Image.Zoomable
Error, function seat is not implemented on Efl.Ui.Image.Zoomable
Error, function seat_name is not implemented on Efl.Ui.Image.Zoomable
Error, function preload is not implemented on Efl.Ui.Image.Zoomable
Error, function size_min_calc is not implemented on Efl.Ui.Image.Zoomable
Error, function size_min_restricted_calc is not implemented on Efl.Ui.Image.Zoomable
Error, function parts_extends_calc is not implemented on Efl.Ui.Image.Zoomable
Error, function calc_force is not implemented on Efl.Ui.Image.Zoomable
Error, function calc_freeze is not implemented on Efl.Ui.Image.Zoomable
Error, function calc_thaw is not implemented on Efl.Ui.Image.Zoomable
Error, function message_send is not implemented on Efl.Ui.Image.Zoomable
Error, function signal_callback_add is not implemented on Efl.Ui.Image.Zoomable
Error, function signal_callback_del is not implemented on Efl.Ui.Image.Zoomable
Error, function signal_emit is not implemented on Efl.Ui.Image.Zoomable
Error, function message_signal_process is not implemented on Efl.Ui.Image.Zoomable
Error, function color_class_clear is not implemented on Efl.Ui.Image.Zoomable
Error, function color_class_del is not implemented on Efl.Ui.Image.Zoomable
Error, function text_class_del is not implemented on Efl.Ui.Image.Zoomable
Error, function size_class_del is not implemented on Efl.Ui.Image.Zoomable
Error, function access_part_iterate is not implemented on Efl.Ui.Image.Zoomable
Error, function part_exists is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_select_begin is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_select_abort is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_select_extend is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_select_all is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_select_none is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_imf_context_reset is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_show is not implemented on Efl.Ui.Image.Zoomable
Error, function part_text_input_panel_hide is not implemented on Efl.Ui.Image.Zoomable
Error, function content is not implemented on Efl.Ui.Image.Zoomable
Error, function content_unset is not implemented on Efl.Ui.Image.Zoomable
Error, function content_remove is not implemented on Efl.Ui.Image.Zoomable
Error, function content_iterate is not implemented on Efl.Ui.Image.Zoomable
Error, function content_count is not implemented on Efl.Ui.Image.Zoomable
Error, function part is not implemented on Efl.Ui.Image.Zoomable
Error, function update is not implemented on Efl.Ui.Image.Zoomable
Error, function model is not implemented on Efl.Ui.Image.Zoomable
Error, function connect is not implemented on Efl.Ui.Image.Zoomable
Error, function redirect is not implemented on Efl.Ui.Image.Zoomable
Error, function root is not implemented on Efl.Ui.Image.Zoomable
Error, function move is not implemented on Efl.Ui.Image.Zoomable
Error, function request_move is not implemented on Efl.Ui.Image.Zoomable
Error, function register is not implemented on Efl.Ui.Image.Zoomable
Error, function register_logical is not implemented on Efl.Ui.Image.Zoomable
Error, function update_redirect is not implemented on Efl.Ui.Image.Zoomable
Error, function update_parent is not implemented on Efl.Ui.Image.Zoomable
Error, function update_children is not implemented on Efl.Ui.Image.Zoomable
Error, function update_order is not implemented on Efl.Ui.Image.Zoomable
Error, function unregister is not implemented on Efl.Ui.Image.Zoomable
Error, function focused is not implemented on Efl.Ui.Image.Zoomable
Error, function fetch is not implemented on Efl.Ui.Image.Zoomable
Error, function logical_end is not implemented on Efl.Ui.Image.Zoomable
Error, function content_remove is not implemented on Elm.Dayselector.Internal.Part
Error, function content_iterate is not implemented on Elm.Dayselector.Internal.Part
Error, function content_count is not implemented on Elm.Dayselector.Internal.Part
Error, function orientation is not implemented on Efl.Ui.Layout_Internal.Box
Error, function pointer_xy is not implemented on Elm.Gesture_Layer
Error, function pointer_inside is not implemented on Elm.Gesture_Layer
Error, function pointer_iterate is not implemented on Elm.Gesture_Layer
Error, function hint_base is not implemented on Elm.Gesture_Layer
Error, function hint_step is not implemented on Elm.Gesture_Layer
Error, function language is not implemented on Elm.Gesture_Layer
Error, function base_scale is not implemented on Elm.Gesture_Layer
Error, function child_select is not implemented on Elm.Menu.Item
Error, function selected_child_deselect is not implemented on Elm.Menu.Item
Error, function is_child_selected is not implemented on Elm.Menu.Item
Error, function all_children_select is not implemented on Elm.Menu.Item
Error, function clear is not implemented on Elm.Menu.Item
Error, function child_deselect is not implemented on Elm.Menu.Item
Error, function pointer_xy is not implemented on Efl.Ui.Box.Stack
Error, function pointer_inside is not implemented on Efl.Ui.Box.Stack
Error, function pointer_iterate is not implemented on Efl.Ui.Box.Stack
Error, function hint_base is not implemented on Efl.Ui.Box.Stack
Error, function hint_step is not implemented on Efl.Ui.Box.Stack
Error, function language is not implemented on Efl.Ui.Box.Stack
Error, function base_scale is not implemented on Efl.Ui.Box.Stack
Error, function pointer_xy is not implemented on Efl.Ui.Image
Error, function pointer_inside is not implemented on Efl.Ui.Image
Error, function pointer_iterate is not implemented on Efl.Ui.Image
Error, function hint_base is not implemented on Efl.Ui.Image
Error, function hint_step is not implemented on Efl.Ui.Image
Error, function language is not implemented on Efl.Ui.Image
Error, function base_scale is not implemented on Efl.Ui.Image
Error, function mmap is not implemented on Efl.Ui.Image
Error, function save is not implemented on Efl.Ui.Image
Error, function ratio is not implemented on Efl.Ui.Image
Error, function border is not implemented on Efl.Ui.Image
Error, function border_scale is not implemented on Efl.Ui.Image
Error, function border_center_fill is not implemented on Efl.Ui.Image
Error, function content_hint is not implemented on Efl.Ui.Image
Error, function scale_hint is not implemented on Efl.Ui.Image
Error, function load_dpi is not implemented on Efl.Ui.Image
Error, function load_region_support is not implemented on Efl.Ui.Image
Error, function load_region is not implemented on Efl.Ui.Image
Error, function load_orientation is not implemented on Efl.Ui.Image
Error, function load_scale_down is not implemented on Efl.Ui.Image
Error, function load_error is not implemented on Efl.Ui.Image
Error, function load_skip_header is not implemented on Efl.Ui.Image
Error, function load_async_start is not implemented on Efl.Ui.Image
Error, function load_async_cancel is not implemented on Efl.Ui.Image
Error, function position is not implemented on Efl.Ui.Image
Error, function progress is not implemented on Efl.Ui.Image
Error, function play_speed is not implemented on Efl.Ui.Image
Error, function volume is not implemented on Efl.Ui.Image
Error, function mute is not implemented on Efl.Ui.Image
Error, function length is not implemented on Efl.Ui.Image
Error, function seekable is not implemented on Efl.Ui.Image
Error, function view_size is not implemented on Efl.Ui.Image
Error, function animation is not implemented on Efl.Ui.Image
Error, function play is not implemented on Efl.Ui.Image
Error, function perspective is not implemented on Efl.Ui.Image
Error, function transition_duration_factor is not implemented on Efl.Ui.Image
Error, function load_error is not implemented on Efl.Ui.Image
Error, function calc_update_hints is not implemented on Efl.Ui.Image
Error, function group_data is not implemented on Efl.Ui.Image
Error, function global_color_class is not implemented on Efl.Ui.Image
Error, function color_class is not implemented on Efl.Ui.Image
Error, function color_class_description is not implemented on Efl.Ui.Image
Error, function text_class is not implemented on Efl.Ui.Image
Error, function size_class is not implemented on Efl.Ui.Image
Error, function text_change_cb is not implemented on Efl.Ui.Image
Error, function part_text_autocapital_type is not implemented on Efl.Ui.Image
Error, function part_text_prediction_allow is not implemented on Efl.Ui.Image
Error, function item_provider is not implemented on Efl.Ui.Image
Error, function part_text_select_allow is not implemented on Efl.Ui.Image
Error, function part_text_selection is not implemented on Efl.Ui.Image
Error, function part_text_imf_context is not implemented on Efl.Ui.Image
Error, function part_text_input_hint is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_imdata is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_layout is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_language is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_layout_variation is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_enabled is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_return_key_disabled is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_return_key_type is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_show_on_demand is not implemented on Efl.Ui.Image
Error, function part_text_prediction_hint is not implemented on Efl.Ui.Image
Error, function seat is not implemented on Efl.Ui.Image
Error, function seat_name is not implemented on Efl.Ui.Image
Error, function preload is not implemented on Efl.Ui.Image
Error, function size_min_restricted_calc is not implemented on Efl.Ui.Image
Error, function parts_extends_calc is not implemented on Efl.Ui.Image
Error, function calc_freeze is not implemented on Efl.Ui.Image
Error, function calc_thaw is not implemented on Efl.Ui.Image
Error, function message_send is not implemented on Efl.Ui.Image
Error, function signal_callback_add is not implemented on Efl.Ui.Image
Error, function signal_callback_del is not implemented on Efl.Ui.Image
Error, function message_signal_process is not implemented on Efl.Ui.Image
Error, function color_class_clear is not implemented on Efl.Ui.Image
Error, function color_class_del is not implemented on Efl.Ui.Image
Error, function text_class_del is not implemented on Efl.Ui.Image
Error, function size_class_del is not implemented on Efl.Ui.Image
Error, function access_part_iterate is not implemented on Efl.Ui.Image
Error, function part_exists is not implemented on Efl.Ui.Image
Error, function part_text_select_begin is not implemented on Efl.Ui.Image
Error, function part_text_select_abort is not implemented on Efl.Ui.Image
Error, function part_text_select_extend is not implemented on Efl.Ui.Image
Error, function part_text_select_all is not implemented on Efl.Ui.Image
Error, function part_text_select_none is not implemented on Efl.Ui.Image
Error, function part_text_imf_context_reset is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_show is not implemented on Efl.Ui.Image
Error, function part_text_input_panel_hide is not implemented on Efl.Ui.Image
Error, function content is not implemented on Efl.Ui.Image
Error, function content_unset is not implemented on Efl.Ui.Image
Error, function content_remove is not implemented on Efl.Ui.Image
Error, function content_iterate is not implemented on Efl.Ui.Image
Error, function content_count is not implemented on Efl.Ui.Image
Error, function part is not implemented on Efl.Ui.Image
Error, function update is not implemented on Efl.Ui.Image
Error, function pointer_xy is not implemented on Elm.Fileselector
Error, function pointer_inside is not implemented on Elm.Fileselector
Error, function pointer_iterate is not implemented on Elm.Fileselector
Error, function hint_base is not implemented on Elm.Fileselector
Error, function hint_step is not implemented on Elm.Fileselector
Error, function language is not implemented on Elm.Fileselector
Error, function base_scale is not implemented on Elm.Fileselector
Error, function save is not implemented on Elm.Fileselector
Error, function pointer_xy is not implemented on Elm.Gengrid.Pan
Error, function pointer_inside is not implemented on Elm.Gengrid.Pan
Error, function pointer_iterate is not implemented on Elm.Gengrid.Pan
Error, function hint_base is not implemented on Elm.Gengrid.Pan
Error, function hint_step is not implemented on Elm.Gengrid.Pan
Error, function content_remove is not implemented on Efl.Ui.Progressbar.Internal.Part
Error, function content_iterate is not implemented on Efl.Ui.Progressbar.Internal.Part
Error, function content_count is not implemented on Efl.Ui.Progressbar.Internal.Part
Error, function span_size is not implemented on Efl.Ui.Progressbar.Internal.Part
Error, function range_min_max is not implemented on Efl.Ui.Progressbar.Internal.Part
Error, function range_unit_format is not implemented on Efl.Ui.Progressbar.Internal.Part
Error, function range_interval_enabled is not implemented on Efl.Ui.Progressbar.Internal.Part
Error, function range_interval is not implemented on Efl.Ui.Progressbar.Internal.Part
Error, function pointer_xy is not implemented on Elm.Panes
Error, function pointer_inside is not implemented on Elm.Panes
Error, function pointer_iterate is not implemented on Elm.Panes
Error, function hint_base is not implemented on Elm.Panes
Error, function hint_step is not implemented on Elm.Panes
Error, function language is not implemented on Elm.Panes
Error, function base_scale is not implemented on Elm.Panes
Error, function save is not implemented on Elm.Panes
Error, function pointer_xy is not implemented on Elm.Label
Error, function pointer_inside is not implemented on Elm.Label
Error, function pointer_iterate is not implemented on Elm.Label
Error, function hint_base is not implemented on Elm.Label
Error, function hint_step is not implemented on Elm.Label
Error, function language is not implemented on Elm.Label
Error, function base_scale is not implemented on Elm.Label
Error, function save is not implemented on Elm.Label
Error, function pointer_xy is not implemented on Elm.Map.Pan
Error, function pointer_inside is not implemented on Elm.Map.Pan
Error, function pointer_iterate is not implemented on Elm.Map.Pan
Error, function hint_base is not implemented on Elm.Map.Pan
Error, function hint_step is not implemented on Elm.Map.Pan
Error, function pointer_xy is not implemented on Elm.Panel
Error, function pointer_inside is not implemented on Elm.Panel
Error, function pointer_iterate is not implemented on Elm.Panel
Error, function hint_base is not implemented on Elm.Panel
Error, function hint_step is not implemented on Elm.Panel
Error, function language is not implemented on Elm.Panel
Error, function base_scale is not implemented on Elm.Panel
Error, function save is not implemented on Elm.Panel
Error, function redirect is not implemented on Elm.Panel
Error, function root is not implemented on Elm.Panel
Error, function move is not implemented on Elm.Panel
Error, function request_move is not implemented on Elm.Panel
Error, function register is not implemented on Elm.Panel
Error, function register_logical is not implemented on Elm.Panel
Error, function update_redirect is not implemented on Elm.Panel
Error, function update_parent is not implemented on Elm.Panel
Error, function update_children is not implemented on Elm.Panel
Error, function update_order is not implemented on Elm.Panel
Error, function unregister is not implemented on Elm.Panel
Error, function focused is not implemented on Elm.Panel
Error, function fetch is not implemented on Elm.Panel
Error, function logical_end is not implemented on Elm.Panel
Error, function pointer_xy is not implemented on Efl.Ui.Text
Error, function pointer_inside is not implemented on Efl.Ui.Text
Error, function pointer_iterate is not implemented on Efl.Ui.Text
Error, function hint_base is not implemented on Efl.Ui.Text
Error, function hint_step is not implemented on Efl.Ui.Text
Error, function language is not implemented on Efl.Ui.Text
Error, function base_scale is not implemented on Efl.Ui.Text
Error, function save is not implemented on Efl.Ui.Text
Error, function redirect is not implemented on Efl.Ui.Text
Error, function root is not implemented on Efl.Ui.Text
Error, function move is not implemented on Efl.Ui.Text
Error, function request_move is not implemented on Efl.Ui.Text
Error, function register is not implemented on Efl.Ui.Text
Error, function register_logical is not implemented on Efl.Ui.Text
Error, function update_redirect is not implemented on Efl.Ui.Text
Error, function update_parent is not implemented on Efl.Ui.Text
Error, function update_children is not implemented on Efl.Ui.Text
Error, function update_order is not implemented on Efl.Ui.Text
Error, function unregister is not implemented on Efl.Ui.Text
Error, function focused is not implemented on Efl.Ui.Text
Error, function fetch is not implemented on Efl.Ui.Text
Error, function logical_end is not implemented on Efl.Ui.Text
Error, function selection_allowed is not implemented on Efl.Ui.Text
Error, function selection_cursors is not implemented on Efl.Ui.Text
Error, function editable is not implemented on Efl.Ui.Text
Error, function font is not implemented on Efl.Ui.Text
Error, function font_source is not implemented on Efl.Ui.Text
Error, function font_fallbacks is not implemented on Efl.Ui.Text
Error, function font_weight is not implemented on Efl.Ui.Text
Error, function font_slant is not implemented on Efl.Ui.Text
Error, function font_width is not implemented on Efl.Ui.Text
Error, function font_lang is not implemented on Efl.Ui.Text
Error, function ellipsis is not implemented on Efl.Ui.Text
Error, function wrap is not implemented on Efl.Ui.Text
Error, function multiline is not implemented on Efl.Ui.Text
Error, function halign is not implemented on Efl.Ui.Text
Error, function valign is not implemented on Efl.Ui.Text
Error, function linegap is not implemented on Efl.Ui.Text
Error, function linerelgap is not implemented on Efl.Ui.Text
Error, function tabstops is not implemented on Efl.Ui.Text
Error, function password is not implemented on Efl.Ui.Text
Error, function replacement_char is not implemented on Efl.Ui.Text
Error, function normal_color is not implemented on Efl.Ui.Text
Error, function backing_type is not implemented on Efl.Ui.Text
Error, function backing_color is not implemented on Efl.Ui.Text
Error, function underline_type is not implemented on Efl.Ui.Text
Error, function underline_color is not implemented on Efl.Ui.Text
Error, function underline_height is not implemented on Efl.Ui.Text
Error, function underline_dashed_color is not implemented on Efl.Ui.Text
Error, function underline_dashed_width is not implemented on Efl.Ui.Text
Error, function underline_dashed_gap is not implemented on Efl.Ui.Text
Error, function underline2_type is not implemented on Efl.Ui.Text
Error, function underline2_color is not implemented on Efl.Ui.Text
Error, function strikethrough_type is not implemented on Efl.Ui.Text
Error, function strikethrough_color is not implemented on Efl.Ui.Text
Error, function effect_type is not implemented on Efl.Ui.Text
Error, function outline_color is not implemented on Efl.Ui.Text
Error, function shadow_direction is not implemented on Efl.Ui.Text
Error, function shadow_color is not implemented on Efl.Ui.Text
Error, function glow_color is not implemented on Efl.Ui.Text
Error, function glow2_color is not implemented on Efl.Ui.Text
Error, function gfx_filter is not implemented on Efl.Ui.Text
Error, function pointer_xy is not implemented on Elm.Plug
Error, function pointer_inside is not implemented on Elm.Plug
Error, function pointer_iterate is not implemented on Elm.Plug
Error, function hint_base is not implemented on Elm.Plug
Error, function hint_step is not implemented on Elm.Plug
Error, function language is not implemented on Elm.Plug
Error, function base_scale is not implemented on Elm.Plug
Error, function content_remove is not implemented on Elm.Panel.Internal.Part
Error, function content_iterate is not implemented on Elm.Panel.Internal.Part
Error, function content_count is not implemented on Elm.Panel.Internal.Part
Error, function content_remove is not implemented on Efl.Ui.Slider.Internal.Part
Error, function content_iterate is not implemented on Efl.Ui.Slider.Internal.Part
Error, function content_count is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_base is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_step is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_aspect is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_max is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_request is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_restricted_min is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_combined_min is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_margin is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_weight is not implemented on Efl.Ui.Slider.Internal.Part
Error, function hint_align is not implemented on Efl.Ui.Slider.Internal.Part
Error, function pointer_xy is not implemented on Elm.Genlist.Pan
Error, function pointer_inside is not implemented on Elm.Genlist.Pan
Error, function pointer_iterate is not implemented on Elm.Genlist.Pan
Error, function hint_base is not implemented on Elm.Genlist.Pan
Error, function hint_step is not implemented on Elm.Genlist.Pan
Error, function pointer_xy is not implemented on Elm.Conformant
Error, function pointer_inside is not implemented on Elm.Conformant
Error, function pointer_iterate is not implemented on Elm.Conformant
Error, function hint_base is not implemented on Elm.Conformant
Error, function hint_step is not implemented on Elm.Conformant
Error, function language is not implemented on Elm.Conformant
Error, function base_scale is not implemented on Elm.Conformant
Error, function save is not implemented on Elm.Conformant
Error, function content_remove is not implemented on Elm.Hover.Internal.Part
Error, function content_iterate is not implemented on Elm.Hover.Internal.Part
Error, function content_count is not implemented on Elm.Hover.Internal.Part
Error, function pointer_xy is not implemented on Efl.Ui.Check
Error, function pointer_inside is not implemented on Efl.Ui.Check
Error, function pointer_iterate is not implemented on Efl.Ui.Check
Error, function hint_base is not implemented on Efl.Ui.Check
Error, function hint_step is not implemented on Efl.Ui.Check
Error, function language is not implemented on Efl.Ui.Check
Error, function base_scale is not implemented on Efl.Ui.Check
Error, function save is not implemented on Efl.Ui.Check
Error, function pointer_xy is not implemented on Elm.Spinner
Error, function pointer_inside is not implemented on Elm.Spinner
Error, function pointer_iterate is not implemented on Elm.Spinner
Error, function hint_base is not implemented on Elm.Spinner
Error, function hint_step is not implemented on Elm.Spinner
Error, function language is not implemented on Elm.Spinner
Error, function base_scale is not implemented on Elm.Spinner
Error, function save is not implemented on Elm.Spinner
Error, function content_remove is not implemented on Elm.Fileselector.Entry.Internal.Part
Error, function content_iterate is not implemented on Elm.Fileselector.Entry.Internal.Part
Error, function content_count is not implemented on Elm.Fileselector.Entry.Internal.Part
Error, function language is not implemented on Efl.Ui.Win
Error, function base_scale is not implemented on Efl.Ui.Win
Error, function seats is not implemented on Efl.Ui.Win
Error, function content_remove is not implemented on Efl.Ui.Win
Error, function content_iterate is not implemented on Efl.Ui.Win
Error, function content_count is not implemented on Efl.Ui.Win
Error, function profile is not implemented on Efl.Ui.Win
Error, function save is not implemented on Efl.Ui.Win
Error, function profile_iterate is not implemented on Efl.Ui.Win
Error, function profile_exists is not implemented on Efl.Ui.Win
Error, function profile_dir_get is not implemented on Efl.Ui.Win
Error, function profile_derived_add is not implemented on Efl.Ui.Win
Error, function profile_derived_del is not implemented on Efl.Ui.Win
Error, function config_set is not implemented on Efl.Ui.Win
Error, function config_get is not implemented on Efl.Ui.Win
Error, function config_list_get is not implemented on Efl.Ui.Win
Error, function redirect is not implemented on Efl.Ui.Win
Error, function border_elements is not implemented on Efl.Ui.Win
Error, function root is not implemented on Efl.Ui.Win
Error, function move is not implemented on Efl.Ui.Win
Error, function request_move is not implemented on Efl.Ui.Win
Error, function register is not implemented on Efl.Ui.Win
Error, function register_logical is not implemented on Efl.Ui.Win
Error, function update_redirect is not implemented on Efl.Ui.Win
Error, function update_parent is not implemented on Efl.Ui.Win
Error, function update_children is not implemented on Efl.Ui.Win
Error, function update_order is not implemented on Efl.Ui.Win
Error, function unregister is not implemented on Efl.Ui.Win
Error, function focus is not implemented on Efl.Ui.Win
Error, function focused is not implemented on Efl.Ui.Win
Error, function fetch is not implemented on Efl.Ui.Win
Error, function logical_end is not implemented on Efl.Ui.Win
Error, function pointer_xy is not implemented on Elm.Bg
Error, function pointer_inside is not implemented on Elm.Bg
Error, function pointer_iterate is not implemented on Elm.Bg
Error, function hint_base is not implemented on Elm.Bg
Error, function hint_step is not implemented on Elm.Bg
Error, function language is not implemented on Elm.Bg
Error, function base_scale is not implemented on Elm.Bg
Error, function save is not implemented on Elm.Bg
Error, function pointer_xy is not implemented on Elm.Menu
Error, function pointer_inside is not implemented on Elm.Menu
Error, function pointer_iterate is not implemented on Elm.Menu
Error, function hint_base is not implemented on Elm.Menu
Error, function hint_step is not implemented on Elm.Menu
Error, function language is not implemented on Elm.Menu
Error, function base_scale is not implemented on Elm.Menu
Error, function child_select is not implemented on Elm.Menu
Error, function selected_child_deselect is not implemented on Elm.Menu
Error, function is_child_selected is not implemented on Elm.Menu
Error, function all_children_select is not implemented on Elm.Menu
Error, function clear is not implemented on Elm.Menu
Error, function child_deselect is not implemented on Elm.Menu
Error, function redirect is not implemented on Elm.Menu
Error, function border_elements is not implemented on Elm.Menu
Error, function root is not implemented on Elm.Menu
Error, function move is not implemented on Elm.Menu
Error, function request_move is not implemented on Elm.Menu
Error, function register is not implemented on Elm.Menu
Error, function register_logical is not implemented on Elm.Menu
Error, function update_redirect is not implemented on Elm.Menu
Error, function update_parent is not implemented on Elm.Menu
Error, function update_children is not implemented on Elm.Menu
Error, function update_order is not implemented on Elm.Menu
Error, function unregister is not implemented on Elm.Menu
Error, function focus is not implemented on Elm.Menu
Error, function focused is not implemented on Elm.Menu
Error, function fetch is not implemented on Elm.Menu
Error, function logical_end is not implemented on Elm.Menu
Error, function pointer_xy is not implemented on Elm.Combobox
Error, function pointer_inside is not implemented on Elm.Combobox
Error, function pointer_iterate is not implemented on Elm.Combobox
Error, function hint_base is not implemented on Elm.Combobox
Error, function hint_step is not implemented on Elm.Combobox
Error, function language is not implemented on Elm.Combobox
Error, function base_scale is not implemented on Elm.Combobox
Error, function save is not implemented on Elm.Combobox
Error, function scrollable is not implemented on Elm.Combobox
Error, function input_panel_show_on_demand is not implemented on Elm.Combobox
Error, function context_menu_disabled is not implemented on Elm.Combobox
Error, function cnp_mode is not implemented on Elm.Combobox
Error, function file_text_format is not implemented on Elm.Combobox
Error, function input_panel_language is not implemented on Elm.Combobox
Error, function selection_handler_disabled is not implemented on Elm.Combobox
Error, function input_panel_layout_variation is not implemented on Elm.Combobox
Error, function autocapital_type is not implemented on Elm.Combobox
Error, function editable is not implemented on Elm.Combobox
Error, function anchor_hover_style is not implemented on Elm.Combobox
Error, function single_line is not implemented on Elm.Combobox
Error, function password is not implemented on Elm.Combobox
Error, function input_panel_return_key_disabled is not implemented on Elm.Combobox
Error, function autosave is not implemented on Elm.Combobox
Error, function anchor_hover_parent is not implemented on Elm.Combobox
Error, function prediction_allow is not implemented on Elm.Combobox
Error, function input_hint is not implemented on Elm.Combobox
Error, function input_panel_layout is not implemented on Elm.Combobox
Error, function input_panel_return_key_type is not implemented on Elm.Combobox
Error, function input_panel_enabled is not implemented on Elm.Combobox
Error, function line_wrap is not implemented on Elm.Combobox
Error, function cursor_pos is not implemented on Elm.Combobox
Error, function icon_visible is not implemented on Elm.Combobox
Error, function cursor_line_end is not implemented on Elm.Combobox
Error, function select_region is not implemented on Elm.Combobox
Error, function input_panel_return_key_autoenabled is not implemented on Elm.Combobox
Error, function end_visible is not implemented on Elm.Combobox
Error, function cursor_begin is not implemented on Elm.Combobox
Error, function cursor_line_begin is not implemented on Elm.Combobox
Error, function cursor_end is not implemented on Elm.Combobox
Error, function textblock is not implemented on Elm.Combobox
Error, function cursor_geometry is not implemented on Elm.Combobox
Error, function imf_context is not implemented on Elm.Combobox
Error, function cursor_is_format is not implemented on Elm.Combobox
Error, function cursor_content is not implemented on Elm.Combobox
Error, function selection is not implemented on Elm.Combobox
Error, function cursor_is_visible_format is not implemented on Elm.Combobox
Error, function select_allow is not implemented on Elm.Combobox
Error, function cursor_prev is not implemented on Elm.Combobox
Error, function text_style_user_pop is not implemented on Elm.Combobox
Error, function item_provider_prepend is not implemented on Elm.Combobox
Error, function input_panel_show is not implemented on Elm.Combobox
Error, function imf_context_reset is not implemented on Elm.Combobox
Error, function calc_force is not implemented on Elm.Combobox
Error, function anchor_hover_end is not implemented on Elm.Combobox
Error, function cursor_selection_begin is not implemented on Elm.Combobox
Error, function cursor_down is not implemented on Elm.Combobox
Error, function file_save is not implemented on Elm.Combobox
Error, function selection_copy is not implemented on Elm.Combobox
Error, function text_style_user_push is not implemented on Elm.Combobox
Error, function item_provider_remove is not implemented on Elm.Combobox
Error, function text_style_user_peek is not implemented on Elm.Combobox
Error, function context_menu_clear is not implemented on Elm.Combobox
Error, function cursor_up is not implemented on Elm.Combobox
Error, function entry_insert is not implemented on Elm.Combobox
Error, function input_panel_imdata_set is not implemented on Elm.Combobox
Error, function input_panel_imdata_get is not implemented on Elm.Combobox
Error, function selection_paste is not implemented on Elm.Combobox
Error, function cursor_next is not implemented on Elm.Combobox
Error, function select_none is not implemented on Elm.Combobox
Error, function input_panel_hide is not implemented on Elm.Combobox
Error, function select_all is not implemented on Elm.Combobox
Error, function cursor_selection_end is not implemented on Elm.Combobox
Error, function selection_cut is not implemented on Elm.Combobox
Error, function is_empty is not implemented on Elm.Combobox
Error, function markup_filter_remove is not implemented on Elm.Combobox
Error, function item_provider_append is not implemented on Elm.Combobox
Error, function markup_filter_append is not implemented on Elm.Combobox
Error, function entry_append is not implemented on Elm.Combobox
Error, function context_menu_item_add is not implemented on Elm.Combobox
Error, function markup_filter_prepend is not implemented on Elm.Combobox
Error, function prediction_hint_set is not implemented on Elm.Combobox
Error, function redirect is not implemented on Elm.Combobox
Error, function root is not implemented on Elm.Combobox
Error, function move is not implemented on Elm.Combobox
Error, function request_move is not implemented on Elm.Combobox
Error, function register is not implemented on Elm.Combobox
Error, function register_logical is not implemented on Elm.Combobox
Error, function update_redirect is not implemented on Elm.Combobox
Error, function update_parent is not implemented on Elm.Combobox
Error, function update_children is not implemented on Elm.Combobox
Error, function update_order is not implemented on Elm.Combobox
Error, function unregister is not implemented on Elm.Combobox
Error, function focused is not implemented on Elm.Combobox
Error, function fetch is not implemented on Elm.Combobox
Error, function logical_end is not implemented on Elm.Combobox
Error, function character is not implemented on Elm.Combobox
Error, function string is not implemented on Elm.Combobox
Error, function text is not implemented on Elm.Combobox
Error, function caret_offset is not implemented on Elm.Combobox
Error, function attribute is not implemented on Elm.Combobox
Error, function attributes is not implemented on Elm.Combobox
Error, function default_attributes is not implemented on Elm.Combobox
Error, function character_extents is not implemented on Elm.Combobox
Error, function character_count is not implemented on Elm.Combobox
Error, function offset_at_point is not implemented on Elm.Combobox
Error, function bounded_ranges is not implemented on Elm.Combobox
Error, function range_extents is not implemented on Elm.Combobox
Error, function selections_count is not implemented on Elm.Combobox
Error, function selection is not implemented on Elm.Combobox
Error, function selection_add is not implemented on Elm.Combobox
Error, function selection_remove is not implemented on Elm.Combobox
Error, function content is not implemented on Elm.Combobox
Error, function insert is not implemented on Elm.Combobox
Error, function copy is not implemented on Elm.Combobox
Error, function cut is not implemented on Elm.Combobox
Error, function delete is not implemented on Elm.Combobox
Error, function paste is not implemented on Elm.Combobox
Error, function homogeneous is not implemented on Elm.Combobox
Error, function select_mode is not implemented on Elm.Combobox
Error, function focus_on_selection is not implemented on Elm.Combobox
Error, function longpress_timeout is not implemented on Elm.Combobox
Error, function multi_select is not implemented on Elm.Combobox
Error, function reorder_mode is not implemented on Elm.Combobox
Error, function decorate_mode is not implemented on Elm.Combobox
Error, function multi_select_mode is not implemented on Elm.Combobox
Error, function block_count is not implemented on Elm.Combobox
Error, function tree_effect_enabled is not implemented on Elm.Combobox
Error, function highlight_mode is not implemented on Elm.Combobox
Error, function mode is not implemented on Elm.Combobox
Error, function decorated_item is not implemented on Elm.Combobox
Error, function selected_item is not implemented on Elm.Combobox
Error, function first_item is not implemented on Elm.Combobox
Error, function realized_items is not implemented on Elm.Combobox
Error, function selected_items is not implemented on Elm.Combobox
Error, function last_item is not implemented on Elm.Combobox
Error, function item_insert_before is not implemented on Elm.Combobox
Error, function realized_items_update is not implemented on Elm.Combobox
Error, function item_insert_after is not implemented on Elm.Combobox
Error, function at_xy_item_get is not implemented on Elm.Combobox
Error, function filter_iterator_new is not implemented on Elm.Combobox
Error, function filtered_items_count is not implemented on Elm.Combobox
Error, function items_count is not implemented on Elm.Combobox
Error, function item_prepend is not implemented on Elm.Combobox
Error, function clear is not implemented on Elm.Combobox
Error, function item_append is not implemented on Elm.Combobox
Error, function item_sorted_insert is not implemented on Elm.Combobox
Error, function search_by_text_item_get is not implemented on Elm.Combobox
Error, function selected_children_count is not implemented on Elm.Combobox
Error, function selected_child is not implemented on Elm.Combobox
Error, function child_select is not implemented on Elm.Combobox
Error, function selected_child_deselect is not implemented on Elm.Combobox
Error, function is_child_selected is not implemented on Elm.Combobox
Error, function all_children_select is not implemented on Elm.Combobox
Error, function clear is not implemented on Elm.Combobox
Error, function child_deselect is not implemented on Elm.Combobox
Error, function target is not implemented on Elm.Combobox
Error, function best_content_location_get is not implemented on Elm.Combobox
Error, function dismiss is not implemented on Elm.Combobox
Error, function content_remove is not implemented on Elm.Popup.Internal.Part
Error, function content_iterate is not implemented on Elm.Popup.Internal.Part
Error, function content_count is not implemented on Elm.Popup.Internal.Part
Error, function pointer_xy is not implemented on Elm.Web
Error, function pointer_inside is not implemented on Elm.Web
Error, function pointer_iterate is not implemented on Elm.Web
Error, function hint_base is not implemented on Elm.Web
Error, function hint_step is not implemented on Elm.Web
Error, function language is not implemented on Elm.Web
Error, function base_scale is not implemented on Elm.Web
Error, function pointer_xy is not implemented on Efl.Ui.Radio
Error, function pointer_inside is not implemented on Efl.Ui.Radio
Error, function pointer_iterate is not implemented on Efl.Ui.Radio
Error, function hint_base is not implemented on Efl.Ui.Radio
Error, function hint_step is not implemented on Efl.Ui.Radio
Error, function language is not implemented on Efl.Ui.Radio
Error, function base_scale is not implemented on Efl.Ui.Radio
Error, function save is not implemented on Efl.Ui.Radio
Error, function content_remove is not implemented on Elm.Naviframe.Internal.Part
Error, function content_iterate is not implemented on Elm.Naviframe.Internal.Part
Error, function content_count is not implemented on Elm.Naviframe.Internal.Part
Error, function grid_size is not implemented on Efl.Ui.Layout_Internal.Table
Error, function grid_columns is not implemented on Efl.Ui.Layout_Internal.Table
Error, function grid_rows is not implemented on Efl.Ui.Layout_Internal.Table
Error, function grid_orientation is not implemented on Efl.Ui.Layout_Internal.Table
Error, function content_remove is not implemented on Elm.Player.Internal.Part
Error, function content_iterate is not implemented on Elm.Player.Internal.Part
Error, function content_count is not implemented on Elm.Player.Internal.Part
Error, function pointer_xy is not implemented on Efl.Ui.Frame
Error, function pointer_inside is not implemented on Efl.Ui.Frame
Error, function pointer_iterate is not implemented on Efl.Ui.Frame
Error, function hint_base is not implemented on Efl.Ui.Frame
Error, function hint_step is not implemented on Efl.Ui.Frame
Error, function language is not implemented on Efl.Ui.Frame
Error, function base_scale is not implemented on Efl.Ui.Frame
Error, function save is not implemented on Efl.Ui.Frame
Error, function pointer_xy is not implemented on Efl.Ui.Text.Editable
Error, function pointer_inside is not implemented on Efl.Ui.Text.Editable
Error, function pointer_iterate is not implemented on Efl.Ui.Text.Editable
Error, function hint_base is not implemented on Efl.Ui.Text.Editable
Error, function hint_step is not implemented on Efl.Ui.Text.Editable
Error, function language is not implemented on Efl.Ui.Text.Editable
Error, function base_scale is not implemented on Efl.Ui.Text.Editable
Error, function save is not implemented on Efl.Ui.Text.Editable
Error, function redirect is not implemented on Efl.Ui.Text.Editable
Error, function root is not implemented on Efl.Ui.Text.Editable
Error, function move is not implemented on Efl.Ui.Text.Editable
Error, function request_move is not implemented on Efl.Ui.Text.Editable
Error, function register is not implemented on Efl.Ui.Text.Editable
Error, function register_logical is not implemented on Efl.Ui.Text.Editable
Error, function update_redirect is not implemented on Efl.Ui.Text.Editable
Error, function update_parent is not implemented on Efl.Ui.Text.Editable
Error, function update_children is not implemented on Efl.Ui.Text.Editable
Error, function update_order is not implemented on Efl.Ui.Text.Editable
Error, function unregister is not implemented on Efl.Ui.Text.Editable
Error, function focused is not implemented on Efl.Ui.Text.Editable
Error, function fetch is not implemented on Efl.Ui.Text.Editable
Error, function logical_end is not implemented on Efl.Ui.Text.Editable
Error, function selection_allowed is not implemented on Efl.Ui.Text.Editable
Error, function selection_cursors is not implemented on Efl.Ui.Text.Editable
Error, function editable is not implemented on Efl.Ui.Text.Editable
Error, function font is not implemented on Efl.Ui.Text.Editable
Error, function font_source is not implemented on Efl.Ui.Text.Editable
Error, function font_fallbacks is not implemented on Efl.Ui.Text.Editable
Error, function font_weight is not implemented on Efl.Ui.Text.Editable
Error, function font_slant is not implemented on Efl.Ui.Text.Editable
Error, function font_width is not implemented on Efl.Ui.Text.Editable
Error, function font_lang is not implemented on Efl.Ui.Text.Editable
Error, function ellipsis is not implemented on Efl.Ui.Text.Editable
Error, function wrap is not implemented on Efl.Ui.Text.Editable
Error, function multiline is not implemented on Efl.Ui.Text.Editable
Error, function halign is not implemented on Efl.Ui.Text.Editable
Error, function valign is not implemented on Efl.Ui.Text.Editable
Error, function linegap is not implemented on Efl.Ui.Text.Editable
Error, function linerelgap is not implemented on Efl.Ui.Text.Editable
Error, function tabstops is not implemented on Efl.Ui.Text.Editable
Error, function password is not implemented on Efl.Ui.Text.Editable
Error, function replacement_char is not implemented on Efl.Ui.Text.Editable
Error, function normal_color is not implemented on Efl.Ui.Text.Editable
Error, function backing_type is not implemented on Efl.Ui.Text.Editable
Error, function backing_color is not implemented on Efl.Ui.Text.Editable
Error, function underline_type is not implemented on Efl.Ui.Text.Editable
Error, function underline_color is not implemented on Efl.Ui.Text.Editable
Error, function underline_height is not implemented on Efl.Ui.Text.Editable
Error, function underline_dashed_color is not implemented on Efl.Ui.Text.Editable
Error, function underline_dashed_width is not implemented on Efl.Ui.Text.Editable
Error, function underline_dashed_gap is not implemented on Efl.Ui.Text.Editable
Error, function underline2_type is not implemented on Efl.Ui.Text.Editable
Error, function underline2_color is not implemented on Efl.Ui.Text.Editable
Error, function strikethrough_type is not implemented on Efl.Ui.Text.Editable
Error, function strikethrough_color is not implemented on Efl.Ui.Text.Editable
Error, function effect_type is not implemented on Efl.Ui.Text.Editable
Error, function outline_color is not implemented on Efl.Ui.Text.Editable
Error, function shadow_direction is not implemented on Efl.Ui.Text.Editable
Error, function shadow_color is not implemented on Efl.Ui.Text.Editable
Error, function glow_color is not implemented on Efl.Ui.Text.Editable
Error, function glow2_color is not implemented on Efl.Ui.Text.Editable
Error, function gfx_filter is not implemented on Efl.Ui.Text.Editable
Error, function pointer_xy is not implemented on Elm.Player
Error, function pointer_inside is not implemented on Elm.Player
Error, function pointer_iterate is not implemented on Elm.Player
Error, function hint_base is not implemented on Elm.Player
Error, function hint_step is not implemented on Elm.Player
Error, function language is not implemented on Elm.Player
Error, function base_scale is not implemented on Elm.Player
Error, function save is not implemented on Elm.Player
Error, function register is not implemented on Efl.Ui.Focus.Manager.Calc
Error, function register_logical is not implemented on Efl.Ui.Focus.Manager.Calc
Error, function update_redirect is not implemented on Efl.Ui.Focus.Manager.Calc
Error, function update_parent is not implemented on Efl.Ui.Focus.Manager.Calc
Error, function update_children is not implemented on Efl.Ui.Focus.Manager.Calc
Error, function update_order is not implemented on Efl.Ui.Focus.Manager.Calc
Error, function unregister is not implemented on Efl.Ui.Focus.Manager.Calc
Error, function pointer_xy is not implemented on Elm.Popup
Error, function pointer_inside is not implemented on Elm.Popup
Error, function pointer_iterate is not implemented on Elm.Popup
Error, function hint_base is not implemented on Elm.Popup
Error, function hint_step is not implemented on Elm.Popup
Error, function language is not implemented on Elm.Popup
Error, function base_scale is not implemented on Elm.Popup
Error, function save is not implemented on Elm.Popup
Error, function pointer_xy is not implemented on Elm.Multibuttonentry
Error, function pointer_inside is not implemented on Elm.Multibuttonentry
Error, function pointer_iterate is not implemented on Elm.Multibuttonentry
Error, function hint_base is not implemented on Elm.Multibuttonentry
Error, function hint_step is not implemented on Elm.Multibuttonentry
Error, function language is not implemented on Elm.Multibuttonentry
Error, function base_scale is not implemented on Elm.Multibuttonentry
Error, function save is not implemented on Elm.Multibuttonentry
Error, function content_remove is not implemented on Elm.Ctxpopup.Internal.Part
Error, function content_iterate is not implemented on Elm.Ctxpopup.Internal.Part
Error, function content_count is not implemented on Elm.Ctxpopup.Internal.Part
Error, function pointer_xy is not implemented on Elm.Hover
Error, function pointer_inside is not implemented on Elm.Hover
Error, function pointer_iterate is not implemented on Elm.Hover
Error, function hint_base is not implemented on Elm.Hover
Error, function hint_step is not implemented on Elm.Hover
Error, function language is not implemented on Elm.Hover
Error, function base_scale is not implemented on Elm.Hover
Error, function save is not implemented on Elm.Hover
Error, function redirect is not implemented on Elm.Hover
Error, function border_elements is not implemented on Elm.Hover
Error, function root is not implemented on Elm.Hover
Error, function move is not implemented on Elm.Hover
Error, function request_move is not implemented on Elm.Hover
Error, function register is not implemented on Elm.Hover
Error, function register_logical is not implemented on Elm.Hover
Error, function update_redirect is not implemented on Elm.Hover
Error, function update_parent is not implemented on Elm.Hover
Error, function update_children is not implemented on Elm.Hover
Error, function update_order is not implemented on Elm.Hover
Error, function unregister is not implemented on Elm.Hover
Error, function focus is not implemented on Elm.Hover
Error, function focused is not implemented on Elm.Hover
Error, function fetch is not implemented on Elm.Hover
Error, function logical_end is not implemented on Elm.Hover
Error, function pointer_xy is not implemented on Elm.Map
Error, function pointer_inside is not implemented on Elm.Map
Error, function pointer_iterate is not implemented on Elm.Map
Error, function hint_base is not implemented on Elm.Map
Error, function hint_step is not implemented on Elm.Map
Error, function language is not implemented on Elm.Map
Error, function base_scale is not implemented on Elm.Map
Error, function redirect is not implemented on Elm.Map
Error, function root is not implemented on Elm.Map
Error, function move is not implemented on Elm.Map
Error, function request_move is not implemented on Elm.Map
Error, function register is not implemented on Elm.Map
Error, function register_logical is not implemented on Elm.Map
Error, function update_redirect is not implemented on Elm.Map
Error, function update_parent is not implemented on Elm.Map
Error, function update_children is not implemented on Elm.Map
Error, function update_order is not implemented on Elm.Map
Error, function unregister is not implemented on Elm.Map
Error, function focused is not implemented on Elm.Map
Error, function fetch is not implemented on Elm.Map
Error, function logical_end is not implemented on Elm.Map
Error, function content_remove is not implemented on Efl.Ui.Flip.Internal.Part
Error, function content_iterate is not implemented on Efl.Ui.Flip.Internal.Part
Error, function content_count is not implemented on Efl.Ui.Flip.Internal.Part
Error, function pointer_xy is not implemented on Elm.Layout
Error, function pointer_inside is not implemented on Elm.Layout
Error, function pointer_iterate is not implemented on Elm.Layout
Error, function hint_base is not implemented on Elm.Layout
Error, function hint_step is not implemented on Elm.Layout
Error, function language is not implemented on Elm.Layout
Error, function base_scale is not implemented on Elm.Layout
Error, function save is not implemented on Elm.Layout
Error, function pointer_xy is not implemented on Efl.Ui.Flip
Error, function pointer_inside is not implemented on Efl.Ui.Flip
Error, function pointer_iterate is not implemented on Efl.Ui.Flip
Error, function hint_base is not implemented on Efl.Ui.Flip
Error, function hint_step is not implemented on Efl.Ui.Flip
Error, function language is not implemented on Efl.Ui.Flip
Error, function base_scale is not implemented on Efl.Ui.Flip
Error, function pointer_xy is not implemented on Elm.Glview
Error, function pointer_inside is not implemented on Elm.Glview
Error, function pointer_iterate is not implemented on Elm.Glview
Error, function hint_base is not implemented on Elm.Glview
Error, function hint_step is not implemented on Elm.Glview
Error, function language is not implemented on Elm.Glview
Error, function base_scale is not implemented on Elm.Glview
Error, function pointer_xy is not implemented on Efl.Ui.Slider
Error, function pointer_inside is not implemented on Efl.Ui.Slider
Error, function pointer_iterate is not implemented on Efl.Ui.Slider
Error, function hint_base is not implemented on Efl.Ui.Slider
Error, function hint_step is not implemented on Efl.Ui.Slider
Error, function language is not implemented on Efl.Ui.Slider
Error, function base_scale is not implemented on Efl.Ui.Slider
Error, function save is not implemented on Efl.Ui.Slider
Error, function pointer_xy is not implemented on Elm.Route
Error, function pointer_inside is not implemented on Elm.Route
Error, function pointer_iterate is not implemented on Elm.Route
Error, function hint_base is not implemented on Elm.Route
Error, function hint_step is not implemented on Elm.Route
Error, function language is not implemented on Elm.Route
Error, function base_scale is not implemented on Elm.Route
Error, function pointer_xy is not implemented on Efl.Ui.Clock
Error, function pointer_inside is not implemented on Efl.Ui.Clock
Error, function pointer_iterate is not implemented on Efl.Ui.Clock
Error, function hint_base is not implemented on Efl.Ui.Clock
Error, function hint_step is not implemented on Efl.Ui.Clock
Error, function language is not implemented on Efl.Ui.Clock
Error, function base_scale is not implemented on Efl.Ui.Clock
Error, function save is not implemented on Efl.Ui.Clock
Error, function pointer_xy is not implemented on Elm.Ctxpopup
Error, function pointer_inside is not implemented on Elm.Ctxpopup
Error, function pointer_iterate is not implemented on Elm.Ctxpopup
Error, function hint_base is not implemented on Elm.Ctxpopup
Error, function hint_step is not implemented on Elm.Ctxpopup
Error, function language is not implemented on Elm.Ctxpopup
Error, function base_scale is not implemented on Elm.Ctxpopup
Error, function save is not implemented on Elm.Ctxpopup
Error, function pointer_xy is not implemented on Elm.Gengrid
Error, function pointer_inside is not implemented on Elm.Gengrid
Error, function pointer_iterate is not implemented on Elm.Gengrid
Error, function hint_base is not implemented on Elm.Gengrid
Error, function hint_step is not implemented on Elm.Gengrid
Error, function language is not implemented on Elm.Gengrid
Error, function base_scale is not implemented on Elm.Gengrid
Error, function save is not implemented on Elm.Gengrid
Error, function redirect is not implemented on Elm.Gengrid
Error, function root is not implemented on Elm.Gengrid
Error, function move is not implemented on Elm.Gengrid
Error, function request_move is not implemented on Elm.Gengrid
Error, function register is not implemented on Elm.Gengrid
Error, function register_logical is not implemented on Elm.Gengrid
Error, function update_redirect is not implemented on Elm.Gengrid
Error, function update_parent is not implemented on Elm.Gengrid
Error, function update_children is not implemented on Elm.Gengrid
Error, function update_order is not implemented on Elm.Gengrid
Error, function unregister is not implemented on Elm.Gengrid
Error, function focused is not implemented on Elm.Gengrid
Error, function fetch is not implemented on Elm.Gengrid
Error, function logical_end is not implemented on Elm.Gengrid
Error, function pointer_xy is not implemented on Efl.Ui.Image.Zoomable.Pan
Error, function pointer_inside is not implemented on Efl.Ui.Image.Zoomable.Pan
Error, function pointer_iterate is not implemented on Efl.Ui.Image.Zoomable.Pan
Error, function hint_base is not implemented on Efl.Ui.Image.Zoomable.Pan
Error, function hint_step is not implemented on Efl.Ui.Image.Zoomable.Pan
Error, function content_remove is not implemented on Elm.Fileselector.Internal.Part
Error, function content_iterate is not implemented on Elm.Fileselector.Internal.Part
Error, function content_count is not implemented on Elm.Fileselector.Internal.Part
Error, function content_remove is not implemented on Elm_Actionslider.Internal.Part
Error, function content_iterate is not implemented on Elm_Actionslider.Internal.Part
Error, function content_count is not implemented on Elm_Actionslider.Internal.Part
Error, function pointer_xy is not implemented on Elm.Index
Error, function pointer_inside is not implemented on Elm.Index
Error, function pointer_iterate is not implemented on Elm.Index
Error, function hint_base is not implemented on Elm.Index
Error, function hint_step is not implemented on Elm.Index
Error, function language is not implemented on Elm.Index
Error, function base_scale is not implemented on Elm.Index
Error, function save is not implemented on Elm.Index
Error, function pointer_xy is not implemented on Elm.Clock
Error, function pointer_inside is not implemented on Elm.Clock
Error, function pointer_iterate is not implemented on Elm.Clock
Error, function hint_base is not implemented on Elm.Clock
Error, function hint_step is not implemented on Elm.Clock
Error, function language is not implemented on Elm.Clock
Error, function base_scale is not implemented on Elm.Clock
Error, function save is not implemented on Elm.Clock
Error, function pointer_xy is not implemented on Elm.Pan
Error, function pointer_inside is not implemented on Elm.Pan
Error, function pointer_iterate is not implemented on Elm.Pan
Error, function hint_base is not implemented on Elm.Pan
Error, function hint_step is not implemented on Elm.Pan
Error, function pointer_xy is not implemented on Efl.Ui.Box.Flow
Error, function pointer_inside is not implemented on Efl.Ui.Box.Flow
Error, function pointer_iterate is not implemented on Efl.Ui.Box.Flow
Error, function hint_base is not implemented on Efl.Ui.Box.Flow
Error, function hint_step is not implemented on Efl.Ui.Box.Flow
Error, function language is not implemented on Efl.Ui.Box.Flow
Error, function base_scale is not implemented on Efl.Ui.Box.Flow
Error, function content_remove is not implemented on Elm.Flip.Internal.Part
Error, function content_iterate is not implemented on Elm.Flip.Internal.Part
Error, function content_count is not implemented on Elm.Flip.Internal.Part
Error, function content_remove is not implemented on Elm.Notify.Internal.Part
Error, function content_iterate is not implemented on Elm.Notify.Internal.Part
Error, function content_count is not implemented on Elm.Notify.Internal.Part
Error, function pointer_xy is not implemented on Efl.Ui.Video
Error, function pointer_inside is not implemented on Efl.Ui.Video
Error, function pointer_iterate is not implemented on Efl.Ui.Video
Error, function hint_base is not implemented on Efl.Ui.Video
Error, function hint_step is not implemented on Efl.Ui.Video
Error, function language is not implemented on Efl.Ui.Video
Error, function base_scale is not implemented on Efl.Ui.Video
Error, function save is not implemented on Efl.Ui.Video
Error, function playable is not implemented on Efl.Ui.Video
Error, function play is not implemented on Efl.Ui.Video
Error, function position is not implemented on Efl.Ui.Video
Error, function progress is not implemented on Efl.Ui.Video
Error, function play_speed is not implemented on Efl.Ui.Video
Error, function volume is not implemented on Efl.Ui.Video
Error, function mute is not implemented on Efl.Ui.Video
Error, function length is not implemented on Efl.Ui.Video
Error, function seekable is not implemented on Efl.Ui.Video
Error, function content_remove is not implemented on Elm_Label.Internal.Part
Error, function content_iterate is not implemented on Elm_Label.Internal.Part
Error, function content_count is not implemented on Elm_Label.Internal.Part
Error, function pointer_xy is not implemented on Elm.Dayselector
Error, function pointer_inside is not implemented on Elm.Dayselector
Error, function pointer_iterate is not implemented on Elm.Dayselector
Error, function hint_base is not implemented on Elm.Dayselector
Error, function hint_step is not implemented on Elm.Dayselector
Error, function language is not implemented on Elm.Dayselector
Error, function base_scale is not implemented on Elm.Dayselector
Error, function save is not implemented on Elm.Dayselector
Error, function pointer_xy is not implemented on Efl.Canvas.Video
Error, function pointer_inside is not implemented on Efl.Canvas.Video
Error, function pointer_iterate is not implemented on Efl.Canvas.Video
Error, function hint_base is not implemented on Efl.Canvas.Video
Error, function hint_step is not implemented on Efl.Canvas.Video
Error, function mmap is not implemented on Efl.Canvas.Video
Error, function save is not implemented on Efl.Canvas.Video
Error, function playable is not implemented on Efl.Canvas.Video
Error, function play_speed is not implemented on Efl.Canvas.Video
Error, function border is not implemented on Efl.Canvas.Video
Error, function border_scale is not implemented on Efl.Canvas.Video
Error, function border_center_fill is not implemented on Efl.Canvas.Video
Error, function image_size is not implemented on Efl.Canvas.Video
Error, function content_hint is not implemented on Efl.Canvas.Video
Error, function scale_hint is not implemented on Efl.Canvas.Video
Error, function load_size is not implemented on Efl.Canvas.Video
Error, function load_dpi is not implemented on Efl.Canvas.Video
Error, function load_region_support is not implemented on Efl.Canvas.Video
Error, function load_region is not implemented on Efl.Canvas.Video
Error, function load_orientation is not implemented on Efl.Canvas.Video
Error, function load_scale_down is not implemented on Efl.Canvas.Video
Error, function load_error is not implemented on Efl.Canvas.Video
Error, function load_skip_header is not implemented on Efl.Canvas.Video
Error, function load_async_start is not implemented on Efl.Canvas.Video
Error, function load_async_cancel is not implemented on Efl.Canvas.Video
Error, function size is not implemented on Efl.VG.Shape
Error, function geometry is not implemented on Efl.VG.Shape
Error, function layer is not implemented on Efl.VG.Shape
Error, function pointer_xy is not implemented on Evas.VG
Error, function pointer_inside is not implemented on Evas.VG
Error, function pointer_iterate is not implemented on Evas.VG
Error, function hint_base is not implemented on Evas.VG
Error, function hint_step is not implemented on Evas.VG
Error, function fill_auto is not implemented on Evas.VG
Error, function mmap is not implemented on Evas.Canvas3D.Mesh
Error, function file is not implemented on Evas.Canvas3D.Mesh
Error, function size is not implemented on Efl.VG.Gradient.Linear
Error, function geometry is not implemented on Efl.VG.Gradient.Linear
Error, function layer is not implemented on Efl.VG.Gradient.Linear
Error, function pointer_xy is not implemented on Efl.Canvas.Scene3d
Error, function pointer_inside is not implemented on Efl.Canvas.Scene3d
Error, function pointer_iterate is not implemented on Efl.Canvas.Scene3d
Error, function hint_base is not implemented on Efl.Canvas.Scene3d
Error, function hint_step is not implemented on Efl.Canvas.Scene3d
Error, function buffer_size is not implemented on Efl.Canvas.Scene3d
Error, function stride is not implemented on Efl.Canvas.Scene3d
Error, function buffer_borders is not implemented on Efl.Canvas.Scene3d
Error, function buffer_copy_set is not implemented on Efl.Canvas.Scene3d
Error, function buffer_managed_set is not implemented on Efl.Canvas.Scene3d
Error, function buffer_managed_get is not implemented on Efl.Canvas.Scene3d
Error, function view_size is not implemented on Efl.Canvas.Scene3d
Error, function mmap is not implemented on Efl.Canvas.Scene3d
Error, function file is not implemented on Efl.Canvas.Scene3d
Error, function pointer_xy is not implemented on Efl.Canvas.Surface.Tbm
Error, function pointer_inside is not implemented on Efl.Canvas.Surface.Tbm
Error, function pointer_iterate is not implemented on Efl.Canvas.Surface.Tbm
Error, function hint_base is not implemented on Efl.Canvas.Surface.Tbm
Error, function hint_step is not implemented on Efl.Canvas.Surface.Tbm
Error, function smooth_scale is not implemented on Efl.Canvas.Surface.Tbm
Error, function ratio is not implemented on Efl.Canvas.Surface.Tbm
Error, function border is not implemented on Efl.Canvas.Surface.Tbm
Error, function border_scale is not implemented on Efl.Canvas.Surface.Tbm
Error, function border_center_fill is not implemented on Efl.Canvas.Surface.Tbm
Error, function image_size is not implemented on Efl.Canvas.Surface.Tbm
Error, function content_hint is not implemented on Efl.Canvas.Surface.Tbm
Error, function scale_hint is not implemented on Efl.Canvas.Surface.Tbm
Error, function buffer_size is not implemented on Efl.Canvas.Surface.Tbm
Error, function colorspace is not implemented on Efl.Canvas.Surface.Tbm
Error, function alpha is not implemented on Efl.Canvas.Surface.Tbm
Error, function stride is not implemented on Efl.Canvas.Surface.Tbm
Error, function buffer_borders is not implemented on Efl.Canvas.Surface.Tbm
Error, function buffer_update_add is not implemented on Efl.Canvas.Surface.Tbm
Error, function buffer_map is not implemented on Efl.Canvas.Surface.Tbm
Error, function buffer_unmap is not implemented on Efl.Canvas.Surface.Tbm
Error, function buffer_copy_set is not implemented on Efl.Canvas.Surface.Tbm
Error, function buffer_managed_set is not implemented on Efl.Canvas.Surface.Tbm
Error, function buffer_managed_get is not implemented on Efl.Canvas.Surface.Tbm
Error, function fill_auto is not implemented on Efl.Canvas.Surface.Tbm
Error, function fill is not implemented on Efl.Canvas.Surface.Tbm
Error, function view_size is not implemented on Efl.Canvas.Surface.Tbm
Error, function orientation is not implemented on Efl.Canvas.Surface.Tbm
Error, function flip is not implemented on Efl.Canvas.Surface.Tbm
Error, function mmap is not implemented on Efl.Canvas.Surface.Tbm
Error, function file is not implemented on Efl.Canvas.Surface.Tbm
Error, function save is not implemented on Efl.Canvas.Surface.Tbm
Error, function size is not implemented on Efl.VG.Gradient.Radial
Error, function geometry is not implemented on Efl.VG.Gradient.Radial
Error, function layer is not implemented on Efl.VG.Gradient.Radial
Error, function pointer_xy is not implemented on Efl.Canvas.Image
Error, function pointer_inside is not implemented on Efl.Canvas.Image
Error, function pointer_iterate is not implemented on Efl.Canvas.Image
Error, function hint_base is not implemented on Efl.Canvas.Image
Error, function hint_step is not implemented on Efl.Canvas.Image
Error, function buffer_size is not implemented on Efl.Canvas.Image
Error, function stride is not implemented on Efl.Canvas.Image
Error, function buffer_borders is not implemented on Efl.Canvas.Image
Error, function view_size is not implemented on Efl.Canvas.Image
Error, function pointer_xy is not implemented on Efl.Canvas.Object.Event.Grabber
Error, function pointer_inside is not implemented on Efl.Canvas.Object.Event.Grabber
Error, function pointer_iterate is not implemented on Efl.Canvas.Object.Event.Grabber
Error, function hint_base is not implemented on Efl.Canvas.Object.Event.Grabber
Error, function hint_step is not implemented on Efl.Canvas.Object.Event.Grabber
Error, function pointer_xy is not implemented on Efl.Canvas.Text
Error, function pointer_inside is not implemented on Efl.Canvas.Text
Error, function pointer_iterate is not implemented on Efl.Canvas.Text
Error, function hint_base is not implemented on Efl.Canvas.Text
Error, function hint_step is not implemented on Efl.Canvas.Text
Error, function font is not implemented on Efl.Canvas.Text
Error, function font_source is not implemented on Efl.Canvas.Text
Error, function pointer_xy is not implemented on Efl.Canvas.Snapshot
Error, function pointer_inside is not implemented on Efl.Canvas.Snapshot
Error, function pointer_iterate is not implemented on Efl.Canvas.Snapshot
Error, function hint_base is not implemented on Efl.Canvas.Snapshot
Error, function hint_step is not implemented on Efl.Canvas.Snapshot
Error, function buffer_size is not implemented on Efl.Canvas.Snapshot
Error, function stride is not implemented on Efl.Canvas.Snapshot
Error, function buffer_borders is not implemented on Efl.Canvas.Snapshot
Error, function buffer_map is not implemented on Efl.Canvas.Snapshot
Error, function buffer_unmap is not implemented on Efl.Canvas.Snapshot
Error, function buffer_copy_set is not implemented on Efl.Canvas.Snapshot
Error, function buffer_managed_set is not implemented on Efl.Canvas.Snapshot
Error, function buffer_managed_get is not implemented on Efl.Canvas.Snapshot
Error, function view_size is not implemented on Efl.Canvas.Snapshot
Error, function mmap is not implemented on Efl.Canvas.Snapshot
Error, function file is not implemented on Efl.Canvas.Snapshot
Error, function pointer_xy is not implemented on Efl.Canvas.Surface.X11
Error, function pointer_inside is not implemented on Efl.Canvas.Surface.X11
Error, function pointer_iterate is not implemented on Efl.Canvas.Surface.X11
Error, function hint_base is not implemented on Efl.Canvas.Surface.X11
Error, function hint_step is not implemented on Efl.Canvas.Surface.X11
Error, function smooth_scale is not implemented on Efl.Canvas.Surface.X11
Error, function ratio is not implemented on Efl.Canvas.Surface.X11
Error, function border is not implemented on Efl.Canvas.Surface.X11
Error, function border_scale is not implemented on Efl.Canvas.Surface.X11
Error, function border_center_fill is not implemented on Efl.Canvas.Surface.X11
Error, function image_size is not implemented on Efl.Canvas.Surface.X11
Error, function content_hint is not implemented on Efl.Canvas.Surface.X11
Error, function scale_hint is not implemented on Efl.Canvas.Surface.X11
Error, function buffer_size is not implemented on Efl.Canvas.Surface.X11
Error, function colorspace is not implemented on Efl.Canvas.Surface.X11
Error, function alpha is not implemented on Efl.Canvas.Surface.X11
Error, function stride is not implemented on Efl.Canvas.Surface.X11
Error, function buffer_borders is not implemented on Efl.Canvas.Surface.X11
Error, function buffer_update_add is not implemented on Efl.Canvas.Surface.X11
Error, function buffer_map is not implemented on Efl.Canvas.Surface.X11
Error, function buffer_unmap is not implemented on Efl.Canvas.Surface.X11
Error, function buffer_copy_set is not implemented on Efl.Canvas.Surface.X11
Error, function buffer_managed_set is not implemented on Efl.Canvas.Surface.X11
Error, function buffer_managed_get is not implemented on Efl.Canvas.Surface.X11
Error, function fill_auto is not implemented on Efl.Canvas.Surface.X11
Error, function fill is not implemented on Efl.Canvas.Surface.X11
Error, function view_size is not implemented on Efl.Canvas.Surface.X11
Error, function orientation is not implemented on Efl.Canvas.Surface.X11
Error, function flip is not implemented on Efl.Canvas.Surface.X11
Error, function mmap is not implemented on Efl.Canvas.Surface.X11
Error, function file is not implemented on Efl.Canvas.Surface.X11
Error, function save is not implemented on Efl.Canvas.Surface.X11
Error, function pointer_xy is not implemented on Efl.Canvas.Proxy
Error, function pointer_inside is not implemented on Efl.Canvas.Proxy
Error, function pointer_iterate is not implemented on Efl.Canvas.Proxy
Error, function hint_base is not implemented on Efl.Canvas.Proxy
Error, function hint_step is not implemented on Efl.Canvas.Proxy
Error, function buffer_size is not implemented on Efl.Canvas.Proxy
Error, function stride is not implemented on Efl.Canvas.Proxy
Error, function buffer_borders is not implemented on Efl.Canvas.Proxy
Error, function buffer_copy_set is not implemented on Efl.Canvas.Proxy
Error, function buffer_managed_set is not implemented on Efl.Canvas.Proxy
Error, function buffer_managed_get is not implemented on Efl.Canvas.Proxy
Error, function view_size is not implemented on Efl.Canvas.Proxy
Error, function mmap is not implemented on Efl.Canvas.Proxy
Error, function file is not implemented on Efl.Canvas.Proxy
Error, function pointer_xy is not implemented on Efl.Canvas.Rectangle
Error, function pointer_inside is not implemented on Efl.Canvas.Rectangle
Error, function pointer_iterate is not implemented on Efl.Canvas.Rectangle
Error, function hint_base is not implemented on Efl.Canvas.Rectangle
Error, function hint_step is not implemented on Efl.Canvas.Rectangle
Error, function image_max_size is not implemented on Evas.Canvas
Error, function smart_objects_calculate is not implemented on Evas.Canvas
Error, function objects_at_xy_get is not implemented on Evas.Canvas
Error, function object_top_at_xy_get is not implemented on Evas.Canvas
Error, function objects_in_rectangle_get is not implemented on Evas.Canvas
Error, function object_top_in_rectangle_get is not implemented on Evas.Canvas
Error, function seats is not implemented on Evas.Canvas
Error, function pointer_xy is not implemented on Evas.Canvas
Error, function pointer_inside is not implemented on Evas.Canvas
Error, function seat_event_filter is not implemented on Evas.Canvas
Error, function pointer_iterate is not implemented on Evas.Canvas
Error, function pointer_xy is not implemented on Efl.Canvas.Polygon
Error, function pointer_inside is not implemented on Efl.Canvas.Polygon
Error, function pointer_iterate is not implemented on Efl.Canvas.Polygon
Error, function hint_base is not implemented on Efl.Canvas.Polygon
Error, function hint_step is not implemented on Efl.Canvas.Polygon
Error, function pointer_xy is not implemented on Efl.Canvas.Surface.Wayland
Error, function pointer_inside is not implemented on Efl.Canvas.Surface.Wayland
Error, function pointer_iterate is not implemented on Efl.Canvas.Surface.Wayland
Error, function hint_base is not implemented on Efl.Canvas.Surface.Wayland
Error, function hint_step is not implemented on Efl.Canvas.Surface.Wayland
Error, function smooth_scale is not implemented on Efl.Canvas.Surface.Wayland
Error, function ratio is not implemented on Efl.Canvas.Surface.Wayland
Error, function border is not implemented on Efl.Canvas.Surface.Wayland
Error, function border_scale is not implemented on Efl.Canvas.Surface.Wayland
Error, function border_center_fill is not implemented on Efl.Canvas.Surface.Wayland
Error, function image_size is not implemented on Efl.Canvas.Surface.Wayland
Error, function content_hint is not implemented on Efl.Canvas.Surface.Wayland
Error, function scale_hint is not implemented on Efl.Canvas.Surface.Wayland
Error, function buffer_size is not implemented on Efl.Canvas.Surface.Wayland
Error, function colorspace is not implemented on Efl.Canvas.Surface.Wayland
Error, function alpha is not implemented on Efl.Canvas.Surface.Wayland
Error, function stride is not implemented on Efl.Canvas.Surface.Wayland
Error, function buffer_borders is not implemented on Efl.Canvas.Surface.Wayland
Error, function buffer_update_add is not implemented on Efl.Canvas.Surface.Wayland
Error, function buffer_map is not implemented on Efl.Canvas.Surface.Wayland
Error, function buffer_unmap is not implemented on Efl.Canvas.Surface.Wayland
Error, function buffer_copy_set is not implemented on Efl.Canvas.Surface.Wayland
Error, function buffer_managed_set is not implemented on Efl.Canvas.Surface.Wayland
Error, function buffer_managed_get is not implemented on Efl.Canvas.Surface.Wayland
Error, function fill_auto is not implemented on Efl.Canvas.Surface.Wayland
Error, function fill is not implemented on Efl.Canvas.Surface.Wayland
Error, function view_size is not implemented on Efl.Canvas.Surface.Wayland
Error, function orientation is not implemented on Efl.Canvas.Surface.Wayland
Error, function flip is not implemented on Efl.Canvas.Surface.Wayland
Error, function mmap is not implemented on Efl.Canvas.Surface.Wayland
Error, function file is not implemented on Efl.Canvas.Surface.Wayland
Error, function save is not implemented on Efl.Canvas.Surface.Wayland
Error, function size is not implemented on Efl.VG.Root_Node
Error, function geometry is not implemented on Efl.VG.Root_Node
Error, function layer is not implemented on Efl.VG.Root_Node
Error, function pointer_xy is not implemented on Efl.Canvas.Group
Error, function pointer_inside is not implemented on Efl.Canvas.Group
Error, function pointer_iterate is not implemented on Efl.Canvas.Group
Error, function hint_base is not implemented on Efl.Canvas.Group
Error, function hint_step is not implemented on Efl.Canvas.Group
Error, function size is not implemented on Efl.VG.Container
Error, function geometry is not implemented on Efl.VG.Container
Error, function layer is not implemented on Efl.VG.Container
Error, function grid_size is not implemented on Efl.Canvas.Layout_Internal.Table
Error, function grid_columns is not implemented on Efl.Canvas.Layout_Internal.Table
Error, function grid_rows is not implemented on Efl.Canvas.Layout_Internal.Table
Error, function grid_orientation is not implemented on Efl.Canvas.Layout_Internal.Table
Error, function content is not implemented on Efl.Canvas.Layout.External
Error, function content_unset is not implemented on Efl.Canvas.Layout.External
Error, function content_remove is not implemented on Efl.Canvas.Layout.External
Error, function content_iterate is not implemented on Efl.Canvas.Layout.External
Error, function content_count is not implemented on Efl.Canvas.Layout.External
Error, function pointer_mode_by_device is not implemented on Efl.Canvas.Layout.External
Error, function pointer_mode is not implemented on Efl.Canvas.Layout.External
Error, function pointer_in is not implemented on Efl.Canvas.Layout.External
Error, function pointer_device_in is not implemented on Efl.Canvas.Layout.External
Error, function render_op is not implemented on Efl.Canvas.Layout.External
Error, function freeze_events is not implemented on Efl.Canvas.Layout.External
Error, function clip is not implemented on Efl.Canvas.Layout.External
Error, function repeat_events is not implemented on Efl.Canvas.Layout.External
Error, function scale is not implemented on Efl.Canvas.Layout.External
Error, function key_focus is not implemented on Efl.Canvas.Layout.External
Error, function seat_focus is not implemented on Efl.Canvas.Layout.External
Error, function is_frame_object is not implemented on Efl.Canvas.Layout.External
Error, function precise_is_inside is not implemented on Efl.Canvas.Layout.External
Error, function propagate_events is not implemented on Efl.Canvas.Layout.External
Error, function pass_events is not implemented on Efl.Canvas.Layout.External
Error, function anti_alias is not implemented on Efl.Canvas.Layout.External
Error, function clipees is not implemented on Efl.Canvas.Layout.External
Error, function render_parent is not implemented on Efl.Canvas.Layout.External
Error, function paragraph_direction is not implemented on Efl.Canvas.Layout.External
Error, function no_render is not implemented on Efl.Canvas.Layout.External
Error, function pointer_inside_by_device is not implemented on Efl.Canvas.Layout.External
Error, function pointer_inside is not implemented on Efl.Canvas.Layout.External
Error, function seat_focus_check is not implemented on Efl.Canvas.Layout.External
Error, function seat_focus_add is not implemented on Efl.Canvas.Layout.External
Error, function seat_focus_del is not implemented on Efl.Canvas.Layout.External
Error, function clipees_has is not implemented on Efl.Canvas.Layout.External
Error, function key_grab is not implemented on Efl.Canvas.Layout.External
Error, function key_ungrab is not implemented on Efl.Canvas.Layout.External
Error, function pointer_coords_inside_get is not implemented on Efl.Canvas.Layout.External
Error, function layer is not implemented on Efl.Canvas.Layout.External
Error, function below is not implemented on Efl.Canvas.Layout.External
Error, function above is not implemented on Efl.Canvas.Layout.External
Error, function stack_below is not implemented on Efl.Canvas.Layout.External
Error, function raise is not implemented on Efl.Canvas.Layout.External
Error, function stack_above is not implemented on Efl.Canvas.Layout.External
Error, function lower is not implemented on Efl.Canvas.Layout.External
Error, function pointer_xy is not implemented on Efl.Canvas.Layout.External
Error, function pointer_inside is not implemented on Efl.Canvas.Layout.External
Error, function seat_event_filter is not implemented on Efl.Canvas.Layout.External
Error, function pointer_iterate is not implemented on Efl.Canvas.Layout.External
Error, function hint_base is not implemented on Efl.Canvas.Layout.External
Error, function hint_step is not implemented on Efl.Canvas.Layout.External
Error, function hint_aspect is not implemented on Efl.Canvas.Layout.External
Error, function hint_max is not implemented on Efl.Canvas.Layout.External
Error, function hint_min is not implemented on Efl.Canvas.Layout.External
Error, function hint_request is not implemented on Efl.Canvas.Layout.External
Error, function hint_restricted_min is not implemented on Efl.Canvas.Layout.External
Error, function hint_combined_min is not implemented on Efl.Canvas.Layout.External
Error, function hint_margin is not implemented on Efl.Canvas.Layout.External
Error, function hint_weight is not implemented on Efl.Canvas.Layout.External
Error, function hint_align is not implemented on Efl.Canvas.Layout.External
Error, function loop is not implemented on Efl.Canvas.Layout.External
Error, function content_remove is not implemented on Efl.Canvas.Layout_Internal.Swallow
Error, function content_iterate is not implemented on Efl.Canvas.Layout_Internal.Swallow
Error, function content_count is not implemented on Efl.Canvas.Layout_Internal.Swallow
Error, function orientation is not implemented on Efl.Canvas.Layout_Internal.Box
Error, function pointer_xy is not implemented on Edje.Edit
Error, function pointer_inside is not implemented on Edje.Edit
Error, function pointer_iterate is not implemented on Edje.Edit
Error, function hint_base is not implemented on Edje.Edit
Error, function hint_step is not implemented on Edje.Edit
Error, function save is not implemented on Edje.Edit
Error, function content is not implemented on Edje.Edit
Error, function content_unset is not implemented on Edje.Edit
Error, function content_iterate is not implemented on Edje.Edit
Error, function content_count is not implemented on Edje.Edit
Error, function mirrored_automatic is not implemented on Edje.Edit
Error, function position is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function size is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function geometry is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function color is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function color_part is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function visible is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_new is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_free is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_equal is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_compare is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_paragraph_char_first is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_paragraph_char_last is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_word_start is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_word_end is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_paragraph_next is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_paragraph_prev is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function cursor_char_delete is not implemented on Efl.Canvas.Layout_Internal.Text
Error, function pointer_xy is not implemented on Edje.Object
Error, function pointer_inside is not implemented on Edje.Object
Error, function pointer_iterate is not implemented on Edje.Object
Error, function hint_base is not implemented on Edje.Object
Error, function hint_step is not implemented on Edje.Object
Error, function save is not implemented on Edje.Object
Error, function content is not implemented on Edje.Object
Error, function content_unset is not implemented on Edje.Object
Error, function content_iterate is not implemented on Edje.Object
Error, function content_count is not implemented on Edje.Object
Error, function mirrored_automatic is not implemented on Edje.Object
Error, function position is not implemented on Efl.Canvas.Layout_Internal
Error, function size is not implemented on Efl.Canvas.Layout_Internal
Error, function geometry is not implemented on Efl.Canvas.Layout_Internal
Error, function color is not implemented on Efl.Canvas.Layout_Internal
Error, function color_part is not implemented on Efl.Canvas.Layout_Internal
Error, function visible is not implemented on Efl.Canvas.Layout_Internal
Error, function address_dial is not implemented on Efl.Net.Dialer.Ssl
Error, function address is not implemented on Efl.Net.Server.Simple
Error, function clients_count is not implemented on Efl.Net.Server.Simple
Error, function serving is not implemented on Efl.Net.Server.Simple
Error, function address is not implemented on Efl.Net.Server.Ssl
Error, function clients_count is not implemented on Efl.Net.Server.Ssl
Error, function serving is not implemented on Efl.Net.Server.Ssl
Error, function priority is not implemented on Ecore.Exe
Error, function suspend is not implemented on Ecore.Exe
Error, function proxy is not implemented on Efl.Net.Dialer.Unix
Error, function mmap is not implemented on Efl.Io.File
Error, function save is not implemented on Efl.Io.File
Error, function proxy is not implemented on Efl.Net.Dialer.Udp
Error, function address_dial is not implemented on Efl.Net.Dialer.Simple
Error, function connected is not implemented on Efl.Net.Dialer.Simple
Error, function address_local is not implemented on Efl.Net.Socket.Simple
Error, function address_remote is not implemented on Efl.Net.Socket.Simple
Error, function address_local is not implemented on Efl.Net.Socket.Ssl
Error, function address_remote is not implemented on Efl.Net.Socket.Ssl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment