Efl interface part: First draft.

This interface will be used for fetching parts from objects.
The parts can either be real objects or more likely mock objects
that proxy into actual calls on the object.
This commit is contained in:
Tom Hacohen 2014-06-16 16:12:09 +01:00
parent 17e99e6750
commit 60c35f329f
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
interface Efl_Interface_Part {
legacy_prefix: null;
eo_prefix: efl;
properties {
part {
set {
}
get {
}
keys {
const char *name; /*@ part name. */
}
values {
Eo *pobj; /*@ the object that populates the part. */
}
}
}
}