diff options
author | Tom Hacohen <tom@stosb.com> | 2016-05-12 17:06:04 +0100 |
---|---|---|
committer | Tom Hacohen <tom@stosb.com> | 2016-05-12 17:27:35 +0100 |
commit | 6bdf4af01695231f53948f78d7f9f4171eb271d8 (patch) | |
tree | 1c4c5ca5ea6b36259e59b3c7173557827fabda4a /src | |
parent | 96c4c88070fec7e514dc179574c4ac1eba9b6885 (diff) |
Add legacy_prefix now that the default has changed to null.
Diffstat (limited to 'src')
98 files changed, 100 insertions, 2 deletions
diff --git a/src/lib/ecore/ecore_animator.eo b/src/lib/ecore/ecore_animator.eo index 3a895eccd8..5712214497 100644 --- a/src/lib/ecore/ecore_animator.eo +++ b/src/lib/ecore/ecore_animator.eo | |||
@@ -8,6 +8,7 @@ class Ecore.Animator (Eo.Base) | |||
8 | should be run and having a callback that does the animation. | 8 | should be run and having a callback that does the animation. |
9 | ]] | 9 | ]] |
10 | 10 | ||
11 | legacy_prefix: ecore_animator; | ||
11 | eo_prefix: ecore_animator; | 12 | eo_prefix: ecore_animator; |
12 | methods { | 13 | methods { |
13 | timeline_constructor { | 14 | timeline_constructor { |
diff --git a/src/lib/ecore/ecore_exe.eo b/src/lib/ecore/ecore_exe.eo index d9c9c17bf0..454133407d 100644 --- a/src/lib/ecore/ecore_exe.eo +++ b/src/lib/ecore/ecore_exe.eo | |||
@@ -45,6 +45,7 @@ class Ecore.Exe (Eo.Base, Efl.Control) | |||
45 | An interaction between your process and those spawned is possible using pipes or signals. | 45 | An interaction between your process and those spawned is possible using pipes or signals. |
46 | ]] | 46 | ]] |
47 | 47 | ||
48 | legacy_prefix: ecore_exe; | ||
48 | eo_prefix: ecore_obj_exe; | 49 | eo_prefix: ecore_obj_exe; |
49 | methods { | 50 | methods { |
50 | @property command { | 51 | @property command { |
diff --git a/src/lib/edje/edje_edit.eo b/src/lib/edje/edje_edit.eo index b9672c4a52..f201b6495a 100644 --- a/src/lib/edje/edje_edit.eo +++ b/src/lib/edje/edje_edit.eo | |||
@@ -5,6 +5,7 @@ class Edje.Edit (Edje.Object) | |||
5 | This was intended ONLY for use in an actual edje editor program. Unless | 5 | This was intended ONLY for use in an actual edje editor program. Unless |
6 | you are writing one of these, do NOT use this API here. | 6 | you are writing one of these, do NOT use this API here. |
7 | ]] | 7 | ]] |
8 | legacy_prefix: edje_edit; | ||
8 | data: Edje_Edit; | 9 | data: Edje_Edit; |
9 | implements { | 10 | implements { |
10 | Eo.Base.constructor; | 11 | Eo.Base.constructor; |
diff --git a/src/lib/elementary/elm_access.eo b/src/lib/elementary/elm_access.eo index b2ef21053e..d1821da09c 100644 --- a/src/lib/elementary/elm_access.eo +++ b/src/lib/elementary/elm_access.eo | |||
@@ -1,7 +1,8 @@ | |||
1 | class Elm.Access (Elm.Widget) | 1 | class Elm.Access (Elm.Widget) |
2 | { | 2 | { |
3 | [[Elm abstract accessibility class]] | 3 | [[Elm abstract accessibility class]] |
4 | eo_prefix: elm_obj_access; | 4 | legacy_prefix: elm_access; |
5 | eo_prefix: elm_obj_access; | ||
5 | data: null; | 6 | data: null; |
6 | implements { | 7 | implements { |
7 | class.constructor; | 8 | class.constructor; |
diff --git a/src/lib/elementary/elm_actionslider.eo b/src/lib/elementary/elm_actionslider.eo index 57d757dc7c..ade5fcd6e5 100644 --- a/src/lib/elementary/elm_actionslider.eo +++ b/src/lib/elementary/elm_actionslider.eo | |||
@@ -19,6 +19,7 @@ class Elm.Actionslider (Elm.Layout, Evas.Selectable_Interface) | |||
19 | it will move to its nearest "enabled and magnetized" position. | 19 | it will move to its nearest "enabled and magnetized" position. |
20 | ]] | 20 | ]] |
21 | 21 | ||
22 | legacy_prefix: elm_actionslider; | ||
22 | eo_prefix: elm_obj_actionslider; | 23 | eo_prefix: elm_obj_actionslider; |
23 | methods { | 24 | methods { |
24 | @property indicator_pos { | 25 | @property indicator_pos { |
diff --git a/src/lib/elementary/elm_atspi_app_object.eo b/src/lib/elementary/elm_atspi_app_object.eo index c2618d5f66..05e8fb308a 100644 --- a/src/lib/elementary/elm_atspi_app_object.eo +++ b/src/lib/elementary/elm_atspi_app_object.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Atspi.App.Object (Eo.Base, Elm.Interface.Atspi_Accessible) | 1 | class Elm.Atspi.App.Object (Eo.Base, Elm.Interface.Atspi_Accessible) |
2 | { | 2 | { |
3 | legacy_prefix: elm_atspi_app_object; | ||
3 | data: Elm_Atspi_App_Object_Data; | 4 | data: Elm_Atspi_App_Object_Data; |
4 | implements { | 5 | implements { |
5 | Eo.Base.destructor; | 6 | Eo.Base.destructor; |
diff --git a/src/lib/elementary/elm_atspi_bridge.eo b/src/lib/elementary/elm_atspi_bridge.eo index 2d14a22168..1c2582eca8 100644 --- a/src/lib/elementary/elm_atspi_bridge.eo +++ b/src/lib/elementary/elm_atspi_bridge.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Atspi.Bridge (Eo.Base) | 1 | class Elm.Atspi.Bridge (Eo.Base) |
2 | { | 2 | { |
3 | legacy_prefix: elm_atspi_bridge; | ||
3 | eo_prefix: elm_obj_atspi_bridge; | 4 | eo_prefix: elm_obj_atspi_bridge; |
4 | methods { | 5 | methods { |
5 | @property connected { | 6 | @property connected { |
diff --git a/src/lib/elementary/elm_bg.eo b/src/lib/elementary/elm_bg.eo index a9b2511d19..b8a8cf840c 100644 --- a/src/lib/elementary/elm_bg.eo +++ b/src/lib/elementary/elm_bg.eo | |||
@@ -21,6 +21,7 @@ class Elm.Bg (Elm.Layout, Efl.File) | |||
21 | works just like an image, but has some properties useful to a background, like | 21 | works just like an image, but has some properties useful to a background, like |
22 | setting it to tiled, centered, scaled or stretched. | 22 | setting it to tiled, centered, scaled or stretched. |
23 | ]] | 23 | ]] |
24 | legacy_prefix: elm_bg; | ||
24 | eo_prefix: elm_obj_bg; | 25 | eo_prefix: elm_obj_bg; |
25 | methods { | 26 | methods { |
26 | @property option { | 27 | @property option { |
diff --git a/src/lib/elementary/elm_box.eo b/src/lib/elementary/elm_box.eo index 488f1e979e..01ddc3b768 100644 --- a/src/lib/elementary/elm_box.eo +++ b/src/lib/elementary/elm_box.eo | |||
@@ -3,6 +3,7 @@ import ecore_types; | |||
3 | 3 | ||
4 | class Elm.Box (Elm.Widget) | 4 | class Elm.Box (Elm.Widget) |
5 | { | 5 | { |
6 | legacy_prefix: elm_box; | ||
6 | eo_prefix: elm_obj_box; | 7 | eo_prefix: elm_obj_box; |
7 | methods { | 8 | methods { |
8 | @property homogeneous { | 9 | @property homogeneous { |
diff --git a/src/lib/elementary/elm_bubble.eo b/src/lib/elementary/elm_bubble.eo index 9acef4b64a..22b02620bd 100644 --- a/src/lib/elementary/elm_bubble.eo +++ b/src/lib/elementary/elm_bubble.eo | |||
@@ -16,6 +16,7 @@ class Elm.Bubble (Elm.Layout, Evas.Clickable_Interface) | |||
16 | { | 16 | { |
17 | [[Speech bubble widget used in messaging applications]] | 17 | [[Speech bubble widget used in messaging applications]] |
18 | 18 | ||
19 | legacy_prefix: elm_bubble; | ||
19 | eo_prefix: elm_obj_bubble; | 20 | eo_prefix: elm_obj_bubble; |
20 | methods { | 21 | methods { |
21 | @property pos { | 22 | @property pos { |
diff --git a/src/lib/elementary/elm_button.eo b/src/lib/elementary/elm_button.eo index 07417b7b10..397667579d 100644 --- a/src/lib/elementary/elm_button.eo +++ b/src/lib/elementary/elm_button.eo | |||
@@ -6,6 +6,7 @@ class Elm.Button (Elm.Layout, Evas.Clickable_Interface, | |||
6 | Press it and run some function. It can contain a simple label and icon object | 6 | Press it and run some function. It can contain a simple label and icon object |
7 | and it also has an autorepeat feature. | 7 | and it also has an autorepeat feature. |
8 | ]] | 8 | ]] |
9 | legacy_prefix: elm_button; | ||
9 | eo_prefix: elm_obj_button; | 10 | eo_prefix: elm_obj_button; |
10 | methods { | 11 | methods { |
11 | @property autorepeat_initial_timeout { | 12 | @property autorepeat_initial_timeout { |
diff --git a/src/lib/elementary/elm_calendar.eo b/src/lib/elementary/elm_calendar.eo index 6f3ad59f65..7ea111e197 100644 --- a/src/lib/elementary/elm_calendar.eo +++ b/src/lib/elementary/elm_calendar.eo | |||
@@ -80,6 +80,7 @@ class Elm.Calendar (Elm.Layout, Elm.Interface.Atspi_Widget_Action) | |||
80 | date, year and month. Applications are able to set specific dates to be | 80 | date, year and month. Applications are able to set specific dates to be |
81 | reported back, when selected, in the smart callbacks of the calendar widget. | 81 | reported back, when selected, in the smart callbacks of the calendar widget. |
82 | ]] | 82 | ]] |
83 | legacy_prefix: elm_calendar; | ||
83 | eo_prefix: elm_obj_calendar; | 84 | eo_prefix: elm_obj_calendar; |
84 | methods { | 85 | methods { |
85 | @property first_day_of_week { | 86 | @property first_day_of_week { |
diff --git a/src/lib/elementary/elm_check.eo b/src/lib/elementary/elm_check.eo index c2ab375d66..266c1ee194 100644 --- a/src/lib/elementary/elm_check.eo +++ b/src/lib/elementary/elm_check.eo | |||
@@ -7,6 +7,7 @@ class Elm.Check (Efl.Ui.Nstate, Elm.Interface.Atspi_Widget_Action) | |||
7 | except they do not work as a group, but independently, and only toggle | 7 | except they do not work as a group, but independently, and only toggle |
8 | the value of a boolean between false and true. | 8 | the value of a boolean between false and true. |
9 | ]] | 9 | ]] |
10 | legacy_prefix: elm_check; | ||
10 | eo_prefix: efl_ui_check; | 11 | eo_prefix: efl_ui_check; |
11 | methods { | 12 | methods { |
12 | @property selected { | 13 | @property selected { |
diff --git a/src/lib/elementary/elm_clock.eo b/src/lib/elementary/elm_clock.eo index c974296ac6..4946c1e8c6 100644 --- a/src/lib/elementary/elm_clock.eo +++ b/src/lib/elementary/elm_clock.eo | |||
@@ -28,6 +28,7 @@ class Elm.Clock (Elm.Layout) | |||
28 | A newly created clock will fetch system's time (already considering local time adjustments) to | 28 | A newly created clock will fetch system's time (already considering local time adjustments) to |
29 | start with, and will tick accordingly. | 29 | start with, and will tick accordingly. |
30 | ]] | 30 | ]] |
31 | legacy_prefix: elm_clock; | ||
31 | eo_prefix: elm_obj_clock; | 32 | eo_prefix: elm_obj_clock; |
32 | methods { | 33 | methods { |
33 | @property show_am_pm { | 34 | @property show_am_pm { |
diff --git a/src/lib/elementary/elm_color_item.eo b/src/lib/elementary/elm_color_item.eo index 0cb7b341f3..f83af13331 100644 --- a/src/lib/elementary/elm_color_item.eo +++ b/src/lib/elementary/elm_color_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Color.Item(Elm.Widget.Item) | 1 | class Elm.Color.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | legacy_prefix: elm_color_item; | ||
3 | eo_prefix: elm_obj_color_item; | 4 | eo_prefix: elm_obj_color_item; |
4 | methods { | 5 | methods { |
5 | @property color { | 6 | @property color { |
diff --git a/src/lib/elementary/elm_colorselector.eo b/src/lib/elementary/elm_colorselector.eo index 5aab88a998..ac2f650bb3 100644 --- a/src/lib/elementary/elm_colorselector.eo +++ b/src/lib/elementary/elm_colorselector.eo | |||
@@ -15,6 +15,7 @@ enum Elm.Colorselector.Mode | |||
15 | class Elm.Colorselector (Elm.Layout, Elm.Interface.Atspi_Widget_Action, | 15 | class Elm.Colorselector (Elm.Layout, Elm.Interface.Atspi_Widget_Action, |
16 | Evas.Clickable_Interface) | 16 | Evas.Clickable_Interface) |
17 | { | 17 | { |
18 | legacy_prefix: elm_colorselector; | ||
18 | eo_prefix: elm_obj_colorselector; | 19 | eo_prefix: elm_obj_colorselector; |
19 | methods { | 20 | methods { |
20 | @property color { | 21 | @property color { |
diff --git a/src/lib/elementary/elm_combobox.eo b/src/lib/elementary/elm_combobox.eo index 63946548b5..a23d26b8db 100644 --- a/src/lib/elementary/elm_combobox.eo +++ b/src/lib/elementary/elm_combobox.eo | |||
@@ -2,6 +2,7 @@ class Elm.Combobox (Elm.Button, Evas.Selectable_Interface, | |||
2 | Elm.Interface.Atspi_Widget_Action, | 2 | Elm.Interface.Atspi_Widget_Action, |
3 | Elm.Entry, Elm.Genlist, Elm.Hover, Elm.Multibuttonentry) | 3 | Elm.Entry, Elm.Genlist, Elm.Hover, Elm.Multibuttonentry) |
4 | { | 4 | { |
5 | legacy_prefix: elm_combobox; | ||
5 | eo_prefix: elm_obj_combobox; | 6 | eo_prefix: elm_obj_combobox; |
6 | methods { | 7 | methods { |
7 | @property expanded { | 8 | @property expanded { |
diff --git a/src/lib/elementary/elm_conformant.eo b/src/lib/elementary/elm_conformant.eo index 7dac09813c..e6488365ab 100644 --- a/src/lib/elementary/elm_conformant.eo +++ b/src/lib/elementary/elm_conformant.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Conformant (Elm.Layout) | 1 | class Elm.Conformant (Elm.Layout) |
2 | { | 2 | { |
3 | legacy_prefix: elm_conformant; | ||
3 | eo_prefix: elm_obj_conformant; | 4 | eo_prefix: elm_obj_conformant; |
4 | implements { | 5 | implements { |
5 | class.constructor; | 6 | class.constructor; |
diff --git a/src/lib/elementary/elm_ctxpopup.eo b/src/lib/elementary/elm_ctxpopup.eo index 4249129c9f..1e776048ca 100644 --- a/src/lib/elementary/elm_ctxpopup.eo +++ b/src/lib/elementary/elm_ctxpopup.eo | |||
@@ -10,6 +10,7 @@ enum Elm.Ctxpopup.Direction | |||
10 | 10 | ||
11 | class Elm.Ctxpopup (Elm.Layout, Elm.Interface.Atspi_Widget_Action, Efl.Orientation) | 11 | class Elm.Ctxpopup (Elm.Layout, Elm.Interface.Atspi_Widget_Action, Efl.Orientation) |
12 | { | 12 | { |
13 | legacy_prefix: elm_ctxpopup; | ||
13 | eo_prefix: elm_obj_ctxpopup; | 14 | eo_prefix: elm_obj_ctxpopup; |
14 | methods { | 15 | methods { |
15 | @property auto_hide_disabled { | 16 | @property auto_hide_disabled { |
diff --git a/src/lib/elementary/elm_ctxpopup_item.eo b/src/lib/elementary/elm_ctxpopup_item.eo index 8423578645..3b9967f849 100644 --- a/src/lib/elementary/elm_ctxpopup_item.eo +++ b/src/lib/elementary/elm_ctxpopup_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Ctxpopup.Item(Elm.Widget.Item) | 1 | class Elm.Ctxpopup.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | legacy_prefix: elm_ctxpopup_item; | ||
3 | eo_prefix: elm_obj_ctxpopup_item; | 4 | eo_prefix: elm_obj_ctxpopup_item; |
4 | methods { | 5 | methods { |
5 | @property prev { | 6 | @property prev { |
diff --git a/src/lib/elementary/elm_datetime.eo b/src/lib/elementary/elm_datetime.eo index b9b2fca95a..33af5f9319 100644 --- a/src/lib/elementary/elm_datetime.eo +++ b/src/lib/elementary/elm_datetime.eo | |||
@@ -17,6 +17,7 @@ enum Elm.Datetime.Field_Type | |||
17 | 17 | ||
18 | class Elm.Datetime (Elm.Layout) | 18 | class Elm.Datetime (Elm.Layout) |
19 | { | 19 | { |
20 | legacy_prefix: elm_datetime; | ||
20 | eo_prefix: elm_obj_datetime; | 21 | eo_prefix: elm_obj_datetime; |
21 | methods { | 22 | methods { |
22 | @property format { | 23 | @property format { |
diff --git a/src/lib/elementary/elm_dayselector.eo b/src/lib/elementary/elm_dayselector.eo index 48521dfd7f..1a3563b5d4 100644 --- a/src/lib/elementary/elm_dayselector.eo +++ b/src/lib/elementary/elm_dayselector.eo | |||
@@ -19,6 +19,7 @@ enum Elm.Dayselector.Day | |||
19 | 19 | ||
20 | class Elm.Dayselector (Elm.Layout) | 20 | class Elm.Dayselector (Elm.Layout) |
21 | { | 21 | { |
22 | legacy_prefix: elm_dayselector; | ||
22 | eo_prefix: elm_obj_dayselector; | 23 | eo_prefix: elm_obj_dayselector; |
23 | methods { | 24 | methods { |
24 | @property week_start { | 25 | @property week_start { |
diff --git a/src/lib/elementary/elm_diskselector.eo b/src/lib/elementary/elm_diskselector.eo index 848491a45d..471cae49c0 100644 --- a/src/lib/elementary/elm_diskselector.eo +++ b/src/lib/elementary/elm_diskselector.eo | |||
@@ -3,6 +3,7 @@ class Elm.Diskselector (Elm.Widget, Elm.Interface_Scrollable, | |||
3 | Evas.Clickable_Interface, Evas.Scrollable_Interface, | 3 | Evas.Clickable_Interface, Evas.Scrollable_Interface, |
4 | Evas.Selectable_Interface) | 4 | Evas.Selectable_Interface) |
5 | { | 5 | { |
6 | legacy_prefix: elm_diskselector; | ||
6 | eo_prefix: elm_obj_diskselector; | 7 | eo_prefix: elm_obj_diskselector; |
7 | methods { | 8 | methods { |
8 | @property side_text_max_length { | 9 | @property side_text_max_length { |
diff --git a/src/lib/elementary/elm_diskselector_item.eo b/src/lib/elementary/elm_diskselector_item.eo index b49721bfe2..d55866c518 100644 --- a/src/lib/elementary/elm_diskselector_item.eo +++ b/src/lib/elementary/elm_diskselector_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Diskselector.Item(Elm.Widget.Item) | 1 | class Elm.Diskselector.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | legacy_prefix: elm_diskselector_item; | ||
3 | eo_prefix: elm_obj_diskselector_item; | 4 | eo_prefix: elm_obj_diskselector_item; |
4 | methods { | 5 | methods { |
5 | @property prev { | 6 | @property prev { |
diff --git a/src/lib/elementary/elm_entry.eo b/src/lib/elementary/elm_entry.eo index 8ddcca82c1..340c6f04f4 100644 --- a/src/lib/elementary/elm_entry.eo +++ b/src/lib/elementary/elm_entry.eo | |||
@@ -118,6 +118,7 @@ class Elm.Entry (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interface, | |||
118 | Elm.Interface.Atspi.Text, Elm.Interface.Atspi.Text.Editable, Efl.File, | 118 | Elm.Interface.Atspi.Text, Elm.Interface.Atspi.Text.Editable, Efl.File, |
119 | Evas.Selectable_Interface, Evas.Scrollable_Interface) | 119 | Evas.Selectable_Interface, Evas.Scrollable_Interface) |
120 | { | 120 | { |
121 | legacy_prefix: elm_entry; | ||
121 | eo_prefix: elm_obj_entry; | 122 | eo_prefix: elm_obj_entry; |
122 | methods { | 123 | methods { |
123 | @property scrollable { | 124 | @property scrollable { |
diff --git a/src/lib/elementary/elm_fileselector.eo b/src/lib/elementary/elm_fileselector.eo index 46bb054356..ada217e93e 100644 --- a/src/lib/elementary/elm_fileselector.eo +++ b/src/lib/elementary/elm_fileselector.eo | |||
@@ -2,6 +2,7 @@ class Elm.Fileselector (Elm.Layout, Elm.Interface.Fileselector, | |||
2 | Elm.Interface.Atspi_Widget_Action, | 2 | Elm.Interface.Atspi_Widget_Action, |
3 | Evas.Clickable_Interface, Evas.Selectable_Interface) | 3 | Evas.Clickable_Interface, Evas.Selectable_Interface) |
4 | { | 4 | { |
5 | legacy_prefix: elm_fileselector; | ||
5 | eo_prefix: elm_obj_fileselector; | 6 | eo_prefix: elm_obj_fileselector; |
6 | methods { | 7 | methods { |
7 | @property buttons_ok_cancel { | 8 | @property buttons_ok_cancel { |
diff --git a/src/lib/elementary/elm_fileselector_button.eo b/src/lib/elementary/elm_fileselector_button.eo index 0769751947..4c7667bc3e 100644 --- a/src/lib/elementary/elm_fileselector_button.eo +++ b/src/lib/elementary/elm_fileselector_button.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Fileselector_Button (Elm.Button, Elm.Interface.Fileselector) | 1 | class Elm.Fileselector_Button (Elm.Button, Elm.Interface.Fileselector) |
2 | { | 2 | { |
3 | legacy_prefix: elm_fileselector_button; | ||
3 | eo_prefix: elm_obj_fileselector_button; | 4 | eo_prefix: elm_obj_fileselector_button; |
4 | methods { | 5 | methods { |
5 | @property inwin_mode { | 6 | @property inwin_mode { |
diff --git a/src/lib/elementary/elm_fileselector_entry.eo b/src/lib/elementary/elm_fileselector_entry.eo index a2b16f1fc1..e824ed1921 100644 --- a/src/lib/elementary/elm_fileselector_entry.eo +++ b/src/lib/elementary/elm_fileselector_entry.eo | |||
@@ -1,6 +1,7 @@ | |||
1 | class Elm.Fileselector_Entry (Elm.Layout, Elm.Interface.Fileselector, | 1 | class Elm.Fileselector_Entry (Elm.Layout, Elm.Interface.Fileselector, |
2 | Evas.Clickable_Interface, Evas.Selectable_Interface) | 2 | Evas.Clickable_Interface, Evas.Selectable_Interface) |
3 | { | 3 | { |
4 | legacy_prefix: elm_fileselector_entry; | ||
4 | eo_prefix: elm_obj_fileselector_entry; | 5 | eo_prefix: elm_obj_fileselector_entry; |
5 | methods { | 6 | methods { |
6 | @property inwin_mode { | 7 | @property inwin_mode { |
diff --git a/src/lib/elementary/elm_flip.eo b/src/lib/elementary/elm_flip.eo index 747413e73f..9421585b30 100644 --- a/src/lib/elementary/elm_flip.eo +++ b/src/lib/elementary/elm_flip.eo | |||
@@ -35,6 +35,7 @@ enum Elm.Flip.Direction | |||
35 | 35 | ||
36 | class Elm.Flip (Elm.Widget, Efl.Container) | 36 | class Elm.Flip (Elm.Widget, Efl.Container) |
37 | { | 37 | { |
38 | legacy_prefix: elm_flip; | ||
38 | eo_prefix: elm_obj_flip; | 39 | eo_prefix: elm_obj_flip; |
39 | methods { | 40 | methods { |
40 | @property interaction { | 41 | @property interaction { |
diff --git a/src/lib/elementary/elm_flipselector.eo b/src/lib/elementary/elm_flipselector.eo index 274097d84b..9466fcbeae 100644 --- a/src/lib/elementary/elm_flipselector.eo +++ b/src/lib/elementary/elm_flipselector.eo | |||
@@ -2,6 +2,7 @@ class Elm.Flipselector (Elm.Layout, Efl.Ui.Spin, | |||
2 | Elm.Interface.Atspi_Widget_Action, | 2 | Elm.Interface.Atspi_Widget_Action, |
3 | Evas.Selectable_Interface) | 3 | Evas.Selectable_Interface) |
4 | { | 4 | { |
5 | legacy_prefix: elm_flipselector; | ||
5 | eo_prefix: elm_obj_flipselector; | 6 | eo_prefix: elm_obj_flipselector; |
6 | methods { | 7 | methods { |
7 | @property items { | 8 | @property items { |
diff --git a/src/lib/elementary/elm_flipselector_item.eo b/src/lib/elementary/elm_flipselector_item.eo index b1b2f239a4..baa388eede 100644 --- a/src/lib/elementary/elm_flipselector_item.eo +++ b/src/lib/elementary/elm_flipselector_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Flipselector.Item(Elm.Widget.Item) | 1 | class Elm.Flipselector.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | legacy_prefix: elm_flipselector_item; | ||
3 | eo_prefix: elm_obj_flipselector_item; | 4 | eo_prefix: elm_obj_flipselector_item; |
4 | methods { | 5 | methods { |
5 | @property selected { | 6 | @property selected { |
diff --git a/src/lib/elementary/elm_frame.eo b/src/lib/elementary/elm_frame.eo index edcb4d0394..455f785301 100644 --- a/src/lib/elementary/elm_frame.eo +++ b/src/lib/elementary/elm_frame.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Frame (Elm.Layout, Evas.Clickable_Interface) | 1 | class Elm.Frame (Elm.Layout, Evas.Clickable_Interface) |
2 | { | 2 | { |
3 | legacy_prefix: elm_frame; | ||
3 | eo_prefix: elm_obj_frame; | 4 | eo_prefix: elm_obj_frame; |
4 | methods { | 5 | methods { |
5 | @property collapse { | 6 | @property collapse { |
diff --git a/src/lib/elementary/elm_gengrid.eo b/src/lib/elementary/elm_gengrid.eo index 1732fe1e0d..15dcd4fb86 100644 --- a/src/lib/elementary/elm_gengrid.eo +++ b/src/lib/elementary/elm_gengrid.eo | |||
@@ -11,6 +11,7 @@ class Elm.Gengrid (Elm.Layout, Elm.Interface_Scrollable, | |||
11 | Evas.Clickable_Interface, Elm.Interface.Atspi_Widget_Action, | 11 | Evas.Clickable_Interface, Elm.Interface.Atspi_Widget_Action, |
12 | Elm.Interface.Atspi.Selection) | 12 | Elm.Interface.Atspi.Selection) |
13 | { | 13 | { |
14 | legacy_prefix: elm_gengrid; | ||
14 | eo_prefix: elm_obj_gengrid; | 15 | eo_prefix: elm_obj_gengrid; |
15 | methods { | 16 | methods { |
16 | @property align { | 17 | @property align { |
diff --git a/src/lib/elementary/elm_gengrid_item.eo b/src/lib/elementary/elm_gengrid_item.eo index c81c34852f..9c0e1675f3 100644 --- a/src/lib/elementary/elm_gengrid_item.eo +++ b/src/lib/elementary/elm_gengrid_item.eo | |||
@@ -25,6 +25,7 @@ enum Elm.Gengrid.Item.Field_Type | |||
25 | 25 | ||
26 | class Elm.Gengrid.Item(Elm.Widget.Item) | 26 | class Elm.Gengrid.Item(Elm.Widget.Item) |
27 | { | 27 | { |
28 | legacy_prefix: elm_gengrid_item; | ||
28 | eo_prefix: elm_obj_gengrid_item; | 29 | eo_prefix: elm_obj_gengrid_item; |
29 | data: Elm_Gen_Item; | 30 | data: Elm_Gen_Item; |
30 | methods { | 31 | methods { |
diff --git a/src/lib/elementary/elm_gengrid_pan.eo b/src/lib/elementary/elm_gengrid_pan.eo index ff8d30798f..6d9f8d4de4 100644 --- a/src/lib/elementary/elm_gengrid_pan.eo +++ b/src/lib/elementary/elm_gengrid_pan.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Gengrid.Pan (Elm.Pan) | 1 | class Elm.Gengrid.Pan (Elm.Pan) |
2 | { | 2 | { |
3 | legacy_prefix: elm_gengrid_pan; | ||
3 | eo_prefix: elm_obj_gengrid_pan; | 4 | eo_prefix: elm_obj_gengrid_pan; |
4 | implements { | 5 | implements { |
5 | class.constructor; | 6 | class.constructor; |
diff --git a/src/lib/elementary/elm_genlist.eo b/src/lib/elementary/elm_genlist.eo index 2c126441e6..851a284736 100644 --- a/src/lib/elementary/elm_genlist.eo +++ b/src/lib/elementary/elm_genlist.eo | |||
@@ -6,6 +6,7 @@ class Elm.Genlist (Elm.Layout, Elm.Interface_Scrollable, Evas.Clickable_Interfac | |||
6 | Elm.Interface.Atspi_Widget_Action, Elm.Interface.Atspi.Selection, | 6 | Elm.Interface.Atspi_Widget_Action, Elm.Interface.Atspi.Selection, |
7 | Evas.Selectable_Interface) | 7 | Evas.Selectable_Interface) |
8 | { | 8 | { |
9 | legacy_prefix: elm_genlist; | ||
9 | eo_prefix: elm_obj_genlist; | 10 | eo_prefix: elm_obj_genlist; |
10 | methods { | 11 | methods { |
11 | @property homogeneous { | 12 | @property homogeneous { |
diff --git a/src/lib/elementary/elm_genlist_item.eo b/src/lib/elementary/elm_genlist_item.eo index 5098a5af2c..af2bbd7ec3 100644 --- a/src/lib/elementary/elm_genlist_item.eo +++ b/src/lib/elementary/elm_genlist_item.eo | |||
@@ -38,6 +38,7 @@ enum Elm.Genlist.Item.Scrollto_Type | |||
38 | 38 | ||
39 | class Elm.Genlist.Item(Elm.Widget.Item) | 39 | class Elm.Genlist.Item(Elm.Widget.Item) |
40 | { | 40 | { |
41 | legacy_prefix: elm_genlist_item; | ||
41 | eo_prefix: elm_obj_genlist_item; | 42 | eo_prefix: elm_obj_genlist_item; |
42 | data: Elm_Gen_Item; | 43 | data: Elm_Gen_Item; |
43 | methods { | 44 | methods { |
diff --git a/src/lib/elementary/elm_genlist_pan.eo b/src/lib/elementary/elm_genlist_pan.eo index a9e8d825c8..12855303be 100644 --- a/src/lib/elementary/elm_genlist_pan.eo +++ b/src/lib/elementary/elm_genlist_pan.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Genlist.Pan (Elm.Pan) | 1 | class Elm.Genlist.Pan (Elm.Pan) |
2 | { | 2 | { |
3 | legacy_prefix: elm_genlist_pan; | ||
3 | eo_prefix: elm_obj_genlist_pan; | 4 | eo_prefix: elm_obj_genlist_pan; |
4 | implements { | 5 | implements { |
5 | class.constructor; | 6 | class.constructor; |
diff --git a/src/lib/elementary/elm_gesture_layer.eo b/src/lib/elementary/elm_gesture_layer.eo index a2dea3bf0d..aeb5a7938c 100644 --- a/src/lib/elementary/elm_gesture_layer.eo +++ b/src/lib/elementary/elm_gesture_layer.eo | |||
@@ -33,6 +33,7 @@ enum Elm.Gesture.State | |||
33 | 33 | ||
34 | class Elm.Gesture_Layer (Elm.Widget) | 34 | class Elm.Gesture_Layer (Elm.Widget) |
35 | { | 35 | { |
36 | legacy_prefix: elm_gesture_layer; | ||
36 | eo_prefix: elm_obj_gesture_layer; | 37 | eo_prefix: elm_obj_gesture_layer; |
37 | methods { | 38 | methods { |
38 | @property zoom_step { | 39 | @property zoom_step { |
diff --git a/src/lib/elementary/elm_glview.eo b/src/lib/elementary/elm_glview.eo index 495c83131e..a5eb38f0f3 100644 --- a/src/lib/elementary/elm_glview.eo +++ b/src/lib/elementary/elm_glview.eo | |||
@@ -82,6 +82,7 @@ enum Elm.GLView.Render.Policy | |||
82 | 82 | ||
83 | class Elm.Glview (Elm.Widget, Efl.Gfx.View) | 83 | class Elm.Glview (Elm.Widget, Efl.Gfx.View) |
84 | { | 84 | { |
85 | legacy_prefix: elm_glview; | ||
85 | eo_prefix: elm_obj_glview; | 86 | eo_prefix: elm_obj_glview; |
86 | methods { | 87 | methods { |
87 | version_constructor { | 88 | version_constructor { |
diff --git a/src/lib/elementary/elm_grid.eo b/src/lib/elementary/elm_grid.eo index 4fe07ecac2..f33945f69c 100644 --- a/src/lib/elementary/elm_grid.eo +++ b/src/lib/elementary/elm_grid.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Grid (Elm.Widget) | 1 | class Elm.Grid (Elm.Widget) |
2 | { | 2 | { |
3 | legacy_prefix: elm_grid; | ||
3 | eo_prefix: elm_obj_grid; | 4 | eo_prefix: elm_obj_grid; |
4 | data: null; | 5 | data: null; |
5 | methods { | 6 | methods { |
diff --git a/src/lib/elementary/elm_hover.eo b/src/lib/elementary/elm_hover.eo index 42072b7cac..44a8117bdd 100644 --- a/src/lib/elementary/elm_hover.eo +++ b/src/lib/elementary/elm_hover.eo | |||
@@ -9,6 +9,7 @@ enum Elm.Hover.Axis | |||
9 | 9 | ||
10 | class Elm.Hover (Elm.Layout, Evas.Clickable_Interface, Elm.Interface.Atspi_Widget_Action) | 10 | class Elm.Hover (Elm.Layout, Evas.Clickable_Interface, Elm.Interface.Atspi_Widget_Action) |
11 | { | 11 | { |
12 | legacy_prefix: elm_hover; | ||
12 | eo_prefix: elm_obj_hover; | 13 | eo_prefix: elm_obj_hover; |
13 | methods { | 14 | methods { |
14 | @property target { | 15 | @property target { |
diff --git a/src/lib/elementary/elm_hoversel.eo b/src/lib/elementary/elm_hoversel.eo index 5070aa482a..2906712a33 100644 --- a/src/lib/elementary/elm_hoversel.eo +++ b/src/lib/elementary/elm_hoversel.eo | |||
@@ -3,6 +3,7 @@ class Elm.Hoversel (Elm.Button, Evas.Selectable_Interface, | |||
3 | Evas.Clickable_Interface, | 3 | Evas.Clickable_Interface, |
4 | Elm.Interface.Atspi_Widget_Action) | 4 | Elm.Interface.Atspi_Widget_Action) |
5 | { | 5 | { |
6 | legacy_prefix: elm_hoversel; | ||
6 | eo_prefix: elm_obj_hoversel; | 7 | eo_prefix: elm_obj_hoversel; |
7 | methods { | 8 | methods { |
8 | @property horizontal { | 9 | @property horizontal { |
diff --git a/src/lib/elementary/elm_hoversel_item.eo b/src/lib/elementary/elm_hoversel_item.eo index 68a72d31f5..1210cf0430 100644 --- a/src/lib/elementary/elm_hoversel_item.eo +++ b/src/lib/elementary/elm_hoversel_item.eo | |||
@@ -2,6 +2,7 @@ import elm_icon; | |||
2 | 2 | ||
3 | class Elm.Hoversel.Item(Elm.Widget.Item) | 3 | class Elm.Hoversel.Item(Elm.Widget.Item) |
4 | { | 4 | { |
5 | legacy_prefix: elm_hoversel_item; | ||
5 | eo_prefix: elm_obj_hoversel_item; | 6 | eo_prefix: elm_obj_hoversel_item; |
6 | methods { | 7 | methods { |
7 | @property icon { | 8 | @property icon { |
diff --git a/src/lib/elementary/elm_icon.eo b/src/lib/elementary/elm_icon.eo index fe22bdfc77..fb0d631087 100644 --- a/src/lib/elementary/elm_icon.eo +++ b/src/lib/elementary/elm_icon.eo | |||
@@ -8,6 +8,7 @@ enum Elm.Icon.Type | |||
8 | 8 | ||
9 | class Elm.Icon (Elm.Image) | 9 | class Elm.Icon (Elm.Image) |
10 | { | 10 | { |
11 | legacy_prefix: elm_icon; | ||
11 | eo_prefix: elm_obj_icon; | 12 | eo_prefix: elm_obj_icon; |
12 | methods { | 13 | methods { |
13 | } | 14 | } |
diff --git a/src/lib/elementary/elm_image.eo b/src/lib/elementary/elm_image.eo index f7d4f9f50e..cacf6ac4d0 100644 --- a/src/lib/elementary/elm_image.eo +++ b/src/lib/elementary/elm_image.eo | |||
@@ -46,6 +46,7 @@ class Elm.Image (Elm.Widget, Evas.Clickable_Interface, Evas.Draggable_Interface, | |||
46 | Elm.Interface.Atspi_Image, Elm.Interface.Atspi_Widget_Action, | 46 | Elm.Interface.Atspi_Image, Elm.Interface.Atspi_Widget_Action, |
47 | Edje.Object, Efl.Orientation, Efl.Flipable) | 47 | Edje.Object, Efl.Orientation, Efl.Flipable) |
48 | { | 48 | { |
49 | legacy_prefix: elm_image; | ||
49 | eo_prefix: elm_obj_image; | 50 | eo_prefix: elm_obj_image; |
50 | methods { | 51 | methods { |
51 | @property scale_type { | 52 | @property scale_type { |
diff --git a/src/lib/elementary/elm_index.eo b/src/lib/elementary/elm_index.eo index 1cad0fcc77..691e3175f2 100644 --- a/src/lib/elementary/elm_index.eo +++ b/src/lib/elementary/elm_index.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Index (Elm.Layout, Evas.Clickable_Interface, Evas.Selectable_Interface) | 1 | class Elm.Index (Elm.Layout, Evas.Clickable_Interface, Evas.Selectable_Interface) |
2 | { | 2 | { |
3 | legacy_prefix: elm_index; | ||
3 | eo_prefix: elm_obj_index; | 4 | eo_prefix: elm_obj_index; |
4 | methods { | 5 | methods { |
5 | @property autohide_disabled { | 6 | @property autohide_disabled { |
diff --git a/src/lib/elementary/elm_index_item.eo b/src/lib/elementary/elm_index_item.eo index fce375ba59..55afb03f26 100644 --- a/src/lib/elementary/elm_index_item.eo +++ b/src/lib/elementary/elm_index_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Index.Item(Elm.Widget.Item, Elm.Interface.Atspi_Widget_Action) | 1 | class Elm.Index.Item(Elm.Widget.Item, Elm.Interface.Atspi_Widget_Action) |
2 | { | 2 | { |
3 | legacy_prefix: elm_index_item; | ||
3 | eo_prefix: elm_obj_index_item; | 4 | eo_prefix: elm_obj_index_item; |
4 | methods { | 5 | methods { |
5 | @property selected { | 6 | @property selected { |
diff --git a/src/lib/elementary/elm_inwin.eo b/src/lib/elementary/elm_inwin.eo index fcf10fc322..facb9dc8ef 100644 --- a/src/lib/elementary/elm_inwin.eo +++ b/src/lib/elementary/elm_inwin.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Inwin (Elm.Layout) | 1 | class Elm.Inwin (Elm.Layout) |
2 | { | 2 | { |
3 | legacy_prefix: elm_inwin; | ||
3 | eo_prefix: elm_obj_win_inwin; | 4 | eo_prefix: elm_obj_win_inwin; |
4 | data: null; | 5 | data: null; |
5 | methods { | 6 | methods { |
diff --git a/src/lib/elementary/elm_label.eo b/src/lib/elementary/elm_label.eo index 27b70b3e6e..01c4ed4e93 100644 --- a/src/lib/elementary/elm_label.eo +++ b/src/lib/elementary/elm_label.eo | |||
@@ -10,6 +10,7 @@ enum Elm.Label.Slide_Mode | |||
10 | 10 | ||
11 | class Elm.Label (Elm.Layout) | 11 | class Elm.Label (Elm.Layout) |
12 | { | 12 | { |
13 | legacy_prefix: elm_label; | ||
13 | eo_prefix: elm_obj_label; | 14 | eo_prefix: elm_obj_label; |
14 | methods { | 15 | methods { |
15 | @property wrap_width { | 16 | @property wrap_width { |
diff --git a/src/lib/elementary/elm_layout.eo b/src/lib/elementary/elm_layout.eo index 11fd02df3c..cb0a1522b3 100644 --- a/src/lib/elementary/elm_layout.eo +++ b/src/lib/elementary/elm_layout.eo | |||
@@ -19,6 +19,7 @@ struct Elm.Layout_Part_Alias_Description | |||
19 | 19 | ||
20 | class Elm.Layout (Elm.Widget, Efl.Container, Efl.File) | 20 | class Elm.Layout (Elm.Widget, Efl.Container, Efl.File) |
21 | { | 21 | { |
22 | legacy_prefix: elm_layout; | ||
22 | eo_prefix: elm_obj_layout; | 23 | eo_prefix: elm_obj_layout; |
23 | data: Elm_Layout_Smart_Data; | 24 | data: Elm_Layout_Smart_Data; |
24 | methods { | 25 | methods { |
diff --git a/src/lib/elementary/elm_list.eo b/src/lib/elementary/elm_list.eo index feb62e707c..5e243d90db 100644 --- a/src/lib/elementary/elm_list.eo +++ b/src/lib/elementary/elm_list.eo | |||
@@ -40,6 +40,7 @@ class Elm.List (Elm.Layout, Elm.Interface_Scrollable, | |||
40 | Elm.Interface.Atspi_Widget_Action, Elm.Interface.Atspi.Selection, | 40 | Elm.Interface.Atspi_Widget_Action, Elm.Interface.Atspi.Selection, |
41 | Evas.Clickable_Interface, Evas.Selectable_Interface) | 41 | Evas.Clickable_Interface, Evas.Selectable_Interface) |
42 | { | 42 | { |
43 | legacy_prefix: elm_list; | ||
43 | eo_prefix: elm_obj_list; | 44 | eo_prefix: elm_obj_list; |
44 | methods { | 45 | methods { |
45 | @property horizontal { | 46 | @property horizontal { |
diff --git a/src/lib/elementary/elm_list_item.eo b/src/lib/elementary/elm_list_item.eo index ece25d2e82..48d9433e34 100644 --- a/src/lib/elementary/elm_list_item.eo +++ b/src/lib/elementary/elm_list_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.List.Item(Elm.Widget.Item) | 1 | class Elm.List.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | legacy_prefix: elm_list_item; | ||
3 | eo_prefix: elm_obj_list_item; | 4 | eo_prefix: elm_obj_list_item; |
4 | methods { | 5 | methods { |
5 | @property separator { | 6 | @property separator { |
diff --git a/src/lib/elementary/elm_map.eo b/src/lib/elementary/elm_map.eo index 295438b361..a814062347 100644 --- a/src/lib/elementary/elm_map.eo +++ b/src/lib/elementary/elm_map.eo | |||
@@ -73,6 +73,7 @@ class Elm.Map (Elm.Widget, Elm.Interface_Scrollable, | |||
73 | Elm.Interface.Atspi_Widget_Action, | 73 | Elm.Interface.Atspi_Widget_Action, |
74 | Evas.Clickable_Interface) | 74 | Evas.Clickable_Interface) |
75 | { | 75 | { |
76 | legacy_prefix: elm_map; | ||
76 | eo_prefix: elm_obj_map; | 77 | eo_prefix: elm_obj_map; |
77 | methods { | 78 | methods { |
78 | @property zoom { | 79 | @property zoom { |
diff --git a/src/lib/elementary/elm_map_pan.eo b/src/lib/elementary/elm_map_pan.eo index be30b0f109..9e5fe019ef 100644 --- a/src/lib/elementary/elm_map_pan.eo +++ b/src/lib/elementary/elm_map_pan.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Map.Pan (Elm.Pan) | 1 | class Elm.Map.Pan (Elm.Pan) |
2 | { | 2 | { |
3 | legacy_prefix: elm_map_pan; | ||
3 | eo_prefix: elm_obj_map_pan; | 4 | eo_prefix: elm_obj_map_pan; |
4 | implements { | 5 | implements { |
5 | class.constructor; | 6 | class.constructor; |
diff --git a/src/lib/elementary/elm_mapbuf.eo b/src/lib/elementary/elm_mapbuf.eo index 89562edc47..1c11a36fb8 100644 --- a/src/lib/elementary/elm_mapbuf.eo +++ b/src/lib/elementary/elm_mapbuf.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Mapbuf (Elm.Widget, Efl.Container) | 1 | class Elm.Mapbuf (Elm.Widget, Efl.Container) |
2 | { | 2 | { |
3 | legacy_prefix: elm_mapbuf; | ||
3 | eo_prefix: elm_obj_mapbuf; | 4 | eo_prefix: elm_obj_mapbuf; |
4 | methods { | 5 | methods { |
5 | @property auto { | 6 | @property auto { |
diff --git a/src/lib/elementary/elm_menu.eo b/src/lib/elementary/elm_menu.eo index f411eb29e8..a82a82ece6 100644 --- a/src/lib/elementary/elm_menu.eo +++ b/src/lib/elementary/elm_menu.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Menu (Elm.Widget, Evas.Clickable_Interface, Elm.Interface.Atspi.Selection) | 1 | class Elm.Menu (Elm.Widget, Evas.Clickable_Interface, Elm.Interface.Atspi.Selection) |
2 | { | 2 | { |
3 | legacy_prefix: elm_menu; | ||
3 | eo_prefix: elm_obj_menu; | 4 | eo_prefix: elm_obj_menu; |
4 | methods { | 5 | methods { |
5 | @property selected_item { | 6 | @property selected_item { |
diff --git a/src/lib/elementary/elm_menu_item.eo b/src/lib/elementary/elm_menu_item.eo index 614e10c999..08392ec0a8 100644 --- a/src/lib/elementary/elm_menu_item.eo +++ b/src/lib/elementary/elm_menu_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Menu.Item(Elm.Widget.Item, Elm.Interface.Atspi.Selection) | 1 | class Elm.Menu.Item(Elm.Widget.Item, Elm.Interface.Atspi.Selection) |
2 | { | 2 | { |
3 | legacy_prefix: elm_menu_item; | ||
3 | eo_prefix: elm_obj_menu_item; | 4 | eo_prefix: elm_obj_menu_item; |
4 | methods { | 5 | methods { |
5 | @property icon_name { | 6 | @property icon_name { |
diff --git a/src/lib/elementary/elm_multibuttonentry.eo b/src/lib/elementary/elm_multibuttonentry.eo index 0b76cacf15..fd95c55743 100644 --- a/src/lib/elementary/elm_multibuttonentry.eo +++ b/src/lib/elementary/elm_multibuttonentry.eo | |||
@@ -3,6 +3,7 @@ type Elm_Multibuttonentry_Format_Cb: __undefined_type; | |||
3 | 3 | ||
4 | class Elm.Multibuttonentry (Elm.Layout) | 4 | class Elm.Multibuttonentry (Elm.Layout) |
5 | { | 5 | { |
6 | legacy_prefix: elm_multibuttonentry; | ||
6 | eo_prefix: elm_obj_multibuttonentry; | 7 | eo_prefix: elm_obj_multibuttonentry; |
7 | methods { | 8 | methods { |
8 | @property editable { | 9 | @property editable { |
diff --git a/src/lib/elementary/elm_multibuttonentry_item.eo b/src/lib/elementary/elm_multibuttonentry_item.eo index 7ecfcd805e..7135274799 100644 --- a/src/lib/elementary/elm_multibuttonentry_item.eo +++ b/src/lib/elementary/elm_multibuttonentry_item.eo | |||
@@ -1,6 +1,7 @@ | |||
1 | class Elm.Multibuttonentry.Item(Elm.Widget.Item, | 1 | class Elm.Multibuttonentry.Item(Elm.Widget.Item, |
2 | Elm.Interface.Atspi_Widget_Action) | 2 | Elm.Interface.Atspi_Widget_Action) |
3 | { | 3 | { |
4 | legacy_prefix: elm_multibuttonentry_item; | ||
4 | eo_prefix: elm_obj_multibuttonentry_item; | 5 | eo_prefix: elm_obj_multibuttonentry_item; |
5 | methods { | 6 | methods { |
6 | @property selected { | 7 | @property selected { |
diff --git a/src/lib/elementary/elm_naviframe.eo b/src/lib/elementary/elm_naviframe.eo index 50c22f4c13..bbd1ebf7f8 100644 --- a/src/lib/elementary/elm_naviframe.eo +++ b/src/lib/elementary/elm_naviframe.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Naviframe (Elm.Layout, Elm.Interface.Atspi_Widget_Action) | 1 | class Elm.Naviframe (Elm.Layout, Elm.Interface.Atspi_Widget_Action) |
2 | { | 2 | { |
3 | legacy_prefix: elm_naviframe; | ||
3 | eo_prefix: elm_obj_naviframe; | 4 | eo_prefix: elm_obj_naviframe; |
4 | methods { | 5 | methods { |
5 | @property event_enabled { | 6 | @property event_enabled { |
diff --git a/src/lib/elementary/elm_naviframe_item.eo b/src/lib/elementary/elm_naviframe_item.eo index c38d952d1a..bae5406a79 100644 --- a/src/lib/elementary/elm_naviframe_item.eo +++ b/src/lib/elementary/elm_naviframe_item.eo | |||
@@ -2,6 +2,7 @@ type Elm_Naviframe_Item_Pop_Cb: __undefined_type; | |||
2 | 2 | ||
3 | class Elm.Naviframe.Item(Elm.Widget.Item) | 3 | class Elm.Naviframe.Item(Elm.Widget.Item) |
4 | { | 4 | { |
5 | legacy_prefix: elm_naviframe_item; | ||
5 | eo_prefix: elm_obj_naviframe_item; | 6 | eo_prefix: elm_obj_naviframe_item; |
6 | methods { | 7 | methods { |
7 | @property style { | 8 | @property style { |
diff --git a/src/lib/elementary/elm_notify.eo b/src/lib/elementary/elm_notify.eo index 6df03803ce..e2a59813f9 100644 --- a/src/lib/elementary/elm_notify.eo +++ b/src/lib/elementary/elm_notify.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Notify (Elm.Widget, Efl.Container) | 1 | class Elm.Notify (Elm.Widget, Efl.Container) |
2 | { | 2 | { |
3 | legacy_prefix: elm_notify; | ||
3 | eo_prefix: elm_obj_notify; | 4 | eo_prefix: elm_obj_notify; |
4 | methods { | 5 | methods { |
5 | @property align { | 6 | @property align { |
diff --git a/src/lib/elementary/elm_pan.eo b/src/lib/elementary/elm_pan.eo index 398de388c8..e6752479ac 100644 --- a/src/lib/elementary/elm_pan.eo +++ b/src/lib/elementary/elm_pan.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Pan (Evas.Smart.Clipped) | 1 | class Elm.Pan (Evas.Smart.Clipped) |
2 | { | 2 | { |
3 | legacy_prefix: elm_pan; | ||
3 | eo_prefix: elm_obj_pan; | 4 | eo_prefix: elm_obj_pan; |
4 | data: Elm_Pan_Smart_Data; | 5 | data: Elm_Pan_Smart_Data; |
5 | methods { | 6 | methods { |
diff --git a/src/lib/elementary/elm_panel.eo b/src/lib/elementary/elm_panel.eo index 4eec9cd88c..d4f5524257 100644 --- a/src/lib/elementary/elm_panel.eo +++ b/src/lib/elementary/elm_panel.eo | |||
@@ -11,6 +11,7 @@ enum Elm.Panel.Orient | |||
11 | class Elm.Panel (Elm.Layout, Elm.Interface_Scrollable, | 11 | class Elm.Panel (Elm.Layout, Elm.Interface_Scrollable, |
12 | Elm.Interface.Atspi_Widget_Action) | 12 | Elm.Interface.Atspi_Widget_Action) |
13 | { | 13 | { |
14 | legacy_prefix: elm_panel; | ||
14 | eo_prefix: elm_obj_panel; | 15 | eo_prefix: elm_obj_panel; |
15 | methods { | 16 | methods { |
16 | @property orient { | 17 | @property orient { |
diff --git a/src/lib/elementary/elm_panes.eo b/src/lib/elementary/elm_panes.eo index 011e0e4203..f057b68076 100644 --- a/src/lib/elementary/elm_panes.eo +++ b/src/lib/elementary/elm_panes.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Panes (Elm.Layout, Evas.Clickable_Interface) | 1 | class Elm.Panes (Elm.Layout, Evas.Clickable_Interface) |
2 | { | 2 | { |
3 | legacy_prefix: elm_panes; | ||
3 | eo_prefix: elm_obj_panes; | 4 | eo_prefix: elm_obj_panes; |
4 | methods { | 5 | methods { |
5 | @property content_left_size { | 6 | @property content_left_size { |
diff --git a/src/lib/elementary/elm_photo.eo b/src/lib/elementary/elm_photo.eo index 8954eb3a8c..31feae5512 100644 --- a/src/lib/elementary/elm_photo.eo +++ b/src/lib/elementary/elm_photo.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Photo (Elm.Widget, Efl.File, Evas.Clickable_Interface, Evas.Draggable_Interface) | 1 | class Elm.Photo (Elm.Widget, Efl.File, Evas.Clickable_Interface, Evas.Draggable_Interface) |
2 | { | 2 | { |
3 | legacy_prefix: elm_photo; | ||
3 | eo_prefix: elm_obj_photo; | 4 | eo_prefix: elm_obj_photo; |
4 | implements { | 5 | implements { |
5 | class.constructor; | 6 | class.constructor; |
diff --git a/src/lib/elementary/elm_photocam.eo b/src/lib/elementary/elm_photocam.eo index 09191fd80b..df21efe0da 100644 --- a/src/lib/elementary/elm_photocam.eo +++ b/src/lib/elementary/elm_photocam.eo | |||
@@ -15,6 +15,7 @@ class Elm.Photocam (Elm.Widget, Elm.Interface_Scrollable, | |||
15 | Evas.Clickable_Interface, Evas.Scrollable_Interface, | 15 | Evas.Clickable_Interface, Evas.Scrollable_Interface, |
16 | Evas.Zoomable_Interface) | 16 | Evas.Zoomable_Interface) |
17 | { | 17 | { |
18 | legacy_prefix: elm_photocam; | ||
18 | eo_prefix: elm_obj_photocam; | 19 | eo_prefix: elm_obj_photocam; |
19 | methods { | 20 | methods { |
20 | @property paused { | 21 | @property paused { |
diff --git a/src/lib/elementary/elm_photocam_pan.eo b/src/lib/elementary/elm_photocam_pan.eo index 5c74fb5cc9..52a393c086 100644 --- a/src/lib/elementary/elm_photocam_pan.eo +++ b/src/lib/elementary/elm_photocam_pan.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Photocam.Pan (Elm.Pan) | 1 | class Elm.Photocam.Pan (Elm.Pan) |
2 | { | 2 | { |
3 | legacy_prefix: elm_photocam_pan; | ||
3 | eo_prefix: elm_obj_photocam_pan; | 4 | eo_prefix: elm_obj_photocam_pan; |
4 | implements { | 5 | implements { |
5 | class.constructor; | 6 | class.constructor; |
diff --git a/src/lib/elementary/elm_player.eo b/src/lib/elementary/elm_player.eo index 823545a0d0..119070fa6c 100644 --- a/src/lib/elementary/elm_player.eo +++ b/src/lib/elementary/elm_player.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Player (Elm.Layout, Elm.Interface.Atspi_Widget_Action) | 1 | class Elm.Player (Elm.Layout, Elm.Interface.Atspi_Widget_Action) |
2 | { | 2 | { |
3 | legacy_prefix: elm_player; | ||
3 | eo_prefix: elm_obj_player; | 4 | eo_prefix: elm_obj_player; |
4 | implements { | 5 | implements { |
5 | class.constructor; | 6 | class.constructor; |
diff --git a/src/lib/elementary/elm_plug.eo b/src/lib/elementary/elm_plug.eo index 892efcf6e1..b863212fab 100644 --- a/src/lib/elementary/elm_plug.eo +++ b/src/lib/elementary/elm_plug.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Plug (Elm.Widget, Evas.Clickable_Interface) | 1 | class Elm.Plug (Elm.Widget, Evas.Clickable_Interface) |
2 | { | 2 | { |
3 | legacy_prefix: elm_plug; | ||
3 | eo_prefix: elm_obj_plug; | 4 | eo_prefix: elm_obj_plug; |
4 | data: null; | 5 | data: null; |
5 | methods { | 6 | methods { |
diff --git a/src/lib/elementary/elm_popup.eo b/src/lib/elementary/elm_popup.eo index e50337322d..abc680bddd 100644 --- a/src/lib/elementary/elm_popup.eo +++ b/src/lib/elementary/elm_popup.eo | |||
@@ -25,6 +25,7 @@ enum Elm.Popup.Orient | |||
25 | 25 | ||
26 | class Elm.Popup (Elm.Layout, Elm.Interface.Atspi_Widget_Action) | 26 | class Elm.Popup (Elm.Layout, Elm.Interface.Atspi_Widget_Action) |
27 | { | 27 | { |
28 | legacy_prefix: elm_popup; | ||
28 | eo_prefix: elm_obj_popup; | 29 | eo_prefix: elm_obj_popup; |
29 | methods { | 30 | methods { |
30 | @property align { | 31 | @property align { |
diff --git a/src/lib/elementary/elm_popup_item.eo b/src/lib/elementary/elm_popup_item.eo index 7db8e1938e..b1545dc19f 100644 --- a/src/lib/elementary/elm_popup_item.eo +++ b/src/lib/elementary/elm_popup_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Popup.Item(Elm.Widget.Item) | 1 | class Elm.Popup.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | legacy_prefix: elm_popup_item; | ||
3 | eo_prefix: elm_obj_popup_item; | 4 | eo_prefix: elm_obj_popup_item; |
4 | implements { | 5 | implements { |
5 | Eo.Base.constructor; | 6 | Eo.Base.constructor; |
diff --git a/src/lib/elementary/elm_prefs.eo b/src/lib/elementary/elm_prefs.eo index d5be9539ef..8ea05b017b 100644 --- a/src/lib/elementary/elm_prefs.eo +++ b/src/lib/elementary/elm_prefs.eo | |||
@@ -5,6 +5,7 @@ type Elm_Prefs_Reset_Mode: __undefined_type; | |||
5 | 5 | ||
6 | class Elm.Prefs (Elm.Widget, Efl.File) | 6 | class Elm.Prefs (Elm.Widget, Efl.File) |
7 | { | 7 | { |
8 | legacy_prefix: elm_prefs; | ||
8 | eo_prefix: elm_obj_prefs; | 9 | eo_prefix: elm_obj_prefs; |
9 | methods { | 10 | methods { |
10 | @property data { | 11 | @property data { |
diff --git a/src/lib/elementary/elm_progressbar.eo b/src/lib/elementary/elm_progressbar.eo index 57f53cbeb5..a9a7a44baf 100644 --- a/src/lib/elementary/elm_progressbar.eo +++ b/src/lib/elementary/elm_progressbar.eo | |||
@@ -1,6 +1,7 @@ | |||
1 | class Elm.Progressbar (Elm.Layout, Efl.Ui.Progress, | 1 | class Elm.Progressbar (Elm.Layout, Efl.Ui.Progress, |
2 | Efl.Orientation) | 2 | Efl.Orientation) |
3 | { | 3 | { |
4 | legacy_prefix: elm_progressbar; | ||
4 | eo_prefix: elm_obj_progressbar; | 5 | eo_prefix: elm_obj_progressbar; |
5 | methods { | 6 | methods { |
6 | @property pulse { | 7 | @property pulse { |
diff --git a/src/lib/elementary/elm_radio.eo b/src/lib/elementary/elm_radio.eo index cc1d9ccd25..09586fee04 100644 --- a/src/lib/elementary/elm_radio.eo +++ b/src/lib/elementary/elm_radio.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Radio (Elm.Check, Elm.Interface.Atspi_Widget_Action) | 1 | class Elm.Radio (Elm.Check, Elm.Interface.Atspi_Widget_Action) |
2 | { | 2 | { |
3 | legacy_prefix: elm_radio; | ||
3 | eo_prefix: elm_obj_radio; | 4 | eo_prefix: elm_obj_radio; |
4 | methods { | 5 | methods { |
5 | @property state_value { | 6 | @property state_value { |
diff --git a/src/lib/elementary/elm_route.eo b/src/lib/elementary/elm_route.eo index d703bfae76..7e0a7bcc65 100644 --- a/src/lib/elementary/elm_route.eo +++ b/src/lib/elementary/elm_route.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Route (Elm.Widget) | 1 | class Elm.Route (Elm.Widget) |
2 | { | 2 | { |
3 | legacy_prefix: elm_route; | ||
3 | eo_prefix: elm_obj_route; | 4 | eo_prefix: elm_obj_route; |
4 | methods { | 5 | methods { |
5 | @property emap { | 6 | @property emap { |
diff --git a/src/lib/elementary/elm_scroller.eo b/src/lib/elementary/elm_scroller.eo index abf9a9197e..c0c5c7f501 100644 --- a/src/lib/elementary/elm_scroller.eo +++ b/src/lib/elementary/elm_scroller.eo | |||
@@ -2,6 +2,7 @@ class Elm.Scroller (Elm.Layout, Elm.Interface_Scrollable, | |||
2 | Elm.Interface.Atspi_Widget_Action, | 2 | Elm.Interface.Atspi_Widget_Action, |
3 | Evas.Scrollable_Interface) | 3 | Evas.Scrollable_Interface) |
4 | { | 4 | { |
5 | legacy_prefix: elm_scroller; | ||
5 | eo_prefix: elm_obj_scroller; | 6 | eo_prefix: elm_obj_scroller; |
6 | methods { | 7 | methods { |
7 | @property propagate_events { | 8 | @property propagate_events { |
diff --git a/src/lib/elementary/elm_segment_control.eo b/src/lib/elementary/elm_segment_control.eo index c32a808a73..37d8390cfe 100644 --- a/src/lib/elementary/elm_segment_control.eo +++ b/src/lib/elementary/elm_segment_control.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Segment_Control (Elm.Layout) | 1 | class Elm.Segment_Control (Elm.Layout) |
2 | { | 2 | { |
3 | legacy_prefix: elm_segment_control; | ||
3 | eo_prefix: elm_obj_segment_control; | 4 | eo_prefix: elm_obj_segment_control; |
4 | methods { | 5 | methods { |
5 | @property item_count { | 6 | @property item_count { |
diff --git a/src/lib/elementary/elm_segment_control_item.eo b/src/lib/elementary/elm_segment_control_item.eo index 8be8f4b26c..15ac481c27 100644 --- a/src/lib/elementary/elm_segment_control_item.eo +++ b/src/lib/elementary/elm_segment_control_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Segment_Control.Item(Elm.Widget.Item) | 1 | class Elm.Segment_Control.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | legacy_prefix: elm_segment_control_item; | ||
3 | eo_prefix: elm_obj_segment_control_item; | 4 | eo_prefix: elm_obj_segment_control_item; |
4 | methods { | 5 | methods { |
5 | index_get @const { | 6 | index_get @const { |
diff --git a/src/lib/elementary/elm_separator.eo b/src/lib/elementary/elm_separator.eo index 273afa72b9..c190c20e90 100644 --- a/src/lib/elementary/elm_separator.eo +++ b/src/lib/elementary/elm_separator.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Separator (Elm.Layout) | 1 | class Elm.Separator (Elm.Layout) |
2 | { | 2 | { |
3 | legacy_prefix: elm_separator; | ||
3 | eo_prefix: elm_obj_separator; | 4 | eo_prefix: elm_obj_separator; |
4 | methods { | 5 | methods { |
5 | @property horizontal { | 6 | @property horizontal { |
diff --git a/src/lib/elementary/elm_slider.eo b/src/lib/elementary/elm_slider.eo index f3098763ff..22904319b8 100644 --- a/src/lib/elementary/elm_slider.eo +++ b/src/lib/elementary/elm_slider.eo | |||
@@ -6,6 +6,7 @@ class Elm.Slider (Elm.Layout, Efl.Ui.Progress, | |||
6 | Elm.Interface.Atspi.Value, | 6 | Elm.Interface.Atspi.Value, |
7 | Elm.Interface.Atspi_Widget_Action) | 7 | Elm.Interface.Atspi_Widget_Action) |
8 | { | 8 | { |
9 | legacy_prefix: elm_slider; | ||
9 | eo_prefix: elm_obj_slider; | 10 | eo_prefix: elm_obj_slider; |
10 | methods { | 11 | methods { |
11 | @property indicator_format { | 12 | @property indicator_format { |
diff --git a/src/lib/elementary/elm_slideshow.eo b/src/lib/elementary/elm_slideshow.eo index 7a9f1af697..71777bad6f 100644 --- a/src/lib/elementary/elm_slideshow.eo +++ b/src/lib/elementary/elm_slideshow.eo | |||
@@ -3,6 +3,7 @@ type Elm_Slideshow_Item_Class: __undefined_type; | |||
3 | class Elm.Slideshow (Elm.Layout, Elm.Interface.Atspi_Widget_Action) | 3 | class Elm.Slideshow (Elm.Layout, Elm.Interface.Atspi_Widget_Action) |
4 | { | 4 | { |
5 | eo_prefix: elm_obj_slideshow; | 5 | eo_prefix: elm_obj_slideshow; |
6 | legacy_prefix: elm_slideshow; | ||
6 | methods { | 7 | methods { |
7 | @property cache_after { | 8 | @property cache_after { |
8 | set { | 9 | set { |
diff --git a/src/lib/elementary/elm_slideshow_item.eo b/src/lib/elementary/elm_slideshow_item.eo index ed4f264894..66dff3d1f7 100644 --- a/src/lib/elementary/elm_slideshow_item.eo +++ b/src/lib/elementary/elm_slideshow_item.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Slideshow.Item(Elm.Widget.Item) | 1 | class Elm.Slideshow.Item(Elm.Widget.Item) |
2 | { | 2 | { |
3 | legacy_prefix: elm_slideshow_item; | ||
3 | eo_prefix: elm_obj_slideshow_item; | 4 | eo_prefix: elm_obj_slideshow_item; |
4 | methods { | 5 | methods { |
5 | show { | 6 | show { |
diff --git a/src/lib/elementary/elm_spinner.eo b/src/lib/elementary/elm_spinner.eo index 9dd5901fd5..513a5b1218 100644 --- a/src/lib/elementary/elm_spinner.eo +++ b/src/lib/elementary/elm_spinner.eo | |||
@@ -1,6 +1,7 @@ | |||
1 | class Elm.Spinner (Elm.Layout, Efl.Ui.Spin, | 1 | class Elm.Spinner (Elm.Layout, Efl.Ui.Spin, |
2 | Elm.Interface.Atspi.Value, Elm.Interface.Atspi_Widget_Action) | 2 | Elm.Interface.Atspi.Value, Elm.Interface.Atspi_Widget_Action) |
3 | { | 3 | { |
4 | legacy_prefix: elm_spinner; | ||
4 | eo_prefix: elm_obj_spinner; | 5 | eo_prefix: elm_obj_spinner; |
5 | methods { | 6 | methods { |
6 | @property wrap { | 7 | @property wrap { |
diff --git a/src/lib/elementary/elm_sys_notify_dbus.eo b/src/lib/elementary/elm_sys_notify_dbus.eo index df8eb9c855..ca7d303367 100644 --- a/src/lib/elementary/elm_sys_notify_dbus.eo +++ b/src/lib/elementary/elm_sys_notify_dbus.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Sys_Notify.Dbus (Eo.Base, Elm.Sys_Notify_Interface) | 1 | class Elm.Sys_Notify.Dbus (Eo.Base, Elm.Sys_Notify_Interface) |
2 | { | 2 | { |
3 | legacy_prefix: elm_sys_notify_dbus; | ||
3 | eo_prefix: elm_obj_sys_notify_dbus; | 4 | eo_prefix: elm_obj_sys_notify_dbus; |
4 | data: null; | 5 | data: null; |
5 | 6 | ||
diff --git a/src/lib/elementary/elm_systray.eo b/src/lib/elementary/elm_systray.eo index d516b5f625..53c65ddfd1 100644 --- a/src/lib/elementary/elm_systray.eo +++ b/src/lib/elementary/elm_systray.eo | |||
@@ -24,6 +24,7 @@ enum Elm.Systray.Status | |||
24 | 24 | ||
25 | class Elm.Systray (Eo.Base) | 25 | class Elm.Systray (Eo.Base) |
26 | { | 26 | { |
27 | legacy_prefix: elm_systray; | ||
27 | eo_prefix: elm_obj_systray; | 28 | eo_prefix: elm_obj_systray; |
28 | data: null; | 29 | data: null; |
29 | methods { | 30 | methods { |
diff --git a/src/lib/elementary/elm_table.eo b/src/lib/elementary/elm_table.eo index ab3ec13f6b..77178cfec4 100644 --- a/src/lib/elementary/elm_table.eo +++ b/src/lib/elementary/elm_table.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Table (Elm.Widget) | 1 | class Elm.Table (Elm.Widget) |
2 | { | 2 | { |
3 | legacy_prefix: elm_table; | ||
3 | eo_prefix: elm_obj_table; | 4 | eo_prefix: elm_obj_table; |
4 | data: null; | 5 | data: null; |
5 | methods { | 6 | methods { |
diff --git a/src/lib/elementary/elm_thumb.eo b/src/lib/elementary/elm_thumb.eo index 72e4bf88e3..b27c9d5e3e 100644 --- a/src/lib/elementary/elm_thumb.eo +++ b/src/lib/elementary/elm_thumb.eo | |||
@@ -2,6 +2,7 @@ | |||
2 | class Elm.Thumb (Elm.Layout, Efl.File, Evas.Clickable_Interface, | 2 | class Elm.Thumb (Elm.Layout, Efl.File, Evas.Clickable_Interface, |
3 | Evas.Draggable_Interface) | 3 | Evas.Draggable_Interface) |
4 | { | 4 | { |
5 | legacy_prefix: elm_thumb; | ||
5 | eo_prefix: elm_obj_thumb; | 6 | eo_prefix: elm_obj_thumb; |
6 | implements { | 7 | implements { |
7 | class.constructor; | 8 | class.constructor; |
diff --git a/src/lib/elementary/elm_toolbar.eo b/src/lib/elementary/elm_toolbar.eo index a187e4be2f..ad0a775b2e 100644 --- a/src/lib/elementary/elm_toolbar.eo +++ b/src/lib/elementary/elm_toolbar.eo | |||
@@ -28,6 +28,7 @@ class Elm.Toolbar (Elm.Widget, Elm.Interface_Scrollable, Efl.Orientation, | |||
28 | Elm.Interface.Atspi_Widget_Action, Elm.Interface.Atspi.Selection, | 28 | Elm.Interface.Atspi_Widget_Action, Elm.Interface.Atspi.Selection, |
29 | Evas.Clickable_Interface, Evas.Selectable_Interface) | 29 | Evas.Clickable_Interface, Evas.Selectable_Interface) |
30 | { | 30 | { |
31 | legacy_prefix: elm_toolbar; | ||
31 | eo_prefix: elm_obj_toolbar; | 32 | eo_prefix: elm_obj_toolbar; |
32 | methods { | 33 | methods { |
33 | @property homogeneous { | 34 | @property homogeneous { |
diff --git a/src/lib/elementary/elm_toolbar_item.eo b/src/lib/elementary/elm_toolbar_item.eo index 6851d6c81d..aff0fa362a 100644 --- a/src/lib/elementary/elm_toolbar_item.eo +++ b/src/lib/elementary/elm_toolbar_item.eo | |||
@@ -25,6 +25,7 @@ struct Elm.Toolbar.Item.State | |||
25 | 25 | ||
26 | class Elm.Toolbar.Item(Elm.Widget.Item) | 26 | class Elm.Toolbar.Item(Elm.Widget.Item) |
27 | { | 27 | { |
28 | legacy_prefix: elm_toolbar_item; | ||
28 | eo_prefix: elm_obj_toolbar_item; | 29 | eo_prefix: elm_obj_toolbar_item; |
29 | methods { | 30 | methods { |
30 | @property prev { | 31 | @property prev { |
diff --git a/src/lib/elementary/elm_video.eo b/src/lib/elementary/elm_video.eo index 750ab33dfd..b5ec5406b2 100644 --- a/src/lib/elementary/elm_video.eo +++ b/src/lib/elementary/elm_video.eo | |||
@@ -1,5 +1,6 @@ | |||
1 | class Elm.Video (Elm.Layout, Efl.File, Elm.Interface.Atspi_Widget_Action) | 1 | class Elm.Video (Elm.Layout, Efl.File, Elm.Interface.Atspi_Widget_Action) |
2 | { | 2 | { |
3 | legacy_prefix: elm_video; | ||
3 | eo_prefix: elm_obj_video; | 4 | eo_prefix: elm_obj_video; |
4 | methods { | 5 | methods { |
5 | @property audio_level { | 6 | @property audio_level { |
diff --git a/src/lib/elementary/elm_web.eo b/src/lib/elementary/elm_web.eo index b52ed0644f..b377cdeb84 100644 --- a/src/lib/elementary/elm_web.eo +++ b/src/lib/elementary/elm_web.eo | |||
@@ -16,6 +16,7 @@ enum Elm.Web.Zoom_Mode | |||
16 | 16 | ||
17 | class Elm.Web (Elm.Widget) | 17 | class Elm.Web (Elm.Widget) |
18 | { | 18 | { |
19 | legacy_prefix: elm_web; | ||
19 | eo_prefix: elm_obj_web; | 20 | eo_prefix: elm_obj_web; |
20 | methods { | 21 | methods { |
21 | @property text_matches_highlight @virtual_pure { | 22 | @property text_matches_highlight @virtual_pure { |
diff --git a/src/lib/elementary/elm_widget.eo b/src/lib/elementary/elm_widget.eo index 9406fafdda..699846600d 100644 --- a/src/lib/elementary/elm_widget.eo +++ b/src/lib/elementary/elm_widget.eo | |||
@@ -22,6 +22,7 @@ struct @extern Elm.Theme; | |||
22 | 22 | ||
23 | abstract Elm.Widget (Evas.Object.Smart, Elm.Interface.Atspi_Accessible, Elm.Interface.Atspi_Component) | 23 | abstract Elm.Widget (Evas.Object.Smart, Elm.Interface.Atspi_Accessible, Elm.Interface.Atspi_Component) |
24 | { | 24 | { |
25 | legacy_prefix: elm_widget; | ||
25 | eo_prefix: elm_obj_widget; | 26 | eo_prefix: elm_obj_widget; |
26 | data: Elm_Widget_Smart_Data; | 27 | data: Elm_Widget_Smart_Data; |
27 | methods { | 28 | methods { |
diff --git a/src/lib/elementary/elm_win.eo b/src/lib/elementary/elm_win.eo index 79ac8a968f..6239a0a3d1 100644 --- a/src/lib/elementary/elm_win.eo +++ b/src/lib/elementary/elm_win.eo | |||
@@ -164,6 +164,7 @@ enum Elm.Illume_Command | |||
164 | class Elm.Win (Elm.Widget, Elm.Interface.Atspi.Window, | 164 | class Elm.Win (Elm.Widget, Elm.Interface.Atspi.Window, |
165 | Elm.Interface.Atspi_Widget_Action, Efl.Pack) | 165 | Elm.Interface.Atspi_Widget_Action, Efl.Pack) |
166 | { | 166 | { |
167 | legacy_prefix: elm_win; | ||
167 | eo_prefix: elm_obj_win; | 168 | eo_prefix: elm_obj_win; |
168 | methods { | 169 | methods { |
169 | @property keyboard_win { | 170 | @property keyboard_win { |
diff --git a/src/lib/emotion/emotion_object.eo b/src/lib/emotion/emotion_object.eo index 1267417e2e..c6abdb8ef3 100644 --- a/src/lib/emotion/emotion_object.eo +++ b/src/lib/emotion/emotion_object.eo | |||
@@ -1,4 +1,5 @@ | |||
1 | class Emotion.Object (Evas.Object.Smart, Efl.File, Efl.Player, Efl.Image, Efl.Image.Load) { | 1 | class Emotion.Object (Evas.Object.Smart, Efl.File, Efl.Player, Efl.Image, Efl.Image.Load) { |
2 | legacy_prefix: emotion_object; | ||
2 | eo_prefix: emotion_obj; | 3 | eo_prefix: emotion_obj; |
3 | methods { | 4 | methods { |
4 | @property option { | 5 | @property option { |
diff --git a/src/lib/evas/canvas/evas_object.eo b/src/lib/evas/canvas/evas_object.eo index 285ba6bb39..92734509cc 100644 --- a/src/lib/evas/canvas/evas_object.eo +++ b/src/lib/evas/canvas/evas_object.eo | |||
@@ -2,6 +2,7 @@ import evas_types; | |||
2 | 2 | ||
3 | abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx, Efl.Gfx.Stack, Efl.Animator) | 3 | abstract Evas.Object (Eo.Base, Evas.Common_Interface, Efl.Gfx, Efl.Gfx.Stack, Efl.Animator) |
4 | { | 4 | { |
5 | legacy_prefix: evas_object; | ||
5 | eo_prefix: evas_obj; | 6 | eo_prefix: evas_obj; |
6 | data: Evas_Object_Protected_Data; | 7 | data: Evas_Object_Protected_Data; |
7 | methods { | 8 | methods { |
diff --git a/src/lib/evas/canvas/evas_object_smart.eo b/src/lib/evas/canvas/evas_object_smart.eo index 0781dbe630..c67e12c833 100644 --- a/src/lib/evas/canvas/evas_object_smart.eo +++ b/src/lib/evas/canvas/evas_object_smart.eo | |||
@@ -5,6 +5,7 @@ struct @extern Evas.Smart.Cb_Description; | |||
5 | 5 | ||
6 | class Evas.Object.Smart (Evas.Object, Evas.Signal_Interface) | 6 | class Evas.Object.Smart (Evas.Object, Evas.Signal_Interface) |
7 | { | 7 | { |
8 | legacy_prefix: evas_object_smart; | ||
8 | eo_prefix: evas_obj_smart; | 9 | eo_prefix: evas_obj_smart; |
9 | data: Evas_Smart_Data; | 10 | data: Evas_Smart_Data; |
10 | methods { | 11 | methods { |