|
|
|
NavigationPersonal tools |
Edje Group
The group block contains a list of parts and programs that construct an given Edje Object. Groups are name-spaced preveting ambiguity in part identification.
group {
name: "name/used/by/application";
alias: "another_name";
alias: "one_more_name";
min: hor ver;
max: hor ver;
data {
item: "option" "value";
...
}
parts {
part {
}
...
}
programs {
program {
}
...
}
}
[edit] The Data Block
data {
item: "option" "value";
...
}
The data block is used to pass application-specific information to the application itself when it's outside the scope of the EDC definition. [edit] The Parts Block
parts {
part {
...
}
part {
...
}
...
}
This block contains a list of one or more part blocks. [edit] The Programs Blocks
programs {
program {
...
}
program {
...
}
...
}
This block contains a list of one or more program blocks. |