diff options
| author | Nicole Vreden <damba@slartibartfast.traut> | 2009-12-30 17:22:10 +0100 |
|---|---|---|
| committer | Nicole Vreden <damba@slartibartfast.traut> | 2009-12-30 17:22:10 +0100 |
| commit | d628ac057ad367c7332fda91c7504ac2fd82cf0e (patch) | |
| tree | 734d90bfdcc37aaf539bbd68014477c8108f604b /src | |
| parent | 88eea903043e643204d1b9773ef40452fadfc56d (diff) | |
Python-Elementary: List Example
- part_swallow works, list is swallowed into edje-part 'list'
- mouse-events of edje-part 'list' are activated
- function huhu() is called by clicking on a list-element
- Positioning of list doesn't work
Signed-off-by: Nicole Vreden <damba@mecka.netx>
Diffstat (limited to 'src')
| -rw-r--r-- | src/YalpClients/EflClient/list_test.edc | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/YalpClients/EflClient/list_test.edc b/src/YalpClients/EflClient/list_test.edc index f3b42e0..079d8d5 100644 --- a/src/YalpClients/EflClient/list_test.edc +++ b/src/YalpClients/EflClient/list_test.edc @@ -2,7 +2,8 @@ collections { group { - name: "list"; + name: "huhu"; + min: 100 100; parts { part @@ -12,7 +13,7 @@ collections mouse_events: 0; description { - state:"default" 0.0; + state: "default" 0.0; rel1 { relative: 0.0 0.0; @@ -27,21 +28,21 @@ collections } part { - name: "video"; + name: "list"; type: SWALLOW; + mouse_events: 1; description { - state: "default"0.0; - aspect: 1.7 1.8; + state: "default" 0.0; + color: 30 89 114 175; + rel1 { - relative: 0.0 0.0; - offset: 0 0; + relative: 0.5 0.5; } rel2 { relative: 1.0 1.0; - offset: 0 0; } } } |
