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