diff options
Diffstat (limited to 'src/YalpClients/EflClient/yalp_gui.edc')
| -rwxr-xr-x | src/YalpClients/EflClient/yalp_gui.edc | 116 |
1 files changed, 99 insertions, 17 deletions
diff --git a/src/YalpClients/EflClient/yalp_gui.edc b/src/YalpClients/EflClient/yalp_gui.edc index 85ab93e..516c61b 100755 --- a/src/YalpClients/EflClient/yalp_gui.edc +++ b/src/YalpClients/EflClient/yalp_gui.edc @@ -205,7 +205,75 @@ collections } } - + part + { + name: "stop_buttonframe"; + type: SWALLOW; + mouse_events: 1; + description + { + state: "default" 0.0; + color: 30 89 114 175; + rel1 + { + relative: 0.45 0.85; + offset: 0 0; + } + rel2 + { + relative: 0.65 0.9; + offset: 0 0; + } + } + description + { + state: "default" 1.0; + color: 0 0 0 0; + rel1 + { + relative: 0.0 0.85; + } + rel2 + { + relative: -0.5 0.9; + } + } + } + + part + { + name: "hide_buttonframe"; + type: SWALLOW; + mouse_events: 1; + description + { + state: "default" 0.0; + color: 30 89 114 175; + rel1 + { + relative: 0.75 0.85; + offset: 0 0; + } + rel2 + { + relative: 0.95 0.9; + offset: 0 0; + } + } + description + { + state: "default" 1.0; + color: 0 0 0 0; + rel1 + { + relative: 0.0 0.85; + } + rel2 + { + relative: -0.5 0.9; + } + } + } part { @@ -253,46 +321,60 @@ collections target: "searchframe"; target: "find_buttonframe"; target: "medialist_buttonframe"; + target: "stop_buttonframe"; + target: "hide_buttonframe"; target: "medialist"; target: "searcharea"; transition:SINUSOIDAL 1; } + program { - name: "show_frames"; - source: "video"; - //source: "main"; + name: "hide_frames"; + source: "hide_buttonframe"; signal: "mouse,clicked,1"; - action: STATE_SET "default" 0.0; - target: "find_buttonframe"; + action: STATE_SET "default" 1.0; target: "searchframe"; + target: "find_buttonframe"; target: "medialist_buttonframe"; + target: "stop_buttonframe"; + target: "hide_buttonframe"; target: "medialist"; target: "searcharea"; transition:SINUSOIDAL 1; } - /* program { - name: "button_clicked_signal_program"; + name: "show_frames_video"; + source: "video"; + //source: "main"; signal: "mouse,clicked,1"; - source: "medialist"; - - action: SIGNAL_EMIT "hide_frames" "medialist"; + action: STATE_SET "default" 0.0; + target: "find_buttonframe"; + target: "searchframe"; + target: "medialist_buttonframe"; + target: "stop_buttonframe"; + target: "hide_buttonframe"; + target: "medialist"; + target: "searcharea"; + transition:SINUSOIDAL 1; } program { - name: "handle_python_signal_hide"; - signal: "signal_from_python"; - - action: STATE_SET "default" 1.0; - target: "searchframe"; + name: "show_frames_main"; + source: "main"; + signal: "mouse,clicked,1"; + action: STATE_SET "default" 0.0; target: "find_buttonframe"; + target: "searchframe"; + target: "medialist_buttonframe"; + target: "stop_buttonframe"; + target: "hide_buttonframe"; target: "medialist"; target: "searcharea"; + transition:SINUSOIDAL 1; } - */ } } } |
