Initial commit.
[euphoria.git] / data / themes / winter / programs / buttons.edc
1 BUTTON_PROG("prev", "playback.prev")
2 //BUTTON_PROG("rew", "SEEK_BACK")
3 BUTTON_PROG3("rew", "SEEK_BACK_START", "SEEK_BACK_STOP")
4 //BUTTON_PROG("play", "playback.play")
5 //BUTTON_PROG("pause", "playback.pause")
6 TOGGLE_BUTTON_PROG("play", "playback.play", "playback.pause")
7 //BUTTON_PROG("ff", "SEEK_FORWARD")
8 BUTTON_PROG3("ff", "SEEK_FORWARD_START", "SEEK_FORWARD_STOP")
9 BUTTON_PROG("next", "playback.next")
10
11
12 BUTTON_PROG("pl", "")
13 BUTTON_PROG("x", "close")
14
15
16 BUTTON_PROG("plus", "file_dialog.open")
17 BUTTON_PROG("minus", "PLAYLIST_DEL")
18 BUTTON_PROG("edit", "")
19
20
21       program {                 
22         name, "play-started"; 
23         signal, "PLAYBACK_STATE_PLAYING"; 
24         source, "*"; 
25         action, STATE_SET "toggled" 0.0; 
26         transition, LINEAR 0.0; 
27         target, "play"; 
28         target, "play-2"; 
29       } 
30       program {                 
31         name, "play-stopped"; 
32         signal, "PLAYBACK_STATE_STOPPED"; 
33         source, "*"; 
34         action, STATE_SET "default" 0.0; 
35         transition, LINEAR 0.0; 
36         target, "play"; 
37         target, "play-2"; 
38       }