elm_inwin: remove all legacy usage from eo files

this takes the current generated output from eolian for legacy code in
efl and adds it to the tree, then removes legacy references from the
corresponding eo files. in the case where the entire eo file was for
a legacy object, that eo file has been removed from the tree

ref T7724

Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D8179
This commit is contained in:
Mike Blumenkrantz 2019-03-05 17:00:37 -05:00 committed by Cedric BAIL
parent 6db020521d
commit 56c234e7ad
9 changed files with 146 additions and 33 deletions

View File

@ -223,7 +223,6 @@ elm_legacy_eolian_files = \
lib/elementary/elm_actionslider_part.eo \
lib/elementary/elm_bubble_part.eo \
lib/elementary/elm_fileselector_part.eo \
lib/elementary/elm_inwin.eo \
lib/elementary/elm_mapbuf.eo \
lib/elementary/elm_naviframe.eo \
lib/elementary/elm_naviframe_item.eo \
@ -362,6 +361,8 @@ lib/elementary/elm_index_eo.legacy.c \
lib/elementary/elm_index_item_eo.c \
lib/elementary/elm_index_item_eo.legacy.c \
lib/elementary/elm_interface_fileselector_eo.c \
lib/elementary/elm_inwin_eo.c \
lib/elementary/elm_inwin_eo.legacy.c \
$(NULL)
elm_legacy_eo_headers = \
@ -489,6 +490,8 @@ lib/elementary/elm_index_item_eo.h \
lib/elementary/elm_index_item_eo.legacy.h \
lib/elementary/elm_interface_fileselector_eo.h \
lib/elementary/elm_interface_fileselector_eo.legacy.h \
lib/elementary/elm_inwin_eo.h \
lib/elementary/elm_inwin_eo.legacy.h \
$(NULL)

View File

@ -10,7 +10,7 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "elm_inwin.eo.h"
#include "elm_inwin_eo.h"
#include "elm_widget_inwin.h"
#include "elm_widget_layout.h"
#include "elm_part_helper.h"
@ -141,4 +141,4 @@ ELM_PART_CONTENT_DEFAULT_IMPLEMENT(elm_inwin, Elm_Inwin_Data)
EFL_CANVAS_GROUP_ADD_OPS(elm_inwin), \
ELM_LAYOUT_SIZING_EVAL_OPS(elm_inwin)
#include "elm_inwin.eo.c"
#include "elm_inwin_eo.c"

View File

@ -1,28 +0,0 @@
class Elm.Inwin extends Efl.Ui.Layout_Base implements Efl.Ui.Focus.Layer, Efl.Content, Efl.Ui.Legacy
{
[[Elementary inwin class]]
legacy_prefix: elm_inwin;
eo_prefix: elm_obj_win_inwin;
methods {
activate {
[[Activates an inwin object, ensuring its visibility
This function will make sure that the inwin $obj is completely visible
by calling evas_object_show() and evas_object_raise() on it, to bring it
to the front. It also sets the keyboard focus to it, which will be passed
onto its content.
The object's theme will also receive the signal "elm,action,show" with
source "elm".]]
legacy: elm_win_inwin_activate;
}
}
implements {
class.constructor;
Efl.Object.constructor;
Efl.Ui.Widget.widget_parent { set; }
Efl.Content.content { get; set; }
Efl.Content.content_unset;
}
}

View File

@ -0,0 +1,58 @@
void _elm_inwin_activate(Eo *obj, Elm_Inwin_Data *pd);
EOAPI EFL_VOID_FUNC_BODY(elm_obj_win_inwin_activate);
Efl_Object *_elm_inwin_efl_object_constructor(Eo *obj, Elm_Inwin_Data *pd);
void _elm_inwin_efl_ui_widget_widget_parent_set(Eo *obj, Elm_Inwin_Data *pd, Efl_Ui_Widget *parent);
Eina_Bool _elm_inwin_efl_content_content_set(Eo *obj, Elm_Inwin_Data *pd, Efl_Gfx_Entity *content);
Efl_Gfx_Entity *_elm_inwin_efl_content_content_get(const Eo *obj, Elm_Inwin_Data *pd);
Efl_Gfx_Entity *_elm_inwin_efl_content_content_unset(Eo *obj, Elm_Inwin_Data *pd);
static Eina_Bool
_elm_inwin_class_initializer(Efl_Class *klass)
{
const Efl_Object_Ops *opsp = NULL;
const Efl_Object_Property_Reflection_Ops *ropsp = NULL;
#ifndef ELM_INWIN_EXTRA_OPS
#define ELM_INWIN_EXTRA_OPS
#endif
EFL_OPS_DEFINE(ops,
EFL_OBJECT_OP_FUNC(elm_obj_win_inwin_activate, _elm_inwin_activate),
EFL_OBJECT_OP_FUNC(efl_constructor, _elm_inwin_efl_object_constructor),
EFL_OBJECT_OP_FUNC(efl_ui_widget_parent_set, _elm_inwin_efl_ui_widget_widget_parent_set),
EFL_OBJECT_OP_FUNC(efl_content_set, _elm_inwin_efl_content_content_set),
EFL_OBJECT_OP_FUNC(efl_content_get, _elm_inwin_efl_content_content_get),
EFL_OBJECT_OP_FUNC(efl_content_unset, _elm_inwin_efl_content_content_unset),
ELM_INWIN_EXTRA_OPS
);
opsp = &ops;
return efl_class_functions_set(klass, opsp, ropsp);
}
static const Efl_Class_Description _elm_inwin_class_desc = {
EO_VERSION,
"Elm.Inwin",
EFL_CLASS_TYPE_REGULAR,
sizeof(Elm_Inwin_Data),
_elm_inwin_class_initializer,
_elm_inwin_class_constructor,
NULL
};
EFL_DEFINE_CLASS(elm_inwin_class_get, &_elm_inwin_class_desc, EFL_UI_LAYOUT_BASE_CLASS, EFL_UI_FOCUS_LAYER_MIXIN, EFL_CONTENT_INTERFACE, EFL_UI_LEGACY_INTERFACE, NULL);
#include "elm_inwin_eo.legacy.c"

