Handle broadcast_playlist_loaded.
[euphoria.git] / data / themes / default / default_playlist_progs.edc
1 /*** Euphoria Default theme - by Ben Rockwood ***/
2 /***    Playlist Item Programs                ***/
3
4                         program {
5                                 name, "selected_mouse";
6                                 signal, "mouse,clicked,1";
7                                 source, "*";
8                                 action, SIGNAL_EMIT "PLAYLIST_ITEM_SELECTED" "";
9                         }
10
11                         program {
12                                 name, "selected";
13                                 signal, "PLAYLIST_ITEM_SELECTED";
14                                 source, "";
15                                 action, STATE_SET "selected" 0.0;
16                                 transition, LINEAR 0.2;
17                                 target, "background";
18                         }
19
20                         program {
21                                 name, "unselected";
22                                 signal, "PLAYLIST_ITEM_UNSELECTED";
23                                 source, "";
24                                 action, STATE_SET "default" 0.0;
25                                 transition, LINEAR 0.2;
26                                 target, "background";
27                         }
28
29                         program {
30                                 name, "dbl_clicked";
31                                 signal, "mouse,down,1,double";
32                                 source, "*";
33                                 action, SIGNAL_EMIT "PLAYLIST_ITEM_PLAY" "";
34                         }
35
36                         program {
37                                 name, "scroll_up";
38                                 signal, "mouse,wheel,0,-1";
39                                 source, "*";
40                                 action, SIGNAL_EMIT "PLAYLIST_SCROLL_UP" "";
41                         }
42
43                         program {
44                                 name, "scroll_down";
45                                 signal, "mouse,wheel,0,1";
46                                 source, "*";
47                                 action, SIGNAL_EMIT "PLAYLIST_SCROLL_DOWN" "";
48                         }
49