summaryrefslogtreecommitdiff
path: root/src/lib/edje/edje_object.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/edje/edje_object.eo')
-rw-r--r--src/lib/edje/edje_object.eo24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/lib/edje/edje_object.eo b/src/lib/edje/edje_object.eo
index 305684c3c7..0b1fbe2e2e 100644
--- a/src/lib/edje/edje_object.eo
+++ b/src/lib/edje/edje_object.eo
@@ -2221,6 +2221,30 @@ class Edje.Object (Evas.Smart_Clipped, Efl.File)
scale: double; [[The transition duration factor]]
}
}
+ @property part_file {
+ set {
+ [[Set the EDJ file (and group within it) the part of the given edje object.
+
+ This has no effect if the type of part is not EDJE_PART_TYPE_GROUP.
+
+ @since 1.18]]
+ return: bool;
+ }
+ get {
+ [[Retrieve the file and group name that the part of the given edje object is bound to.
+
+ This has no effect if the type of part is not EDJE_PART_TYPE_GROUP.
+
+ @since 1.18]]
+ }
+ keys {
+ part: const(char)*; [[The part name]]
+ }
+ values {
+ file: const(char)*; [[The file path]]
+ group: const(char)*; [[The group name]]
+ }
+ }
}
implements {
Eo.Base.constructor;