View File

@ -0,0 +1,40 @@
#ifndef _ELM_INWIN_EO_H_
#define _ELM_INWIN_EO_H_
#ifndef _ELM_INWIN_EO_CLASS_TYPE
#define _ELM_INWIN_EO_CLASS_TYPE
typedef Eo Elm_Inwin;
#endif
#ifndef _ELM_INWIN_EO_TYPES
#define _ELM_INWIN_EO_TYPES
#endif
/** Elementary inwin class
*
* @ingroup Elm_Inwin
*/
#define ELM_INWIN_CLASS elm_inwin_class_get()
EWAPI const Efl_Class *elm_inwin_class_get(void);
/**
* @brief Activates an inwin object, ensuring its visibility
*
* This function will make sure that the inwin @c obj is completely visible by
* calling evas_object_show() and evas_object_raise() on it, to bring it to the
* front. It also sets the keyboard focus to it, which will be passed onto its
* content.
*
* The object's theme will also receive the signal "elm,action,show" with
* source "elm".
* @param[in] obj The object.
*
* @ingroup Elm_Inwin
*/
EOAPI void elm_obj_win_inwin_activate(Eo *obj);
#endif

View File

@ -0,0 +1,6 @@
EAPI void
elm_win_inwin_activate(Elm_Inwin *obj)
{
elm_obj_win_inwin_activate(obj);
}

View File

@ -0,0 +1,33 @@
#ifndef _ELM_INWIN_EO_LEGACY_H_
#define _ELM_INWIN_EO_LEGACY_H_
#ifndef _ELM_INWIN_EO_CLASS_TYPE
#define _ELM_INWIN_EO_CLASS_TYPE
typedef Eo Elm_Inwin;
#endif
#ifndef _ELM_INWIN_EO_TYPES
#define _ELM_INWIN_EO_TYPES
#endif
/**
* @brief Activates an inwin object, ensuring its visibility
*
* This function will make sure that the inwin @c obj is completely visible by
* calling evas_object_show() and evas_object_raise() on it, to bring it to the
* front. It also sets the keyboard focus to it, which will be passed onto its
* content.
*
* The object's theme will also receive the signal "elm,action,show" with
* source "elm".
* @param[in] obj The object.
*
* @ingroup Elm_Inwin_Group
*/
EAPI void elm_win_inwin_activate(Elm_Inwin *obj);
#endif

View File

@ -63,4 +63,4 @@ EAPI Evas_Object *elm_win_inwin_content_get(const Evas_Object *obj);
*/
EAPI Evas_Object *elm_win_inwin_content_unset(Evas_Object *obj);
#include "elm_inwin.eo.legacy.h"
#include "elm_inwin_eo.legacy.h"

View File

@ -37,7 +37,6 @@ pub_legacy_eo_files = [
'elm_actionslider_part.eo',
'elm_bubble_part.eo',
'elm_fileselector_part.eo',
'elm_inwin.eo',
'elm_mapbuf.eo',
'elm_naviframe.eo',
'elm_naviframe_item.eo',
@ -764,6 +763,8 @@ elementary_pub_headers = [
'elm_index_item_eo.legacy.h',
'elm_interface_fileselector_eo.h',
'elm_interface_fileselector_eo.legacy.h',
'elm_inwin_eo.h',
'elm_inwin_eo.legacy.h',
]
elementary_header_src = [