efl/legacy/edje/src/lib
Cedric BAIL d0810de637 edje: add PROXY part.
example:

collections {
   group {
      name: "main";
      parts {
         part {
            name: "sub1";
            type: GROUP;
            source: "sub1";

            description {
               rel1.relative: 0.5 0.5;
               rel2.relative: 1.0 1.0;
            }
         }

         part {
            name: "pro2";
            type: PROXY;

            description {
               rel1.relative: 0.0 0.5;
               rel2.relative: 0.5 1.0;
               source: "sub1";
               color: 255 0 0 128;

               map {
                  on: 1;
                  smooth: 1;
                  rotation {
                     z: 30;
                  }
               }
            }
         }
      }
   }

   group {
      name: "sub1";
      parts {
         part {
            name: "rect";
            type: RECT;

            description {
               rel1.relative: 0.0 0.0;
               rel2.relative: 0.5 0.5;
               color: 255 0 0 255;

               map {
                  on: 1;
                  smooth: 1;
                  rotation {
                     z: -30;
                  }
               }
            }
         }

         part {
            name: "pro1";
            type: PROXY;

            description {
               rel1.relative: 0.5 0.0;
               rel2.relative: 1.0 0.7;
               color: 128 128 0 128;
               source: rect;
            }
         }
      }
   }
}




SVN revision: 57694
2011-03-11 17:46:29 +00:00
..
.cvsignore added .cvsignore files 2004-01-17 16:36:46 +00:00
Edje.h edje: add PROXY part. 2011-03-11 17:46:29 +00:00
Edje_Edit.h List and allow to fetch pre-processing errors when compiling Embryo scripts. 2010-12-07 19:06:53 +00:00
Makefile.am Adding a transition layout animation for edje box. 2010-09-29 00:28:54 +00:00
edje_box_layout.c declare variables at the beginning of the block 2010-12-14 05:42:25 +00:00
edje_cache.c edje: add PROXY part. 2011-03-11 17:46:29 +00:00
edje_calc.c edje: add PROXY part. 2011-03-11 17:46:29 +00:00
edje_callbacks.c use unused instead of dead code to get rid of warnings 2011-01-16 03:56:41 +00:00
edje_container.c Fix common misspellings 2010-09-08 11:50:05 +00:00
edje_container.h FORMATTING 2010-08-04 16:57:32 +00:00
edje_convert.c better log. 2010-10-08 00:24:22 +00:00
edje_convert.h * edje: move code around. 2010-08-06 11:07:47 +00:00
edje_data.c edje: add PROXY part. 2011-03-11 17:46:29 +00:00
edje_edit.c warning-- 2011-01-16 08:09:47 +00:00
edje_embryo.c fix some clang and ptential warnings 2011-01-16 02:14:45 +00:00
edje_entry.c From: WooHyun Jung <wh0705.jung@samsung.com> 2011-03-10 10:12:32 +00:00
edje_external.c * edje: strcpy could only go wrong. 2010-11-26 16:46:35 +00:00
edje_load.c edje: add PROXY part. 2011-03-11 17:46:29 +00:00
edje_lua.c better log. 2010-10-08 00:24:22 +00:00
edje_lua2.c * edje: disable some os related syscall in lua script. 2010-11-02 13:43:54 +00:00
edje_lua_script_only.c Put everything in edje_private. It should fix a compilation 2010-09-25 17:10:33 +00:00
edje_main.c better log. 2010-10-08 00:24:22 +00:00
edje_match.c missing one _Bool -> Eina_Bool 2010-12-14 06:20:55 +00:00
edje_message_queue.c ooh silly! remove the list item, not head! as intended. fix. 2011-01-07 10:52:19 +00:00
edje_misc.c reorganize header files inclusion. Fix some problems when compiling on Windows 2008-06-07 10:06:14 +00:00
edje_module.c Put everything in edje_private. It should fix a compilation 2010-09-25 17:10:33 +00:00
edje_private.h edje: add PROXY part. 2011-03-11 17:46:29 +00:00
edje_program.c edje: correctly propagate event recursivly with existing and non existing part. 2011-03-10 17:27:55 +00:00
edje_script_only.c better log. 2010-10-08 00:24:22 +00:00
edje_smart.c Edje: Added mirrored mode. Mirrored mode is used for UI-mirroring. It lets you mirror edje objects automatically (it also sends signals to the .edc code so you can do tweaks if you want), no need to create a special theme just for rtl layouts. 2011-02-01 13:26:49 +00:00
edje_text.c Edje text: Added size_range to limit the font size range. 2011-02-27 18:09:03 +00:00
edje_textblock_styles.c Put everything in edje_private. It should fix a compilation 2010-09-25 17:10:33 +00:00
edje_util.c edje: correctly propagate event recursivly with existing and non existing part. 2011-03-10 17:27:55 +00:00
edje_var.c better log. 2010-10-08 00:24:22 +00:00