efl/src/lib/elementary
Felipe Magno de Almeida a594413ccb elementary: Rename EAPI macro to ELM_API in Elementary library
Patch from a series of patches to rename EAPI symbols to specific
library DSOs.

EAPI was designed to be able to pass
```__attribute__ ((visibility ("default")))``` for symbols with
GCC, which would mean that even if -fvisibility=hidden was used
when compiling the library, the needed symbols would get exported.

MSVC __almost__ works like GCC (or mingw) in which you can
declare everything as export and it will just work (slower, but
it will work). But there's a caveat: global variables will not
work the same way for MSVC, but works for mingw and GCC.

For global variables (as opposed to functions), MSVC requires
correct DSO visibility for MSVC: instead of declaring a symbol as
export for everything, you need to declare it as import when
importing from another DSO and export when defining it locally.

With current EAPI definitions, we get the following example
working in mingw and MSVC (observe it doesn't define any global
variables as exported symbols).

Example 1:
dll1:
```
EAPI void foo(void);

EAPI void bar()
{
  foo();
}
```
dll2:
```
EAPI void foo()
{
  printf ("foo\n");
}
```

This works fine with API defined as __declspec(dllexport) in both
cases and for gcc defining as
```__atttribute__((visibility("default")))```.

However, the following:
Example 2:

dll1:

```
EAPI extern int foo;
EAPI void foobar(void);

EAPI void bar()
{
  foo = 5;
  foobar();
}
```

dll2:

```
EAPI int foo = 0;
EAPI void foobar()
{
  printf ("foo %d\n", foo);
}
```

This will work on mingw but will not work for MSVC. And that's why
EAPI is the only solution that worked for MSVC.

