~jorgecs10/do-plugins/quodlibet-plugin

« back to all changes in this revision

Viewing changes to QuodLibet/src/NextAction.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
//  NextAction.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/>.
 
19
 
 
20
using System;
 
21
using System.Collections.Generic;
 
22
using System.Diagnostics;
 
23
 
 
24
using Do.Universe;
 
25
 
 
26
namespace Do.QuodLibet {
 
27
        
 
28
        public class NextAction: AbstractPlaybackAction {
 
29
                
 
30
                public NextAction() {}
 
31
                
 
32
                public override string Name {
 
33
                        get { return "Next"; }
 
34
                }
 
35
 
 
36
                public override string Description {
 
37
                        get { return "Skip to the next track in QuodLibet"; }
 
38
                }
 
39
                
 
40
                public override string Icon {
 
41
                        get { return "media-skip-forward"; }
 
42
                }
 
43
 
 
44
                public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modItems)
 
45
                {
 
46
                        Process.Start(exec, "--next");
 
47
            return null;
 
48
                }
 
49
 
 
50
        }
 
51
}