diff options
| author | Nicole Vreden <damba@mecka.net> | 2010-01-06 21:59:05 +0100 |
|---|---|---|
| committer | Nicole Vreden <damba@mecka.net> | 2010-01-06 21:59:05 +0100 |
| commit | 62fa1e3146b9b3201dd04fd929576b7aa268fa70 (patch) | |
| tree | 3f408d892d076eb8e4addfe75c3d950730faa816 /src/YalpClients/EflClient/yalp_gui.edc | |
| parent | 2f8626e02726b4a651b3a40ebba6d2febe9c9848 (diff) | |
Python-EFL-GUI: added buttons and modified lists
- scrolling of lists is now possible
- trying to add elements to playlist
- added play-button
- changed add-button type from edje-rectangle to elementary.Button
- video starts if play-button is clicked
Signed-off-by: Nicole Vreden <damba@mecka.net>
Diffstat (limited to 'src/YalpClients/EflClient/yalp_gui.edc')
| -rw-r--r-- | src/YalpClients/EflClient/yalp_gui.edc | 94 |
1 files changed, 46 insertions, 48 deletions
diff --git a/src/YalpClients/EflClient/yalp_gui.edc b/src/YalpClients/EflClient/yalp_gui.edc index 2f20f66..3ad1132 100644 --- a/src/YalpClients/EflClient/yalp_gui.edc +++ b/src/YalpClients/EflClient/yalp_gui.edc @@ -107,7 +107,7 @@ collections } rel2 { - relative: 0.49 1.0; + relative: 0.49 0.8; offset: 0 0; } } @@ -132,8 +132,43 @@ collections part { + name: "playlist_buttonframe"; + type: SWALLOW; + mouse_events: 1; + description + { + state: "default" 0.0; + align: 0 0; + color: 30 89 114 150; + rel1 + { + relative: 0.66 0.85; + } + rel2 + { + relative: 0.86 0.9; + } + } + description + { + state: "default" 1.0; + align: 0 0; + color: 0 0 0 0; + rel1 + { + relative: 1.0 0.85; + } + rel2 + { + relative: 1.0 0.9; + } + } + } + + part + { name: "playlist"; - type: RECT; + type: SWALLOW; mouse_events: 1; description { @@ -147,7 +182,7 @@ collections } rel2 { - relative: 1.0 1.0; + relative: 1.0 0.8; offset: 0 0; } } @@ -158,7 +193,7 @@ collections color: 0 0 0 0; rel1 { - relative: 0.995 0.01; + relative: 1.0 0.01; offset: 0 0; } rel2 @@ -286,13 +321,13 @@ collections part { - name: "add_button"; - type: RECT; + name: "medialist_buttonframe"; + type: SWALLOW; mouse_events: 1; description { state: "default" 0.0; - color: 211 168 234 255; + color: 30 89 114 175; rel1 { relative: 0.15 0.85; @@ -314,49 +349,12 @@ collections } rel2 { - relative: 0.005 0.9; - } - } - } - - part - { - name: "buttontext_add"; - type: TEXT; - mouse_events: 0; - description - { - color: 255 255 255 255; - rel1 - { - relative: 0.17 0.86; - } - rel2 - { - relative: 0.33 0.89 ; - } - text - { - text: "Add to Playlist"; - font:"VeraBd.ttf"; - size: 12; - } - } - description - { - state: "default" 1.0; - rel1 - { - relative: 0.0 0.85; - } - rel2 - { - relative: 0.0 0.9; + relative: -0.5 0.9; } } } - } + programs { program @@ -366,13 +364,13 @@ collections signal: "mouse,clicked,1"; action: STATE_SET "default" 1.0; target: "searchframe"; + target: "medialist_buttonframe"; + target: "playlist_buttonframe"; target: "findbutton"; target: "buttontext_find"; target: "medialist"; target: "playlist"; - target: "add_button"; target: "controlframe"; - target: "buttontext_add"; transition:SINUSOIDAL 1; } } |
