Initial commit.
[euphoria.git] / data / themes / iio / programs / playlist.edc
1
2 program { name, "selected_mouse"; signal, "mouse,clicked,1"; source, "*";
3         action, SIGNAL_EMIT "PLAYLIST_ITEM_SELECTED" ""; }
4
5 program { name, "selected"; signal, "PLAYLIST_ITEM_SELECTED"; source, "";
6         action, STATE_SET "selected" 0.0; transition, LINEAR 0.2; 
7         target, "title"; target, "duration"; target, "background"; }
8
9 program { name, "unselected"; signal, "PLAYLIST_ITEM_UNSELECTED"; source, "";
10         action, STATE_SET "default" 0.0; transition, LINEAR 0.2; 
11         target, "title"; target, "duration"; target, "background"; }
12
13 program { name, "dbl_clicked"; signal, "mouse,down,1,double"; source, "*";
14         action, SIGNAL_EMIT "PLAYLIST_ITEM_PLAY" ""; }
15
16 program { name, "scroll_up"; signal, "mouse,wheel,0,-1"; source, "*";
17         action, SIGNAL_EMIT "PLAYLIST_SCROLL_UP" ""; }
18
19 program { name, "scroll_down"; signal, "mouse,wheel,0,1"; source, "*";
20         action, SIGNAL_EMIT "PLAYLIST_SCROLL_DOWN" ""; }
21