87 lines
2.4 KiB
C++
87 lines
2.4 KiB
C++
/*
|
|
Copyright 2010 Michael Zanetti <mzanetti@kde.org>
|
|
Copyright 2010-2011 Lukas Tinkl <ltinkl@redhat.com>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) version 3, or any
|
|
later version accepted by the membership of KDE e.V. (or its
|
|
successor approved by the membership of KDE e.V.), which shall
|
|
act as a proxy defined in Section 6 of version 3 of the license.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef UDISKSDEVICE_H
|
|
#define UDISKSDEVICE_H
|
|
|
|
#include <ifaces/device.h>
|
|
#include <solid-lite/deviceinterface.h>
|
|
#include <solid-lite/solidnamespace.h>
|
|
|
|
#include <QtDBus/QDBusInterface>
|
|
#include <QtCore/QSet>
|
|
|
|
namespace Solid
|
|
{
|
|
namespace Backends
|
|
{
|
|
namespace UDisks
|
|
{
|
|
|
|
class UDisksDevice : public Solid::Ifaces::Device
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
UDisksDevice(const QString &udi);
|
|
virtual ~UDisksDevice();
|
|
|
|
|
|
virtual QObject* createDeviceInterface(const Solid::DeviceInterface::Type& type);
|
|
virtual bool queryDeviceInterface(const Solid::DeviceInterface::Type& type) const;
|
|
virtual QString description() const;
|
|
virtual QStringList emblems() const;
|
|
virtual QString icon() const;
|
|
virtual QString product() const;
|
|
virtual QString vendor() const;
|
|
virtual QString udi() const;
|
|
virtual QString parentUdi() const;
|
|
|
|
QVariant prop(const QString &key) const;
|
|
bool propertyExists(const QString &key) const;
|
|
QMap<QString, QVariant> allProperties() const;
|
|
|
|
bool isDeviceBlacklisted() const;
|
|
|
|
QString errorToString(const QString & error) const;
|
|
Solid::ErrorType errorToSolidError(const QString & error) const;
|
|
|
|
Q_SIGNALS:
|
|
void changed();
|
|
|
|
private Q_SLOTS:
|
|
void slotChanged();
|
|
|
|
private:
|
|
QString storageDescription() const;
|
|
QString volumeDescription() const;
|
|
mutable QDBusInterface *m_device;
|
|
QString m_udi;
|
|
mutable QVariantMap m_cache;
|
|
|
|
void checkCache(const QString &key) const;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif // UDISKSDEVICE_H
|