efl/legacy
rephorm d4a055585b Add GROUP Parts to edje.
These can be used to automatically swallow in another group from the same file.

Parts within child groups can be referred to by a ':' separated 'full path' of
part names. Any API functions that take a part name will now accept a full path
also.

Signals emitted by child objects will be repeated up to the parents with the
source changed to be the path relative to the receiving object.  E.g in the
example below, a mouse moving over the lower light green rectangle would result
in the parent object recieving a "mouse,move" signal with source "bot:inner".

**** NEW RESTRICTION ****  part names should no longer include a ':' character.
This is not yet enforced by edje_cc, but will cause the part to be inaccessible
from the API.

Example EDC:

collections {
  group {
    name: "parent";
    parts {
      part {
        name: "top";
        type: GROUP;
        source: "child";
        description {
          state: "default" 0.0;
          rel2.relative: 1 0.5;
        }
      }
      part {
        name: "bot";
        type: GROUP;
        source: "child";
        description {
          state: "default" 0.0;
          rel1.relative: 0 0.5;
        }
      }
    }
  }
  group {
    name: "child";
    parts {
      part {
        name: "base";
        type: RECT;
        description {
          state: "default" 0.0;
          color: 160 208 8 255;
        }
      }
      part {
        name: "inner";
        type: RECT;
        description {
          state: "default" 0.0;
          rel1.offset: 10 10;
          rel2.offset: -11 -11;
          color: 210 228 76 255;
        }
      }
    }
  }
}


SVN revision: 30087
2007-05-27 05:28:07 +00:00
..
ecore use const void* for the keys in ecore_tree 2007-05-23 15:20:55 +00:00
edje Add GROUP Parts to edje. 2007-05-27 05:28:07 +00:00
eet fix custom file info to be less delicate - not perfectly correct but it wont 2007-05-23 12:07:14 +00:00
efreet limit recursion - safety for bad theme config. 2007-05-26 06:45:51 +00:00
embryo asparagus - pass distcheck. 2007-05-05 15:14:17 +00:00
emotion link modules to emotion 2007-05-07 14:04:40 +00:00
evas fix custom file info to be less delicate - not perfectly correct but it wont 2007-05-23 12:07:14 +00:00