summaryrefslogtreecommitdiff
path: root/src/lib/efl/interfaces/efl_interface_gui_object.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/efl/interfaces/efl_interface_gui_object.eo')
-rw-r--r--src/lib/efl/interfaces/efl_interface_gui_object.eo29
1 files changed, 16 insertions, 13 deletions
diff --git a/src/lib/efl/interfaces/efl_interface_gui_object.eo b/src/lib/efl/interfaces/efl_interface_gui_object.eo
index c572df7583..ae0e17bffd 100644
--- a/src/lib/efl/interfaces/efl_interface_gui_object.eo
+++ b/src/lib/efl/interfaces/efl_interface_gui_object.eo
@@ -1,4 +1,5 @@
interface Efl_Interface_Gui_Object {
+ legacy_prefix: null;
properties {
size {
set {
@@ -46,6 +47,21 @@ interface Efl_Interface_Gui_Object {
return Evas_Object * @warn_unused;
}
}
+ visibility {
+ set {
+ /*@ Makes the given Evas object visible or invisible. */
+ legacy null;
+ }
+ get {
+ /*@ Retrieves whether or not the given Evas object is visible. */
+ legacy null;
+ }
+ values {
+ Eina_Bool v; /*@ @c EINA_TRUE if to make the object visible, @c EINA_FALSE otherwise */
+ }
+ }
+ }
+ methods {
stack_above {
/*@
Stack @p obj immediately above @p above
@@ -126,19 +142,6 @@ interface Efl_Interface_Gui_Object {
@see evas_object_raise() */
}
- visibility {
- set {
- /*@ Makes the given Evas object visible or invisible. */
- legacy null;
- }
- get {
- /*@ Retrieves whether or not the given Evas object is visible. */
- legacy evas_object_visible_get;
- }
- values {
- Eina_Bool v; /*@ @c EINA_TRUE if to make the object visible, @c EINA_FALSE otherwise */
- }
- }
}
}