Subversion Repositories Projects

Rev

Rev 77 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 77 Rev 81
Line 18... Line 18...
18
public class MKStatusVoice
18
public class MKStatusVoice
19
    implements Runnable,PlayerListener
19
    implements Runnable,PlayerListener
20
{
20
{
Line 21... Line 21...
21
 
21
 
22
    MKCommunicator mk=null;
22
    MKCommunicator mk=null;
23
    MKMiniCanvas canvas=null;
23
    DUBwiseCanvas canvas=null;
Line 24... Line 24...
24
    Player player;
24
    Player player;
25
   
25
   
26
    public final int PLAYERSTATE_IDLE=0;
26
    public final int PLAYERSTATE_IDLE=0;
Line 27... Line 27...
27
    public final int PLAYERSTATE_PLAYING=1;
27
    public final int PLAYERSTATE_PLAYING=1;
28
    public final int PLAYERSTATE_FIN=2;
28
    public final int PLAYERSTATE_FIN=2;
Line 29... Line 29...
29
 
29
 
30
    int act_player_state=PLAYERSTATE_IDLE;
30
    int act_player_state=PLAYERSTATE_IDLE;
31
    VolumeControl vc;
31
    VolumeControl vc;
32
 
32
 
33
    public MKStatusVoice(MKCommunicator _mk,MKMiniCanvas _canvas)
33
    public MKStatusVoice(MKCommunicator _mk,DUBwiseCanvas _canvas)
34
    {
34
    {