~ubuntu-branches/ubuntu/gutsy/kde4libs/gutsy

« back to all changes in this revision

Viewing changes to solid/backends/fakehw/fakecamera.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-02-21 11:00:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070221110012-6kw8khr9knv6lmg1
Tags: 3.80.3-0ubuntu1
New upstream unstable release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  This file is part of the KDE project
 
2
    Copyright (C) 2006 Kevin Ottens <ervin@kde.org>
 
3
 
 
4
    This library is free software; you can redistribute it and/or
 
5
    modify it under the terms of the GNU Library General Public
 
6
    License version 2 as published by the Free Software Foundation.
 
7
 
 
8
    This library is distributed in the hope that it will be useful,
 
9
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
    Library General Public License for more details.
 
12
 
 
13
    You should have received a copy of the GNU Library General Public License
 
14
    along with this library; see the file COPYING.LIB.  If not, write to
 
15
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 
16
    Boston, MA 02110-1301, USA.
 
17
 
 
18
*/
 
19
 
 
20
#include "fakecamera.h"
 
21
 
 
22
FakeCamera::FakeCamera( FakeDevice *device )
 
23
    : FakeCapability( device )
 
24
{
 
25
 
 
26
}
 
27
 
 
28
FakeCamera::~FakeCamera()
 
29
{
 
30
 
 
31
}
 
32
 
 
33
Solid::Camera::AccessType FakeCamera::accessMethod() const
 
34
{
 
35
    QString method = fakeDevice()->property( "accessMethod" ).toString();
 
36
 
 
37
    if ( method=="storage" )
 
38
    {
 
39
        return Solid::Camera::MassStorage;
 
40
    }
 
41
    else if ( method=="ptp" )
 
42
    {
 
43
        return Solid::Camera::Ptp;
 
44
    }
 
45
    else
 
46
    {
 
47
        return Solid::Camera::Proprietary;
 
48
    }
 
49
}
 
50
 
 
51
bool FakeCamera::isGphotoSupported() const
 
52
{
 
53
    return fakeDevice()->property( "gphotoSupport" ).toBool();
 
54
}
 
55
 
 
56
#include "fakecamera.moc"