~kelemeng/banshee/bug743928

« back to all changes in this revision

Viewing changes to src/Backends/Banshee.Hal/Hal/Volume.cs

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2011-05-14 22:25:36 UTC
  • mfrom: (6.3.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20110514222536-u1x7ikxdqkmfvyuz
Tags: 2.1.0-1ubuntu1
* [2396c18] Merge from Debian Unstable, remaining changes:
  + Enable SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and recommnd u1ms and soundmenu extensions
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + Create the U1MS widget earlier and bump libu1 requirement
* [9d7c600] Drop upstreamed u1ms-initialize-earlier patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
// Volume.cs
3
 
//
4
 
// Author:
5
 
//   Aaron Bockover <abockover@novell.com>
6
 
//
7
 
// Copyright (C) 2006-2008 Novell, Inc.
8
 
//
9
 
// Permission is hereby granted, free of charge, to any person obtaining
10
 
// a copy of this software and associated documentation files (the
11
 
// "Software"), to deal in the Software without restriction, including
12
 
// without limitation the rights to use, copy, modify, merge, publish,
13
 
// distribute, sublicense, and/or sell copies of the Software, and to
14
 
// permit persons to whom the Software is furnished to do so, subject to
15
 
// the following conditions:
16
 
//
17
 
// The above copyright notice and this permission notice shall be
18
 
// included in all copies or substantial portions of the Software.
19
 
//
20
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21
 
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
 
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23
 
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24
 
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25
 
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26
 
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
 
//
28
 
 
29
 
using System;
30
 
using System.Collections;
31
 
using System.Collections.Generic;
32
 
 
33
 
using NDesk.DBus;
34
 
 
35
 
namespace Hal
36
 
{
37
 
    [Interface("org.freedesktop.Hal.Device.Volume")]
38
 
    internal interface IVolume
39
 
    {
40
 
        void Mount(string [] args);
41
 
        void Unmount(string [] args);
42
 
        void Eject(string [] args);
43
 
    }
44
 
 
45
 
    public class Volume : Device
46
 
    {
47
 
        public Volume(string udi) : base(udi)
48
 
        {
49
 
        }
50
 
 
51
 
        public void Mount()
52
 
        {
53
 
            Mount(new string [] { String.Empty });
54
 
        }
55
 
 
56
 
        public void Mount(params string [] args)
57
 
        {
58
 
            CastDevice<IVolume>().Mount(args);
59
 
        }
60
 
 
61
 
        public void Unmount()
62
 
        {
63
 
            Unmount(new string [] { String.Empty });
64
 
        }
65
 
 
66
 
        public void Unmount(params string [] args)
67
 
        {
68
 
            CastDevice<IVolume>().Unmount(args);
69
 
        }
70
 
 
71
 
        public void Eject()
72
 
        {
73
 
            Eject(new string [] { String.Empty });
74
 
        }
75
 
 
76
 
        public void Eject(params string [] args)
77
 
        {
78
 
            CastDevice<IVolume>().Eject(args);
79
 
        }
80
 
    }
81
 
}