Co-authored-by: João Paulo Taylor Ienczak Zanette <jpaulotiz@gmail.com>
Co-authored-by: Ricardo Campos <ricardo.campos@expertise.dev>
Co-authored-by: Lucas Cavalcante de Sousa <lucks.sousa@gmail.com>
2020-10-11 13:00:04 -03:00
..
.gitignore gitignore: add elm_default_config.x 2019-04-15 13:08:05 +02:00
Efl_Ui.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
Efl_Ui.hh cxx: Fix missing bits from header rename 2019-05-03 08:47:14 +02:00
Elementary.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
Elementary_Cursor.h
Elementary_Options.h.in elocation: remove beta library 2019-12-09 15:31:00 +01:00
config_embed build: Fix on OpenBSD. 2019-05-28 12:02:48 +02:00
efl_access_action.c build: fix elm header usage 2019-09-18 18:04:55 +02:00
efl_access_action.eo eo files: Avoid container<ptr(value_type)> usage. 2019-11-29 17:22:07 -03:00
efl_access_component.c build: fix elm header usage 2019-09-18 18:04:55 +02:00
efl_access_component.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_access_editable_text.c build: fix elm header usage 2019-09-18 18:04:55 +02:00
efl_access_editable_text.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_access_object.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_access_object.eo remove unused imports in eo/eot files 2020-04-19 01:44:50 +02:00
efl_access_object.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_access_selection.c build: fix elm header usage 2019-09-18 18:04:55 +02:00
efl_access_selection.eo docs: Move property docs to property level instead of set/get 2019-09-13 12:30:03 +02:00
efl_access_text.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_access_text.eo efl_access_text: remove ptr usage in eo files 2020-06-02 08:07:48 +02:00
efl_access_text.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_access_value.c build: fix elm header usage 2019-09-18 18:04:55 +02:00
efl_access_value.eo docs: Remove redundant documentation 2019-10-07 16:40:50 +02:00
efl_access_widget_action.c build: fix elm header usage 2019-09-18 18:04:55 +02:00
efl_access_widget_action.eo eolian: drop @cref 2019-08-29 13:58:16 +02:00
efl_access_widget_action.h efl: remove EFL_EO_API_SUPPORT macro 2019-03-18 12:13:59 +01:00
efl_access_window.c build: fix elm header usage 2019-09-18 18:04:55 +02:00
efl_access_window.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_access_window.h efl: remove EFL_EO_API_SUPPORT macro 2019-03-18 12:13:59 +01:00
efl_config_global.eo efl: change all occurences of @owned to @move 2019-09-06 17:01:05 +02:00
efl_datetime_manager.c efl_datetime_manager: how did that ever work? 2019-12-13 09:33:01 -08:00
efl_datetime_manager.eo docs: Move property docs to property level instead of set/get 2019-09-13 12:30:03 +02:00
efl_text_interactive.eo Fix namespace clashes for Efl.Text.Cursor 2020-04-14 12:25:55 +02:00
efl_ui.eot remove unused imports in eo/eot files 2020-04-19 01:44:50 +02:00
efl_ui_action_connector.c efl_ui_action_connector: rename clickable_util to action_connector 2019-08-05 17:44:32 +02:00
efl_ui_action_connector.eo eolian: rename @class on methods to @static 2019-08-16 16:27:00 +02:00
efl_ui_alert_popup.c efl: remove bool and string pointer mixup 2020-09-01 14:12:31 +02:00
efl_ui_alert_popup.eo efl_ui_alert_popup: remove beta for efl_ui_alert_popup_title 2019-12-06 17:49:52 +09:00
efl_ui_alert_popup_part_title.eo efl: add @since tags for stabilized classes 2019-12-19 09:46:07 +01:00
efl_ui_alert_popup_private.h elementary: rename Efl.Ui.Popup classes 2018-11-16 11:26:57 +01:00
efl_ui_average_model.c efl: use eina_streq for all property operation in model to avoid crash on NULL property name. 2019-07-10 21:10:23 +02:00
efl_ui_average_model.eo docs: Fix problems with monospaced text 2019-10-02 11:31:19 +02:00
efl_ui_bg.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_bg.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_bg_eo.legacy.h elm_box: remove all legacy usage from eo files 2019-03-06 13:03:06 -08:00
efl_ui_bg_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_bg_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_bg_legacy_eo.legacy.h elm_box: remove all legacy usage from eo files 2019-03-06 13:03:06 -08:00
efl_ui_bg_private.h efl_ui_bg: remove Efl.Ui.Bg interface and rename Efl.Ui.Bg_Widget class 2018-11-20 10:24:05 +09:00
efl_ui_box.c efl_ui/container: remove erroneous negative value checks for uint params 2019-10-08 16:49:41 +02:00
efl_ui_box.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_box_flow.c efl_ui/flow.box: fix item calc with mixed weights 2019-08-01 14:37:05 -07:00
efl_ui_box_flow.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_box_layout.c efl_ui/box: optimize position_set operations with boxes 2019-07-17 10:54:44 -07:00
efl_ui_box_private.h efl_gfx_arrangement: change content_padding param type and remove scalable 2019-10-02 12:11:15 +02:00
efl_ui_box_stack.c ui.box: remove leagcy evas_box from Efl.Ui.Box 2019-04-17 15:21:07 +02:00
efl_ui_box_stack.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_button.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_button.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_button_eo.h
efl_ui_button_eo.legacy.h elm_button: remove all legacy usage from eo files 2019-03-06 13:03:10 -08:00
efl_ui_button_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_button_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_button_legacy_eo.legacy.h elm_button: remove all legacy usage from eo files 2019-03-06 13:03:10 -08:00
efl_ui_button_legacy_part.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_button_private.h
efl_ui_caching_factory.c docs: Improve documentation on cache-related classes 2019-10-28 16:51:59 +01:00
efl_ui_caching_factory.eo efl: add @since tags for stabilized classes 2019-12-19 09:46:07 +01:00
efl_ui_calendar.c elm/efl_ui: remove elm_layout_sizing_eval implementations 2019-07-30 13:12:52 -04:00
efl_ui_calendar.eo docs: Remove redundant documentation 2019-10-07 16:40:50 +02:00
efl_ui_calendar_item.eo efl_ui_calendar_item: document this class a little bit more 2019-09-12 13:30:53 +02:00
efl_ui_calendar_private.h doxygen: remove duplicated sections 2020-02-28 11:44:19 +01:00
efl_ui_check.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_check.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_check_eo.h
efl_ui_check_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_check_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_check_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_check_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_check_legacy_eo.legacy.h elm_check: remove all legacy usage from eo files 2019-03-06 13:03:12 -08:00
efl_ui_check_legacy_part.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_check_private.h elm/check: fix emission of legacy "changed" callback 2019-09-18 18:18:55 +02:00
efl_ui_clock.c efl.ui.textbox: rename _disabled properties into _enabled 2019-12-20 14:10:00 +01:00
efl_ui_clock.eo docs: Switch remaining #doxygen-style refs to @eo-style 2019-09-02 11:57:27 +02:00
efl_ui_clock.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
efl_ui_clock_legacy.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_clock_private.h
efl_ui_collection.c Fix typos - (Part #3) 2020-07-06 10:52:51 +02:00
efl_ui_collection.eo efl_ui_item: add API that restricts a item from beeing unselected 2020-01-02 09:12:39 -05:00
efl_ui_collection_focus_manager.eo docs: Update focus documentation 2019-09-03 18:41:34 +02:00
efl_ui_collection_view.c Revert "elm - collection view - check return and fix coverity wanring" 2020-09-21 11:09:07 +02:00
efl_ui_collection_view.eo elementary: Fix declaration of CV managers getters 2019-12-06 16:55:09 +01:00
efl_ui_collection_view_focus_manager.eo elementary: introduce Efl.Ui.CollectionView a generic listing View. 2019-09-24 11:12:43 -07:00
efl_ui_container_layout.c efl_gfx_arrangement: change content_padding param type and remove scalable 2019-10-02 12:11:15 +02:00
efl_ui_container_layout.h efl_gfx_arrangement: change content_padding param type and remove scalable 2019-10-02 12:11:15 +02:00
efl_ui_datepicker.c efl_ui_datepicker: do not substract anything fom mday 2019-12-31 11:24:36 +01:00
efl_ui_datepicker.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_datepicker_private.h
efl_ui_default_item.c efl_ui_default_item: remove item parts 2019-08-21 07:50:45 +02:00
efl_ui_default_item.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_dnd.c efl_ui_dnd: cleanup when backend failed to create dnd op 2020-04-07 10:58:28 +02:00
efl_ui_dnd.eo docs: Strengthen docs for Copy&Paste and Drag&Drop 2020-03-08 11:01:18 +01:00
efl_ui_exact_model.c Fix typos - (Part #2) 2020-07-06 10:52:49 +02:00
efl_ui_exact_model.eo docs: Fix problems with monospaced text 2019-10-02 11:31:19 +02:00
efl_ui_flip.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_flip.eo docs: Move property docs to property level instead of set/get 2019-09-13 12:30:03 +02:00
efl_ui_flip_eo.h
efl_ui_flip_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_flip_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_flip_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_flip_legacy_eo.c efl_ui_flip: remove all legacy usage from eo files 2019-03-06 13:03:16 -08:00
efl_ui_flip_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_flip_legacy_eo.legacy.h efl_ui_flip: remove all legacy usage from eo files 2019-03-06 13:03:16 -08:00
efl_ui_flip_part.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_focus_composition.c efl_ui_focus_object: fixup properties that are used for event infos. 2019-03-11 17:47:05 -04:00
efl_ui_focus_composition.eo efl: change all occurences of @owned to @move 2019-09-06 17:01:05 +02:00
efl_ui_focus_composition_adapter.eo docs: Update focus documentation 2019-09-03 18:41:34 +02:00
efl_ui_focus_graph.c efl_ui_focus_manager_calc: fix resource leaks 2019-09-16 17:57:20 +02:00
efl_ui_focus_graph.h
efl_ui_focus_layer.c efl_ui_focus_layer: correctly dismantle redirect chain 2020-04-14 11:29:25 -04:00
efl_ui_focus_layer.eo docs: Update focus documentation 2019-09-03 18:41:34 +02:00
efl_ui_focus_manager.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_focus_manager.eo efl_ui_focus_manager: reduce the amount of relying on events 2020-07-31 10:17:42 +02:00
efl_ui_focus_manager_calc.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_focus_manager_calc.eo efl_ui_focus_manager: reduce the amount of relying on events 2020-07-31 10:17:42 +02:00
efl_ui_focus_manager_root_focus.c efl_ui_focus_manager_root_focus: perform focus switch delayed 2019-08-06 10:52:32 -04:00
efl_ui_focus_manager_root_focus.eo docs: Update focus documentation 2019-09-03 18:41:34 +02:00
efl_ui_focus_manager_sub.c efl_ui_focus_manager: reduce the amount of relying on events 2020-07-31 10:17:42 +02:00
efl_ui_focus_manager_sub.eo docs: Update focus documentation 2019-09-03 18:41:34 +02:00
efl_ui_focus_manager_window_root.eo docs: Update focus documentation 2019-09-03 18:41:34 +02:00
efl_ui_focus_object.c efl_ui_focus_object: do not emit focus_geometry_changed when not needed 2019-10-11 10:03:17 -04:00
efl_ui_focus_object.eo docs: Move property docs to property level instead of set/get 2019-09-13 12:30:03 +02:00
efl_ui_focus_parent_provider.c
efl_ui_focus_parent_provider.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_focus_parent_provider_gen.c efl_ui_widget: keep backward compatibility 2019-08-27 15:02:32 +02:00
efl_ui_focus_parent_provider_gen_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_focus_parent_provider_gen_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_focus_parent_provider_standard.c
efl_ui_focus_parent_provider_standard.eo docs: Update focus documentation 2019-09-03 18:41:34 +02:00
efl_ui_focus_util.c efl_ui_focus_object: rename events 2019-02-22 14:00:32 +01:00
efl_ui_focus_util.eo docs: Update focus documentation 2019-09-03 18:41:34 +02:00
efl_ui_format.c efl_ui_format: make this usable with the standard behaviour of accessors 2019-12-18 21:45:45 +01:00
efl_ui_format.eo remove unused imports in eo/eot files 2020-04-19 01:44:50 +02:00
efl_ui_frame.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_frame.eo docs: Move property docs to property level instead of set/get 2019-09-13 12:30:03 +02:00
efl_ui_frame_eo.h
efl_ui_frame_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_frame_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_frame_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_frame_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_frame_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_frame_legacy_eo.legacy.h efl_ui_frame: remove all legacy usage from eo files 2019-03-06 15:21:37 -08:00
efl_ui_grid.c elementary: use data:null to remove unecessary structure declaration. 2019-07-25 21:03:11 +02:00
efl_ui_grid.eo efl_ui_multi_selectable: clean this up 2019-11-25 13:31:24 +01:00
efl_ui_grid_default_item.c introduce default item 2019-08-21 07:50:44 +02:00
efl_ui_grid_default_item.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_grid_view.c elementary: add Efl.Ui.Grid_View by leveraging MVVM and Collection/Position_Manager infrastructure. 2019-09-24 11:12:45 -07:00
efl_ui_grid_view.eo efl_ui_multi_selectable: clean this up 2019-11-25 13:31:24 +01:00
efl_ui_group_item.c efl_ui_pack: allow NULL as existing parameter in after and before 2019-09-23 16:15:44 -04:00
efl_ui_group_item.eo docs: Proper documentation for Collection and Item classes 2019-08-30 18:39:06 +02:00
efl_ui_homogeneous_model.c elementary: fix double eina_value_free in Efl.Ui.Homogeneous_Model.property.set 2019-09-17 10:24:12 -07:00
efl_ui_homogeneous_model.eo docs: Fix problems with monospaced text 2019-10-02 11:31:19 +02:00
efl_ui_image.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_image.eo efl_ui/image: implement efl.player::playback_loop property 2020-03-20 15:57:51 +01:00
efl_ui_image_factory.c efl: simplify logic for widget created by factory. 2019-09-24 09:18:49 +02:00
efl_ui_image_factory.eo efl: split Efl.Ui.Factory.create stage into constructing and building 2019-09-24 09:18:47 +02:00
efl_ui_image_legacy_eo.c efl_ui_image: remove all legacy usage from eo files 2019-03-06 15:21:41 -08:00
efl_ui_image_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_image_legacy_eo.legacy.h efl_ui_image: remove all legacy usage from eo files 2019-03-06 15:21:41 -08:00
efl_ui_image_zoomable.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_image_zoomable.eo efl_ui/image: implement efl.player::playback_loop property 2020-03-20 15:57:51 +01:00
efl_ui_image_zoomable_eo.h
efl_ui_image_zoomable_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_image_zoomable_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_image_zoomable_legacy_eo.c efl_ui_image_zoomable: remove all legacy usage from eo files 2019-03-06 15:21:43 -08:00
efl_ui_image_zoomable_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_image_zoomable_legacy_eo.legacy.h efl_ui_image_zoomable: remove all legacy usage from eo files 2019-03-06 15:21:43 -08:00
efl_ui_image_zoomable_pan.eo efl_ui_image_zoomable: remove all legacy usage from eo files 2019-03-06 15:21:43 -08:00
efl_ui_image_zoomable_private.h efl_ui/image: implement efl.player::playback_loop property 2020-03-20 15:57:51 +01:00
efl_ui_internal_text_interactive.c elm - efl ui text - fix enum return to use right enum 2020-08-25 13:21:25 +01:00
efl_ui_internal_text_interactive.eo efl_input_text: rename namespace 2020-04-14 12:25:58 +02:00
efl_ui_internal_text_interactive.h
efl_ui_internal_text_scroller.c efl_ui_text: scroller mode clean up 2020-01-02 12:41:13 +01:00
efl_ui_internal_text_scroller.eo Efl.Canvas.Text rename into Efl.Canvas.Textblock 2019-12-10 17:39:59 +09:00
efl_ui_internal_text_scroller.h Ui internal text scroller: move .eo.h to internal usage 2018-11-06 00:10:33 +02:00
efl_ui_item.c efl_ui_item: add API that restricts a item from beeing unselected 2020-01-02 09:12:39 -05:00
efl_ui_item.eo elementary: enforce container type check for efl_ui_item_index_get and improve documentation. 2019-12-24 09:20:11 -05:00
efl_ui_item_clickable.eo efl_ui/item_clickable: mark beta again 2019-09-26 18:00:32 +02:00
efl_ui_item_private.h elementary: introduce Efl.Ui.CollectionView a generic listing View. 2019-09-24 11:12:43 -07:00
efl_ui_l10n.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_layout.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_layout.eo efl_ui_layout: remove group_calcualte to respect legacy min size 2020-05-20 16:36:15 +09:00
efl_ui_layout_base.eo remove unused imports in eo/eot files 2020-04-19 01:44:50 +02:00
efl_ui_layout_factory.c elementary: return an error when unimplemented function on Efl.Ui.Widget_Factory. 2019-09-25 11:31:02 -07:00
efl_ui_layout_factory.eo efl: add @since tags for stabilized classes 2019-12-19 09:46:07 +01:00
efl_ui_layout_legacy_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_layout_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_layout_legacy_eo.legacy.h efl_ui_layout: remove all legacy usage from eo files 2019-03-06 15:21:46 -08:00
efl_ui_layout_pack.c Efl.Ui.Layout_Pack: fix obvious uninitialized variable 2019-09-24 17:57:00 +02:00
efl_ui_layout_part.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_layout_part_bg.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_layout_part_box.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_layout_part_content.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_layout_part_legacy.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_layout_part_table.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_layout_part_text.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_legacy.c
efl_ui_legacy.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_list.c elementary: use data:null to remove unecessary structure declaration. 2019-07-25 21:03:11 +02:00
efl_ui_list.eo efl_ui_multi_selectable: clean this up 2019-11-25 13:31:24 +01:00
efl_ui_list_default_item.c introduce default item 2019-08-21 07:50:44 +02:00
efl_ui_list_default_item.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_list_placeholder_item.c efl_ui_default_item: remove item parts 2019-08-21 07:50:45 +02:00
efl_ui_list_placeholder_item.eo efl_ui_default_item: remove item parts 2019-08-21 07:50:45 +02:00
efl_ui_list_view.c elementary: migrate Efl.Ui.List_View to use Efl.Ui.Collection_View. 2019-09-24 11:12:44 -07:00
efl_ui_list_view.eo efl_ui_multi_selectable: clean this up 2019-11-25 13:31:24 +01:00
efl_ui_multi_selectable.eo efl: add @since tags for stabilized classes 2019-12-19 09:46:07 +01:00
efl_ui_multi_selectable_index_range.eo remove unused imports in eo/eot files 2020-04-19 01:44:50 +02:00
efl_ui_multi_selectable_object_range.eo remove unused imports in eo/eot files 2020-04-19 01:44:50 +02:00
efl_ui_navigation_bar.c efl_input_clickable: rename efl_ui_clickable to efl_input_clickable 2019-07-29 11:43:01 +02:00
efl_ui_navigation_bar.eo efl_ui_navigation_bar: remove Efl.Content implemention 2019-05-03 17:16:40 +02:00
efl_ui_navigation_bar_part.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_navigation_bar_part_back_button.eo docs: Fix typos and wrap EO files to 120 chars 2019-09-02 16:24:26 +02:00
efl_ui_navigation_bar_private.h
efl_ui_navigation_layout.c ui.widget: remove elm_widget_sub_object_parent_add from each of widgets 2019-04-18 11:01:19 +02:00
efl_ui_navigation_layout.eo efl_ui_navigation_layout: fix bar value to be Efl.Ui.Layout_Base 2019-03-12 14:43:46 +09:00
efl_ui_navigation_layout_private.h elementary: remove Efl.Ui.Layout namespace 2018-11-16 11:11:13 +01:00
efl_ui_pager.c efl_ui_spotlight: rename Manager_XXX and Indicator_XXX 2020-01-23 12:55:12 +09:00
efl_ui_pager.eo move stabelized items out of @beta 2020-02-05 08:58:22 +01:00
efl_ui_pan.c efl_ui_pan: stop leaking content 2019-12-13 09:32:53 -08:00
efl_ui_pan.eo docs: Fix typos and wrap EO files to 120 chars 2019-09-02 16:24:26 +02:00
efl_ui_panel.c elementary: use array instead of list for subchildren 2020-02-19 16:28:11 +01:00
efl_ui_panel.eo efl_ui_scrollable: remove ui_scrollable_interactive and move all into ui_scrollable 2019-09-23 11:02:15 +02:00
efl_ui_panel_private.h doxygen: remove duplicated sections 2020-02-28 11:44:19 +01:00
efl_ui_panes.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_panes.eo efl_ui_panes: remove duplicated press/unpress event 2020-02-12 16:04:45 +01:00
efl_ui_panes_eo.h
efl_ui_panes_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_panes_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_panes_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_panes_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_panes_legacy_eo.legacy.h efl_ui_panes: remove all legacy usage from eo files 2019-03-06 15:21:49 -08:00
efl_ui_panes_part.eo api: efl.gfx.size_hints -> efl.gfx.hints 2019-02-21 18:43:12 +01:00
efl_ui_panes_private.h Rename Efl.Ui.Direction -> Efl.Ui.Layout_Orientation 2019-05-24 12:30:32 -04:00
efl_ui_popup.c efl_ui_popup: do not leak the backwall part 2019-12-11 11:11:05 -08:00
efl_ui_popup.eo efl_ui_popup: do not leak the backwall part 2019-12-11 11:11:05 -08:00
efl_ui_popup_part_backwall.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_popup_private.h efl_ui/popup: remove anchor_popup class 2019-08-21 10:42:04 -04:00
efl_ui_position_manager_common.h efl_ui_position_manager: only fill as many items as we need 2019-09-10 09:10:11 +02:00
efl_ui_position_manager_data_access_v1.eo elementary: reduce events triggered by Efl.Ui.PositionManager. 2019-12-11 11:12:01 +01:00
efl_ui_position_manager_entity.c efl_ui_position_manager: refactor data access 2019-08-27 17:47:54 +02:00
efl_ui_position_manager_entity.eo whitespace 2019-12-27 11:45:35 +01:00
efl_ui_position_manager_grid.c elementary: make sure that our index for the maximum number of object is actually unsigned int bound. 2019-12-27 11:36:59 +01:00
efl_ui_position_manager_grid.eo efl_ui_position_manager: a way to announce new entities 2019-09-19 14:37:52 -07:00
efl_ui_position_manager_list.c efl_ui_position_manager_list: add NULL check for memory allocation 2020-02-12 16:45:40 +09:00
efl_ui_position_manager_list.eo ui position_manager: fix doc typo. 2019-12-16 17:24:17 +09:00
efl_ui_progressbar.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_progressbar.eo Summary: code refactoring - get rid of unneccessary Efl.Access.Value interface. 2020-02-24 17:21:20 +01:00
efl_ui_progressbar_eo.h
efl_ui_progressbar_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_progressbar_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_progressbar_legacy_eo.legacy.h efl_ui_progressbar: remove all legacy usage from eo files 2019-03-06 15:21:52 -08:00
efl_ui_progressbar_legacy_part.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_progressbar_part.eo efl_ui_range_display: range_min_max -> range_limits 2019-06-19 10:03:21 +02:00
efl_ui_progressbar_private.h Get rid of trailing whitespaces (10 / 14) 2020-06-23 10:30:36 +02:00
efl_ui_property_bind_part.eo elementary: add support for widget part property bind. 2019-08-12 10:13:33 -07:00
efl_ui_radio.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_radio.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_radio_box.c efl_ui_*selectable: unify these APIs with the same c_prefix 2019-09-26 18:32:58 +09:00
efl_ui_radio_box.eo efl: add @since tags for stabilized classes 2019-12-19 09:46:07 +01:00
efl_ui_radio_eo.h Introduce Efl.Ui.Radio_Group & Efl.Ui.Radio_Box 2019-06-20 16:02:00 +02:00
efl_ui_radio_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_radio_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_radio_group.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_radio_group_impl.c efl_ui_item: add API that restricts a item from beeing unselected 2020-01-02 09:12:39 -05:00
efl_ui_radio_group_impl.eo efl_ui_item: add API that restricts a item from beeing unselected 2020-01-02 09:12:39 -05:00
efl_ui_radio_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_radio_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_radio_legacy_eo.legacy.h efl_ui_radio: remove all legacy usage from eo files 2019-03-06 15:21:54 -08:00
efl_ui_radio_legacy_part.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_radio_private.h efl_ui_radio: cleanup API 2019-06-20 16:02:02 +02:00
efl_ui_relative_container.c efl_ui_relative_container: rename relative_layout 2019-11-12 14:33:13 +01:00
efl_ui_relative_container.eo efl: add @since tags for stabilized classes 2019-12-19 09:46:07 +01:00
efl_ui_relative_container_private.h efl_ui_relative_container: rename relative_layout 2019-11-12 14:33:13 +01:00
efl_ui_scroll_manager.c elm: resolve float comparison warnings 2020-05-09 09:25:21 +01:00
efl_ui_scroll_manager.eo efl_ui_scrollbar: change scrollbar state when theme is reloaded. 2020-01-17 17:21:09 +01:00
efl_ui_scroll_util.c efl_ui_scrollbar: change scrollbar state when theme is reloaded. 2020-01-17 17:21:09 +01:00
efl_ui_scroller.c efl_ui_scroller: remove from the sub_object list on unset 2019-12-19 11:46:24 -08:00
efl_ui_scroller.eo efl_ui_scroller: free pan object correctly 2019-12-13 09:32:57 -08:00
efl_ui_select_model.c Fix typos - (Part #3) 2020-07-06 10:52:51 +02:00
efl_ui_select_model.eo efl_ui_multi_selectable: clean this up 2019-11-25 13:31:24 +01:00
efl_ui_selectable.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_selection.c rewrite efl cnp and dnd handling 2020-03-08 10:59:40 +01:00
efl_ui_selection.eo docs: Strengthen docs for Copy&Paste and Drag&Drop 2020-03-08 11:01:18 +01:00
efl_ui_selection_manager_private.h elementary: rename Efl.Selection -> Efl.Ui.Selection as it is only usable with User Interface related element. 2019-01-02 11:03:49 -08:00
efl_ui_separator.c Introduce Separator 2020-01-17 16:10:40 +01:00
efl_ui_separator.eo Introduce Separator 2020-01-17 16:10:40 +01:00
efl_ui_single_selectable.eo efl_ui_item: add API that restricts a item from beeing unselected 2020-01-02 09:12:39 -05:00
efl_ui_size_model.c efl_model : rename all efl_model based classes. 2019-01-31 14:59:37 +09:00
efl_ui_size_model.eo docs: Fix problems with monospaced text 2019-10-02 11:31:19 +02:00
efl_ui_slider.c elm: resolve float comparison warnings 2020-05-09 09:25:21 +01:00
efl_ui_slider.eo Summary: code refactoring - get rid of unneccessary Efl.Access.Value interface. 2020-02-24 17:21:20 +01:00
efl_ui_slider_interval.c elm: resolve float comparison warnings 2020-05-09 09:25:21 +01:00
efl_ui_slider_interval.eo Summary: code refactoring - get rid of unneccessary Efl.Access.Value interface. 2020-02-24 17:21:20 +01:00
efl_ui_slider_interval_private.h efl_ui_slider_interval: cut off the dependency with efl_ui_slider 2019-08-22 15:36:38 +02:00
efl_ui_slider_private.h efl_ui_slider: refactor for better data flow and code readability 2019-08-27 15:35:01 +02:00
efl_ui_spin.c Summary: code refactoring - get rid of unneccessary Efl.Access.Value interface. 2020-02-24 17:21:20 +01:00
efl_ui_spin.eo Summary: code refactoring - get rid of unneccessary Efl.Access.Value interface. 2020-02-24 17:21:20 +01:00
efl_ui_spin_button.c Summary: code refactoring - get rid of unneccessary Efl.Access.Value interface. 2020-02-24 17:21:20 +01:00
efl_ui_spin_button.eo Summary: code refactoring - get rid of unneccessary Efl.Access.Value interface. 2020-02-24 17:21:20 +01:00
efl_ui_spin_button_private.h efl_ui_spin: move the step implementation to spin_button 2019-08-03 20:40:11 +02:00
efl_ui_spin_private.h efl_ui_spin: move the step implementation to spin_button 2019-08-03 20:40:11 +02:00
efl_ui_spotlight_animation_manager.c efl_ui_spotlight: Introduce animation manager 2020-03-17 10:29:57 +01:00
efl_ui_spotlight_animation_manager.eo Spotlight: Remove jump_setup from ctors list 2020-03-17 11:56:37 +01:00
efl_ui_spotlight_container.c elm: resolve float comparison warnings 2020-05-09 09:25:21 +01:00
efl_ui_spotlight_container.eo move stabelized items out of @beta 2020-02-05 08:58:22 +01:00
efl_ui_spotlight_fade_manager.c efl_ui_spotlight: Introduce animation manager 2020-03-17 10:29:57 +01:00
efl_ui_spotlight_fade_manager.eo efl_ui_spotlight: Introduce animation manager 2020-03-17 10:29:57 +01:00
efl_ui_spotlight_icon_indicator.c Efl.Ui.Spotlight: Fix indicator initialization 2020-02-20 09:59:29 +01:00
efl_ui_spotlight_icon_indicator.eo efl_ui_spotlight: rename Manager_XXX and Indicator_XXX 2020-01-23 12:55:12 +09:00
efl_ui_spotlight_indicator.c elementary: rename Activew_View to Spotlight. 2019-07-05 19:18:22 +02:00
efl_ui_spotlight_indicator.eo efl_ui_spotlight: migrate from active_index to active_element 2019-09-06 16:10:40 +02:00
efl_ui_spotlight_manager.c elementary: rename Activew_View to Spotlight. 2019-07-05 19:18:22 +02:00
efl_ui_spotlight_manager.eo efl_ui_spotlight_manager: introduce a reason for switch_to 2020-03-17 10:29:53 +01:00
efl_ui_spotlight_plain_manager.c elm: resolve float comparison warnings 2020-05-09 09:25:21 +01:00
efl_ui_spotlight_plain_manager.eo efl_ui_spotlight: rename Manager_XXX and Indicator_XXX 2020-01-23 12:55:12 +09:00
efl_ui_spotlight_scroll_manager.c efl_ui_spotlight_manager: introduce a reason for switch_to 2020-03-17 10:29:53 +01:00
efl_ui_spotlight_scroll_manager.eo efl_ui_spotlight: rename Manager_XXX and Indicator_XXX 2020-01-23 12:55:12 +09:00
efl_ui_spotlight_util.c efl_ui_spotlight: rename Stack_Manager to Fade_Manager 2020-01-23 12:55:16 +09:00
efl_ui_spotlight_util.eo eolian: rename @class on methods to @static 2019-08-16 16:27:00 +02:00
efl_ui_stack.c efl_ui_spotlight: rename Stack_Manager to Fade_Manager 2020-01-23 12:55:16 +09:00
efl_ui_stack.eo move stabelized items out of @beta 2020-02-05 08:58:22 +01:00
efl_ui_state_model.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_tab_bar.c efl_ui_item: add API that restricts a item from beeing unselected 2020-01-02 09:12:39 -05:00
efl_ui_tab_bar.eo efl_ui_item: add API that restricts a item from beeing unselected 2020-01-02 09:12:39 -05:00
efl_ui_tab_bar_default_item.c introduce efl_ui_tab_bar_default_item 2019-08-29 21:07:48 +09:00
efl_ui_tab_bar_default_item.eo efl_ui_tab_*: enhance documentation 2019-09-06 16:32:56 +02:00
efl_ui_tab_bar_private.h efl_ui_item: add API that restricts a item from beeing unselected 2020-01-02 09:12:39 -05:00
efl_ui_tab_page.c efl_ui_tab_page: remove part 2019-08-29 14:42:41 +02:00
efl_ui_tab_page.eo efl_ui_tab_*: enhance documentation 2019-09-06 16:32:56 +02:00
efl_ui_tab_page_private.h fix build: remove deleted header file 2019-08-29 15:30:39 +02:00
efl_ui_tab_pager.c efl_ui_tab_pager: do not directly inherit from spotlight anymore 2020-02-03 17:16:03 +01:00
efl_ui_tab_pager.eo efl_ui_tab_pager: do not directly inherit from spotlight anymore 2020-02-03 17:16:03 +01:00
efl_ui_tab_pager_private.h efl_ui_tab_pager: do not directly inherit from spotlight anymore 2020-02-03 17:16:03 +01:00
efl_ui_table.c efl: remove unused functions 2020-09-01 14:12:31 +02:00
efl_ui_table.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_table_layout.c efl_ui/table: handle case where table has no items 2019-09-26 17:59:43 -04:00
efl_ui_table_private.h efl_gfx_arrangement: change content_padding param type and remove scalable 2019-10-02 12:11:15 +02:00
efl_ui_table_static.c
efl_ui_table_static.eo docs: Efl.Ui.Table_Static 2019-11-05 11:31:29 +01:00
efl_ui_tags.c rewrite efl cnp and dnd handling 2020-03-08 10:59:40 +01:00
efl_ui_tags.eo efl: replace composite with composites and dedup implements 2019-09-19 18:20:56 +02:00
efl_ui_tags_private.h Efl.Ui.Format revamp 2019-07-04 19:38:20 +02:00
efl_ui_text_factory_emoticons.c Efl.Canvas.Text rename into Efl.Canvas.Textblock 2019-12-10 17:39:59 +09:00
efl_ui_text_factory_emoticons.eo Efl.Canvas.Text rename into Efl.Canvas.Textblock 2019-12-10 17:39:59 +09:00
efl_ui_text_factory_fallback.c Efl.Canvas.Text rename into Efl.Canvas.Textblock 2019-12-10 17:39:59 +09:00
efl_ui_text_factory_fallback.eo Efl.Canvas.Text rename into Efl.Canvas.Textblock 2019-12-10 17:39:59 +09:00
efl_ui_text_factory_images.c Efl.Canvas.Text rename into Efl.Canvas.Textblock 2019-12-10 17:39:59 +09:00
efl_ui_text_factory_images.eo Efl.Canvas.Text rename into Efl.Canvas.Textblock 2019-12-10 17:39:59 +09:00
efl_ui_textbox.c efl: remove bool and string pointer mixup 2020-09-01 14:12:31 +02:00
efl_ui_textbox.eo efl_ui_textbox: preserve changing user color set 2020-08-05 13:33:03 +09:00
efl_ui_textbox_async.eo efl.ui.text: rename to efl.ui.textbox 2019-12-11 09:47:50 +09:00
efl_ui_textbox_part.eo efl_ui_textbox: rename efl_ui_text_part to efl_ui_textbox_part 2020-01-16 09:50:10 +01:00
efl_ui_textpath.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_textpath.eo efl_ui_textpath: introduce efl_ui_textpath_circular_set() interface. 2019-07-22 16:47:43 +09:00
efl_ui_textpath_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_textpath_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_textpath_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_textpath_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_textpath_legacy_eo.legacy.h efl_ui_textpath: remove all legacy usage from eo files 2019-03-06 15:21:57 -08:00
efl_ui_textpath_part.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_theme.eo docs: Remove redundant documentation 2019-10-07 16:40:50 +02:00
efl_ui_timepicker.c efl_ui_timepicker: Add null check for efl_text_get 2020-08-04 14:52:35 +02:00
efl_ui_timepicker.eo efl_ui_timepicker: make 24h mode work 2020-01-13 15:57:17 +01:00
efl_ui_timepicker_private.h
efl_ui_vg_animation.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_vg_animation.eo Efl.Ui.Vg_Animation: Remove @beta mark 2020-01-31 16:35:57 +09:00
efl_ui_vg_animation.h Efl.Ui.Animation_View : Change class name to Efl.Ui.Vg_Animation 2019-12-31 09:53:16 -05:00
efl_ui_vg_animation_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_vg_animation_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_vg_animation_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_vg_animation_private.h Efl.Player: Move autoplay/playback_loop from Efl.Ui.Vg_Animation 2020-01-28 16:56:04 +01:00
efl_ui_video.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_video.eo efl/player: rename 'play' property to 'pause' 2019-09-24 15:23:15 -07:00
efl_ui_video.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
efl_ui_video_eo.h
efl_ui_video_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_video_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_video_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_video_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_video_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_video_legacy_eo.legacy.h efl_ui_video: remove all legacy usage from eo files 2019-03-06 15:22:00 -08:00
efl_ui_video_private.h
efl_ui_view_model.c code comments: annoying typos 2019-12-04 18:22:25 +01:00
efl_ui_view_model.eo code comments: annoying typos 2019-12-04 18:22:25 +01:00
efl_ui_widget.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_widget.eo efl_ui_widget: add description of widget parts 2019-12-20 13:51:04 +01:00
efl_ui_widget_common.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_widget_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_widget_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_widget_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_widget_factory.c elementary: reduce event generation during object creation by Efl.Ui.WidgetFactory. 2019-12-11 11:11:52 +01:00
efl_ui_widget_factory.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_widget_flip.h
efl_ui_widget_focus_manager.c
efl_ui_widget_focus_manager.eo efl: replace composite with composites and dedup implements 2019-09-19 18:20:56 +02:00
efl_ui_widget_frame.h
efl_ui_widget_image.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_widget_pan.h
efl_ui_widget_part.eo edje_part: move part_type to common interface 2020-03-17 09:38:10 +01:00
efl_ui_widget_part_bg.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_widget_part_shadow.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
efl_ui_widget_scroll_manager.h Whitespace 2019-09-03 09:17:43 +02:00
efl_ui_widget_scrollable_content.c efl_ui/scrollable_content: be more explicit about scrollable_content_get() 2019-09-13 18:51:51 +02:00
efl_ui_widget_scrollable_content.eo move stabelized items out of @beta 2020-02-05 08:58:22 +01:00
efl_ui_widget_scroller.h
efl_ui_win.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_win.eo efl_ui_win: declare constructors not optional 2020-06-09 10:39:35 +02:00
efl_ui_win_inlined.c efl_ui_win variants: remove all legacy usage from eo files 2019-03-06 15:22:10 -08:00
efl_ui_win_inlined.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_win_inlined_legacy_eo.c efl_ui_win variants: remove all legacy usage from eo files 2019-03-06 15:22:10 -08:00
efl_ui_win_inlined_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_win_inlined_legacy_eo.legacy.h efl_ui_win variants: remove all legacy usage from eo files 2019-03-06 15:22:10 -08:00
efl_ui_win_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
efl_ui_win_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_win_legacy_eo.legacy.h efl_ui_win variants: remove all legacy usage from eo files 2019-03-06 15:22:10 -08:00
efl_ui_win_part.eo efl: implement efl.file::unload for classes that implement load 2019-08-29 17:17:08 +02:00
efl_ui_win_socket.c efl_ui_win variants: remove all legacy usage from eo files 2019-03-06 15:22:10 -08:00
efl_ui_win_socket.eo Mark BETA classes individually 2019-02-14 17:46:50 +01:00
efl_ui_win_socket_legacy_eo.c efl_ui_win variants: remove all legacy usage from eo files 2019-03-06 15:22:10 -08:00
efl_ui_win_socket_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
efl_ui_win_socket_legacy_eo.legacy.h efl_ui_win variants: remove all legacy usage from eo files 2019-03-06 15:22:10 -08:00
elc_combobox.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_combobox.h
elc_combobox_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_ctxpopup.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_ctxpopup.h docs: Correct the wrong group name in Edje and Elementary 2020-07-06 10:52:56 +02:00
elc_ctxpopup_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_fileselector.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_fileselector.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elc_fileselector_button.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_fileselector_button.h
elc_fileselector_button_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_fileselector_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_fileselector_entry.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_fileselector_entry.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elc_fileselector_entry_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_fileselector_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_hoversel.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_hoversel.h
elc_hoversel_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_multibuttonentry.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_multibuttonentry.h Fix typos - (Part #2) 2020-07-06 10:52:49 +02:00
elc_multibuttonentry_common.h
elc_multibuttonentry_eo.h elm_multibuttonentry*: remove all legacy usage from eo files 2019-03-07 14:15:50 -08:00
elc_multibuttonentry_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_naviframe.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_naviframe.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elc_naviframe_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_naviframe_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_player.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_popup.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_popup.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elc_popup_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elc_scrolled_entry.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elementary_api.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elementary_config.h doxygen docs: Fix warnings in elm_config.h 2020-03-26 14:27:51 +01:00
elementary_js.cc elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_access.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_access.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_access_eo.c elm_access: remove all legacy usage from eo files 2019-03-07 14:14:40 -08:00
elm_access_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_access_eo.legacy.h elm_access: remove all legacy usage from eo files 2019-03-07 14:14:40 -08:00
elm_actionslider.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_actionslider.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_actionslider_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_actionslider_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_actionslider_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_actionslider_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_actionslider_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_actionslider_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_app.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_atspi_app_object.c build: fix elm header usage 2019-09-18 18:04:55 +02:00
elm_atspi_app_object.h elm_atspi_app_object: remove all legacy usage from eo files 2019-03-22 16:04:29 +09:00
elm_atspi_app_object_eo.c elm_atspi_app_object: remove all legacy usage from eo files 2019-03-22 16:04:29 +09:00
elm_atspi_app_object_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_atspi_app_object_eo.legacy.h elm_atspi_app_object: remove all legacy usage from eo files 2019-03-22 16:04:29 +09:00
elm_atspi_bridge.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_atspi_bridge.h elm_atspi_bridge: remove all legacy usage from eo files 2019-03-22 16:04:32 +09:00
elm_atspi_bridge_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_atspi_bridge_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_atspi_bridge_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_atspi_bridge_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_authors.h
elm_bg.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_bg_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_box.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_box.h docs: Correct the wrong group name in Edje and Elementary 2020-07-06 10:52:56 +02:00
elm_box_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_box_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_box_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_box_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_box_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_box_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_bubble.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_bubble.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_bubble_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_bubble_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_bubble_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_bubble_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_bubble_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_bubble_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_button.h elm: fix legacy headers to never include (non-installed) eo headers 2019-03-07 14:17:12 -08:00
elm_button_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_cache.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_calendar.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_calendar.h build: remove efl_ui_calendar.h 2019-09-18 18:04:57 +02:00
elm_calendar_common.h
elm_calendar_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_calendar_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_calendar_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_calendar_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_calendar_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_calendar_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_calendar_item_eo.legacy.h elm_calendar: remove all legacy usage from eo files 2019-03-07 14:14:50 -08:00
elm_calendar_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_check.h efl_ui_radio: cleanup API 2019-06-20 16:02:02 +02:00
elm_check_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_clock.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_clock.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_clock_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_clock_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_clock_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_clock_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_clock_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_cnp.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_cnp.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_diff_widget.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_diff_widget.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_file.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_file.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_indent.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_indent.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_line.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_line.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_parse.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_parse.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_private.h
elm_code_syntax.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_syntax.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_text.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_text.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget.eo eolian: fix eolian errors with EOLIAN_ENFORCE_SINCE=1 2019-10-14 16:55:52 +09:00
elm_code_widget_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget_legacy_eo.c elm_layout: create a mixin to provide elm_layout_sizing_eval 2019-07-30 13:12:52 -04:00
elm_code_widget_legacy_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget_legacy_eo.legacy.h elm_code_widget_legacy: remove all legacy usage from eo files 2019-03-07 14:14:57 -08:00
elm_code_widget_private.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget_selection.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget_selection.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_code_widget_text.c elm_code_widget: make this efl_ui namespaced 2019-03-07 14:14:55 -08:00
elm_code_widget_undo.c replace strndup with eina_strndup, remove strndup definition in evil and elm_test_dnd 2019-05-03 13:13:57 +01:00
elm_color_class.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_color_class.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_color_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_color_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_color_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_color_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_colorselector.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_colorselector.h
elm_colorselector_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_colorselector_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_colorselector_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_colorselector_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_colorselector_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_colorselector_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_config.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_config.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_conform.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_conform.h
elm_conform_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_conformant_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_conformant_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_conformant_eo.legacy.h elm_conformant: remove all legacy usage from eo files 2019-03-07 14:15:03 -08:00
elm_ctxpopup_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_ctxpopup_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_ctxpopup_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_ctxpopup_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_ctxpopup_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_ctxpopup_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_ctxpopup_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_ctxpopup_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_ctxpopup_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_cursor.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_datetime.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_datetime.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dayselector.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dayselector.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_dayselector_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dayselector_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dayselector_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dayselector_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dayselector_item_eo.c elm_dayselector: remove all legacy usage from eo files 2019-03-07 14:15:07 -08:00
elm_dayselector_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dayselector_item_eo.legacy.h elm_dayselector: remove all legacy usage from eo files 2019-03-07 14:15:07 -08:00
elm_dayselector_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dayselector_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_dbus_menu.c elm_dbus_menu: Remove unreached code. 2020-02-14 16:27:27 +09:00
elm_debug.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_deprecated.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_diskselector_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_diskselector_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_dnd.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_entry.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_entry.h docs: Correct the wrong group name in Edje and Elementary 2020-07-06 10:52:56 +02:00
elm_entry_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_entry_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_entry_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_entry_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_entry_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_entry_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_entry_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_factory.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_factory.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_button_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_button_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_button_eo.legacy.h elm_fileselector*: remove all legacy usage from eo files 2019-03-07 14:15:14 -08:00
elm_fileselector_entry_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_entry_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_entry_eo.legacy.h elm_fileselector*: remove all legacy usage from eo files 2019-03-07 14:15:14 -08:00
elm_fileselector_entry_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_fileselector_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_fileselector_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_finger.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flip.h elm: fix legacy headers to never include (non-installed) eo headers 2019-03-07 14:17:12 -08:00
elm_flip_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_flipselector.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_flipselector_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_flipselector_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_focus.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_focus_item.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_focus_legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_font.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_font.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_frame.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_gen.h
elm_gen_common.h
elm_general.eot elementary: these definitions are in real header files 2020-04-21 16:19:36 +02:00
elm_general.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid.h docs: Correct the wrong group name in Edje and Elementary 2020-07-06 10:52:56 +02:00
elm_gengrid_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_pan_eo.c elm_gengrid*: remove all legacy usage from eo files 2019-03-07 14:15:18 -08:00
elm_gengrid_pan_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gengrid_pan_eo.legacy.h elm_gengrid*: remove all legacy usage from eo files 2019-03-07 14:15:18 -08:00
elm_genlist.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist.h docs: Correct the wrong group name in Edje and Elementary 2020-07-06 10:52:56 +02:00
elm_genlist_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_pan_eo.c elm_genlist*: remove all legacy usage from eo files 2019-03-07 14:15:20 -08:00
elm_genlist_pan_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_genlist_pan_eo.legacy.h elm_genlist*: remove all legacy usage from eo files 2019-03-07 14:15:20 -08:00
elm_gesture_layer.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gesture_layer.h docs: Correct the wrong group name in Edje and Elementary 2020-07-06 10:52:56 +02:00
elm_gesture_layer_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gesture_layer_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gesture_layer_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gesture_layer_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gesture_layer_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gesture_layer_extra_gestures.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_gesture_layer_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_getting_started.h
elm_glview.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_glview.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_glview_common.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_glview_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_glview_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_glview_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_glview_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_glview_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_grid.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_grid.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_grid_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_grid_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_grid_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_grid_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_grid_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_helper.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_helper.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hover.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hover.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_hover_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hover_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hover_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hover_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hover_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hover_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_hoversel_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hoversel_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hoversel_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hoversel_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hoversel_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hoversel_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hoversel_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_hoversel_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_icon.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_icon.h
elm_icon_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_icon_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_icon_eo.legacy.h elm_icon: remove all legacy usage from eo files 2019-03-07 14:15:31 -08:00
elm_icon_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_image.h elm: fix legacy headers to never include (non-installed) eo headers 2019-03-07 14:17:12 -08:00
elm_image_eo.h
elm_image_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_index_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_index_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_interface_fileselector.c elm_fileselector: some misc include fixes for compiling 2019-03-07 14:17:16 -08:00
elm_interface_fileselector.h elementary: split the smart callback event name from the Eo name when needed. 2019-03-27 15:03:10 -07:00
elm_interface_fileselector_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_interface_fileselector_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_interface_fileselector_eo.legacy.h elm_interface_fileselector: remove all legacy usage from eo files 2019-03-07 14:15:35 -08:00
elm_interface_scrollable.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_interface_scrollable.eo elm_entry: fix wrong displayed scrollbars 2019-11-07 22:24:11 +01:00
elm_interface_scrollable.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_interfaces.h efl: remove EFL_EO_API_SUPPORT macro 2019-03-18 12:13:59 +01:00
elm_inwin.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_inwin.h docs: Correct the wrong API group name in elm_win and elm_glview 2020-08-17 10:32:27 +02:00
elm_inwin_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_inwin_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_inwin_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_inwin_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_inwin_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_label.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_label.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_label_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_label_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_label_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_label_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_label_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_label_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_layout.h elm: fix legacy headers to never include (non-installed) eo headers 2019-03-07 14:17:12 -08:00
elm_layout_common.h
elm_layout_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_list_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_list_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_macros.h Get rid of trailing whitespaces (10 / 14) 2020-06-23 10:30:36 +02:00
elm_main.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_map_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map_pan_eo.c elm_map: remove all legacy usage from eo files 2019-03-07 14:15:45 -08:00
elm_map_pan_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_map_pan_eo.legacy.h elm_map: remove all legacy usage from eo files 2019-03-07 14:15:45 -08:00
elm_mapbuf.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_mapbuf.h docs: Correct the wrong API group name and typo in Evas, Eet, Eina, Eio and Elementary 2020-07-14 10:09:22 +01:00
elm_mapbuf_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_mapbuf_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_mapbuf_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_mapbuf_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_mapbuf_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_mapbuf_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_menu.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu.h
elm_menu_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_menu_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_mirroring.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_module.c
elm_module_helper.h modules: Rename EAPI macro to MODAPI for modules 2020-10-06 17:03:55 -03:00
elm_multibuttonentry_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_multibuttonentry_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_multibuttonentry_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_multibuttonentry_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_multibuttonentry_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_multibuttonentry_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_multibuttonentry_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_multibuttonentry_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_multibuttonentry_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_naviframe_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_naviframe_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_naviframe_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_naviframe_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_naviframe_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_naviframe_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_naviframe_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_naviframe_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_naviframe_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_need.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_notify.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_notify.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_notify_common.h
elm_notify_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_notify_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_notify_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_notify_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_notify_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_notify_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_object.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_object_item.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_pan_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_pan_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_pan_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_pan_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_panel.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_panel.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_panel_common.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_panel_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_panel_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_panel_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_panel_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_panel_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_panel_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_panes.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_panes_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_part_helper.h elm_part_helper: emit changed events when content is changed 2019-04-21 10:51:45 +02:00
elm_photo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_photo.h
elm_photo_eo.c efl: implement efl.file::unload for classes that implement load 2019-08-29 17:17:08 +02:00
elm_photo_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_photo_eo.legacy.h elm_photo: remove all legacy usage from eo files 2019-03-07 14:16:01 -08:00
elm_photo_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_photocam.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_photocam_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_player_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_player_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_player_eo.legacy.h elm_player: remove all legacy usage from eo files 2019-03-07 14:16:03 -08:00
elm_player_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_plug.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_plug.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_plug_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_plug_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_plug_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_plug_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_plug_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_popup_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_popup_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_popup_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_popup_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_popup_item_eo.c elm_popup*: remove all legacy usage from eo files 2019-03-07 14:16:07 -08:00
elm_popup_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_popup_item_eo.legacy.h elm_popup*: remove all legacy usage from eo files 2019-03-07 14:16:07 -08:00
elm_popup_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_prefs.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_prefs.h Fix typos - (Part #2) 2020-07-06 10:52:49 +02:00
elm_prefs_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_prefs_data.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_prefs_data.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_prefs_edd.x
elm_prefs_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_prefs_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_prefs_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_prefs_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_prefs_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_priv.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_progressbar.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_progressbar_common.h
elm_progressbar_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_radio.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_radio_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_removed.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_route.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_route.h
elm_route_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_route_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_route_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_route_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_route_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scale.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scroll.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scroller.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scroller.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_scroller_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scroller_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scroller_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scroller_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scroller_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_scroller_part.eo eolian: enable checking of beta/stable contexts in all classes 2019-03-11 13:42:29 +01:00
elm_segment_control.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_segment_control_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_segment_control_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_separator.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_separator.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_separator_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_separator_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_separator_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_separator_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_separator_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slider.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slider.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_slider_common.h
elm_slider_eo.c elm_slider: remove dependency with efl_ui_slider 2019-08-20 09:09:14 -04:00
elm_slider_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slider_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slider_part_indicator_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slider_part_indicator_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slider_part_indicator_eo.legacy.h elm_slider*: remove all legacy usage from eo files 2019-03-07 14:16:20 -08:00
elm_slideshow.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_slideshow_common.h
elm_slideshow_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_slideshow_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_spinner.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_spinner.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_spinner_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_spinner_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_spinner_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_spinner_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_spinner_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_store.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_store.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_dbus.c elm_sys_notify*: remove all legacy usage from eo files 2019-03-07 14:16:26 -08:00
elm_sys_notify_dbus_eo.c elm_sys_notify*: remove all legacy usage from eo files 2019-03-07 14:16:26 -08:00
elm_sys_notify_dbus_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_dbus_eo.legacy.h elm_sys_notify*: remove all legacy usage from eo files 2019-03-07 14:16:26 -08:00
elm_sys_notify_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_interface.c elm_sys_notify*: remove all legacy usage from eo files 2019-03-07 14:16:26 -08:00
elm_sys_notify_interface_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_interface_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_interface_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_sys_notify_interface_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_systray.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_systray.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_systray_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_systray_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_systray_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_systray_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_systray_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_systray_watcher.c
elm_systray_watcher.h
elm_table.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_table.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_table_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_table_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_table_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_table_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_table_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_textpath.h docs: Fix a wrong ingroup name of textpath. 2019-05-13 13:06:54 +09:00
elm_textpath_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_theme.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_theme.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_thumb.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_thumb.h
elm_thumb_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_thumb_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_thumb_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_thumb_eo.legacy.h elm_thumb: remove all legacy usage from eo files 2019-03-07 14:16:32 -08:00
elm_thumb_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar.h doxygen docs: Fix some more Illegal commands 2020-03-12 17:24:07 +01:00
elm_toolbar_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_toolbar_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_tooltip.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_transit.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_transit.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_util.c Evil: remove pwd code in Evil and fix compilation failures after the removal 2019-07-28 09:27:27 +01:00
elm_view_form.c elm_view*: remove all legacy usage from eo files 2019-03-07 14:16:37 -08:00
elm_view_form.h efl: remove EFL_EO_API_SUPPORT macro 2019-03-18 12:13:59 +01:00
elm_view_form_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_view_form_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_view_form_eo.legacy.h elm_view*: remove all legacy usage from eo files 2019-03-07 14:16:37 -08:00
elm_view_list.c elm_view*: remove all legacy usage from eo files 2019-03-07 14:16:37 -08:00
elm_view_list.h efl: remove EFL_EO_API_SUPPORT macro 2019-03-18 12:13:59 +01:00
elm_view_list_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_view_list_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_view_list_eo.legacy.h elm_view*: remove all legacy usage from eo files 2019-03-07 14:16:37 -08:00
elm_web.h elm: fix legacy headers to never include (non-installed) eo headers 2019-03-07 14:17:12 -08:00
elm_web2.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_web_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_web_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_web_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_web_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_web_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_web_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_actionslider.h
elm_widget_box.h
elm_widget_bubble.h
elm_widget_calendar.h Efl.Ui.Calendar, elm_calendar: Code fixed to support auto repeat feature. 2018-07-23 15:49:10 +09:00
elm_widget_clock.h elm_clock: remove all legacy usage from eo files 2019-03-07 14:14:53 -08:00
elm_widget_colorselector.h elm_colorselector: remove all legacy usage from eo files 2019-03-07 14:15:01 -08:00
elm_widget_combobox.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_conform.h
elm_widget_container.h
elm_widget_ctxpopup.h
elm_widget_dayselector.h elm_dayselector: remove all legacy usage from eo files 2019-03-07 14:15:07 -08:00
elm_widget_diskselector.h
elm_widget_entry.h elm_entry: CRI if efl_file methods are called directly on this object 2019-03-28 09:50:42 +01:00
elm_widget_fileselector.h elementary: remove some asynchronous behavior from the fileselector. 2019-03-28 09:30:01 +01:00
elm_widget_fileselector_button.h elm_fileselector_button: support the whole interface 2019-01-26 11:42:02 +01:00
elm_widget_fileselector_entry.h
elm_widget_flipselector.h
elm_widget_gengrid.h Fix typos 2020-06-25 09:03:05 +02:00
elm_widget_genlist.h elm/genlist: hide cached item contents and mark content unfocusable during calc 2019-10-29 16:09:37 +01:00
elm_widget_glview.h elm_glview: remove all legacy usage from eo files 2019-03-07 14:15:24 -08:00
elm_widget_grid.h
elm_widget_hover.h elm_hover: remove all legacy usage from eo files 2019-03-07 14:15:29 -08:00
elm_widget_hoversel.h
elm_widget_icon.h
elm_widget_index.h Rename Efl.Ui.Direction -> Efl.Ui.Layout_Orientation 2019-05-24 12:30:32 -04:00
elm_widget_inwin.h
elm_widget_item_container_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_item_container_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_item_container_eo.legacy.h elm_widget_item*: remove all legacy usage from eo files 2019-03-07 14:16:41 -08:00
elm_widget_item_eo.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_item_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_item_eo.legacy.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_item_eo.legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_item_static_focus.c elm - genlist+gird - use item specific realize/unrealize not eo callback 2020-07-20 22:24:31 +01:00
elm_widget_item_static_focus_eo.c elm_widget_item*: remove all legacy usage from eo files 2019-03-07 14:16:41 -08:00
elm_widget_item_static_focus_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_widget_item_static_focus_eo.legacy.h elm_widget_item*: remove all legacy usage from eo files 2019-03-07 14:16:41 -08:00
elm_widget_label.h elm_label: remove all legacy usage from eo files 2019-03-07 14:15:39 -08:00
elm_widget_layout.h doxygen docs: Fix invalid refs to Layout 2020-04-27 15:15:12 +02:00
elm_widget_list.h elm_list: remove all legacy usage from eo files 2019-03-07 14:15:41 -08:00
elm_widget_map.h
elm_widget_mapbuf.h
elm_widget_menu.h elm_menu*: remove all legacy usage from eo files 2019-03-07 14:15:48 -08:00
elm_widget_multibuttonentry.h Efl.Ui.Format revamp 2019-07-04 19:38:20 +02:00
elm_widget_naviframe.h
elm_widget_notify.h elm_notify: remove all legacy usage from eo files 2019-03-07 14:15:54 -08:00
elm_widget_panel.h elm_panel: remove all legacy usage from eo files 2019-03-07 14:15:56 -08:00
elm_widget_photo.h
elm_widget_player.h elm_player: remove all legacy usage from eo files 2019-03-07 14:16:03 -08:00
elm_widget_plug.h elm_plug: remove all legacy usage from eo files 2019-03-07 14:16:05 -08:00
elm_widget_popup.h elm_popup*: remove all legacy usage from eo files 2019-03-07 14:16:07 -08:00
elm_widget_prefs.h
elm_widget_route.h elm_route: remove all legacy usage from eo files 2019-03-07 14:16:11 -08:00
elm_widget_scroller.h
elm_widget_segment_control.h docs: correct group name of segmentcontrol for API docs. 2018-09-21 17:25:56 +09:00
elm_widget_separator.h
elm_widget_slider.h Revert "elm_spinner: Fixed to apply the %d format." 2020-02-24 10:15:32 +01:00
elm_widget_slideshow.h
elm_widget_spinner.h
elm_widget_table.h
elm_widget_thumb.h efl.file: improve api a bit 2019-02-27 13:17:10 -05:00
elm_widget_toolbar.h Rename Efl.Ui.Direction -> Efl.Ui.Layout_Orientation 2019-05-24 12:30:32 -04:00
elm_widget_web.h
elm_win.h docs: Correct the wrong API group name in Elementary and Change an invalid URL in Evas 2020-07-09 10:24:09 +01:00
elm_win_common.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_win_eo.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elm_win_legacy.h elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
els_box.c elm: resolve float comparison warnings 2020-05-09 09:25:21 +01:00
els_box.h
els_cursor.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
els_tooltip.c elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00
elu_ews_wm.c efl.ui: Efl.Ui.Theme_Apply_Result -> Efl.Ui.Theme_Apply_Error 2019-03-04 13:36:41 -05:00
meson.build elementary: Rename EAPI macro to ELM_API in Elementary library 2020-10-11 13:00:04 -03:00