~iwarford/do-plugins/inline-google-fix

« back to all changes in this revision

Viewing changes to VolumeControl/src/VolumeItemSource.cs

  • Committer: Alex Launi
  • Date: 2008-07-01 20:02:42 UTC
  • mfrom: (151.1.24 do-plugins)
  • Revision ID: alex@eriktorvaldsonn-20080701200242-l85j12hkp0os19tb
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* VolumeItemSource.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
using System.Collections.Generic;
 
24
using Mono.Unix;
 
25
using Do.Universe;
 
26
 
 
27
namespace VolumeControl
 
28
{
 
29
        public class VolumeItemSource : AbstractItemSource
 
30
        {
 
31
                List<IItem> items;
 
32
                
 
33
                public VolumeItemSource ()
 
34
                {
 
35
                        items = new List<IItem> ();
 
36
                }
 
37
                        
 
38
                public override string Name {
 
39
                        get { return Catalog.GetString ("Volume Actions"); }
 
40
                }
 
41
                
 
42
                public override string Description {
 
43
                        get { return Catalog.GetString ("Adjust your system volume"); }
 
44
                }
 
45
                
 
46
                public override string Icon {
 
47
                        get { return "audio-card"; }
 
48
                }
 
49
                
 
50
                public override Type [] SupportedItemTypes {
 
51
                        get { return new Type [] {
 
52
                                typeof (VolumeDownItem),
 
53
                                typeof (VolumeMuteItem),
 
54
                                typeof (VolumeUnmuteItem),
 
55
                                typeof (VolumeUpItem), };
 
56
                        }
 
57
                }
 
58
                
 
59
                public override ICollection<IItem> Items {
 
60
                        get { return items; }
 
61
                }
 
62
 
 
63
                
 
64
                public override void UpdateItems ()
 
65
                {
 
66
                        items.Clear ();
 
67
                        foreach (IItem vitem in VolumeItems)
 
68
                                items.Add (vitem);
 
69
                }
 
70
                
 
71
                private IItem [] VolumeItems {
 
72
                        get { return new IItem [] {
 
73
                                new VolumeDownItem (),
 
74
                                new VolumeMuteItem (),
 
75
                                new VolumeUnmuteItem (),
 
76
                                new VolumeUpItem (), };
 
77
                        }
 
78
                }
 
79
 
 
80
                
 
81
                
 
82
        }
 
83
}