~karol-bedkowski/do-plugins/putty-fix-324282_load_parameter

« back to all changes in this revision

Viewing changes to Banshee/src/BrowseMediaItems.cs

  • Committer: Alex Launi
  • Date: 2009-01-23 02:23:36 UTC
  • mfrom: (276.4.12 bansheeplugin)
  • Revision ID: alex.launi@gmail.com-20090123022336-z0hf1ycf7pvg5i0d
Add full Banshee plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* BrowseMediaItems.cs
 
2
 *
 
3
 * GNOME Do is the legal property of its developers. Please refer to the
 
4
 * 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
 
 
21
 
 
22
using System;
 
23
 
 
24
using Mono.Unix;
 
25
 
 
26
using Do.Universe;
 
27
 
 
28
namespace Banshee
 
29
{
 
30
        public class BrowseMediaItem : Item 
 
31
        {
 
32
                string name, description;
 
33
                
 
34
                public BrowseMediaItem (string name, string description)
 
35
                {       
 
36
                        this.name = name;
 
37
                        this.description = description;
 
38
                }
 
39
                
 
40
                public override string Name {
 
41
                        get { return name; }
 
42
                }
 
43
                
 
44
                public override string Description {
 
45
                        get { return description; }
 
46
                }
 
47
                
 
48
                public override string Icon {
 
49
                        get { return "media-optical"; }
 
50
                }
 
51
        }
 
52
        
 
53
        public class BrowseArtistMusicItem : BrowseMediaItem
 
54
        {
 
55
                public BrowseArtistMusicItem () :
 
56
                        base (Catalog.GetString ("Browse Artists"),
 
57
                                Catalog.GetString ("Browse Music by Artist"))
 
58
                {
 
59
                }
 
60
                        
 
61
                public override string Icon {
 
62
                        get { return "audio-input-microphone"; }
 
63
                }
 
64
        }
 
65
        
 
66
        public class BrowseAlbumsMusicItem : BrowseMediaItem
 
67
        {
 
68
                public BrowseAlbumsMusicItem () :
 
69
                        base (Catalog.GetString ("Browse Albums"), 
 
70
                                Catalog.GetString ("Browse Music by Album"))
 
71
                {
 
72
                }
 
73
        }
 
74
        
 
75
        public class BrowsePublisherPodcastItem : BrowseMediaItem
 
76
        {
 
77
                public BrowsePublisherPodcastItem () : base (Catalog.GetString ("Browse Podcasts"),
 
78
                        Catalog.GetString ("Browse Podcasts by Publisher"))
 
79
                {
 
80
                }
 
81
        }
 
82
        
 
83
        public class BrowseVideoItem : BrowseMediaItem
 
84
        {
 
85
                public BrowseVideoItem () : base (Catalog.GetString ("Browse Videos"),
 
86
                        Catalog.GetString ("Browse All Videos"))
 
87
                {
 
88
                }
 
89
        }
 
90
}