~jorgecs10/do-plugins/quodlibet-plugin

« back to all changes in this revision

Viewing changes to QuodLibet/src/PlayPauseAction.cs

  • Committer: Jorge Cob
  • Date: 2009-05-07 07:35:13 UTC
  • Revision ID: jorgecs10@gmail.com-20090507073513-n2cxazsd3327cdo6
Actions added: next, previous

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  PlayPauseAction.cs
 
2
//
 
3
//  GNOME Do is the legal property of its developers, whose names are too numerous
 
4
//  to list here.  Please refer to the COPYRIGHT file distributed with this
 
5
//  source distribution.
 
6
//
 
7
//  This program is free software: you can redistribute it and/or modify
 
8
//  it under the terms of the GNU General Public License as published by
 
9
//  the Free Software Foundation, either version 3 of the License, or
 
10
//  (at your option) any later version.
 
11
//
 
12
//  This program is distributed in the hope that it will be useful,
 
13
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
//  GNU General Public License for more details.
 
16
//
 
17
//  You should have received a copy of the GNU General Public License
 
18
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
1
19
 
2
20
using System;
3
21
using System.Collections.Generic;
 
22
using System.Diagnostics;
4
23
 
5
24
using Do.Universe;
6
25
 
7
26
namespace Do.QuodLibet {
8
27
        
9
 
        public class PlayPauseAction: Act {
 
28
        public class PlayPauseAction: AbstractPlaybackAction {
10
29
                
11
 
                public PlayPauseAction() {
12
 
                }
 
30
                public PlayPauseAction() {}
13
31
                
14
32
                public override string Name {
15
 
                        get {
16
 
                                return "Play-Pause";
17
 
                        }
 
33
                        get { return "Play/Pause"; }
18
34
                }
19
35
 
20
36
                public override string Description {
21
 
                        get {
22
 
                                return "Alternates play-pause music in QuodLibet";
23
 
                        }
 
37
                        get { return "Alternates play-pause music in QuodLibet"; }
24
38
                }
25
39
                
26
40
                public override string Icon {
27
41
                        get {
28
 
                                // quodlibet --status
29
 
                                return "media-playback-play";
30
 
                        }
31
 
                }
32
 
                
33
 
                public override IEnumerable<Type> SupportedItemTypes {
34
 
                        get {
35
 
                                yield return typeof(IApplicationItem);
 
42
                                /*string status = this.getStatus();
 
43
                                
 
44
                                if(status.StartsWith("playing"))
 
45
                                        return "media-playback-pause";*/
 
46
                                
 
47
                                return "media-playback-start";
36
48
                        }
37
49
                }
38
50
 
39
51
                public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modItems)
40
52
                {
41
 
                        System.Diagnostics.Process.Start ("quodlibet --play-pause");
 
53
                        Process.Start(exec, "--play-pause");
42
54
            return null;
43
 
 
44
55
                }
45
56
 
46
57
        }