mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
131 lines
3.5 KiB
C++
131 lines
3.5 KiB
C++
|
|
/*
|
|
* soldevice.h
|
|
*
|
|
* Copyright (C) 2009 David Hubner <hubnerd@ntlworld.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef SOLDEVICE
|
|
#define SOLDEVICE
|
|
|
|
//QT
|
|
#include <QtGui/qtreewidget.h>
|
|
#include <QTreeWidget>
|
|
|
|
//Solid
|
|
#include <solid/device.h>
|
|
#include <solid/deviceinterface.h>
|
|
#include <solid/processor.h>
|
|
#include <solid/networkinterface.h>
|
|
#include <solid/storagedrive.h>
|
|
#include <solid/storagevolume.h>
|
|
#include <solid/storageaccess.h>
|
|
#include <solid/audiointerface.h>
|
|
#include <solid/button.h>
|
|
#include <solid/portablemediaplayer.h>
|
|
#include <solid/camera.h>
|
|
#include <solid/battery.h>
|
|
#include <solid/acadapter.h>
|
|
#include <solid/video.h>
|
|
#include <solid/graphic.h>
|
|
#include <solid/predicate.h>
|
|
|
|
//KDE
|
|
#include <kicon.h>
|
|
#include <kdebug.h>
|
|
#include <klocale.h>
|
|
|
|
// Local
|
|
#include "qvlistlayout.h"
|
|
|
|
class QVListLayout;
|
|
|
|
class SolDevice : public QTreeWidgetItem
|
|
{
|
|
|
|
public:
|
|
SolDevice(const Solid::DeviceInterface::Type &);
|
|
SolDevice(const Solid::DeviceInterface::Type &, const QString &);
|
|
SolDevice(QTreeWidgetItem *);
|
|
SolDevice(QTreeWidgetItem *, const Solid::Device &);
|
|
|
|
QIcon deviceIcon() const;
|
|
Solid::Device *device();
|
|
Solid::DeviceInterface::Type deviceType() const;
|
|
|
|
template <class IFace> const IFace *interface()
|
|
{
|
|
if(deviceSet)
|
|
{
|
|
IFace *dev = tiedDevice.as<const IFace>();
|
|
if(!dev)
|
|
{
|
|
kWarning() << i18n("Device unable to be cast to correct device");
|
|
}
|
|
return dev;
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
template <class IFace> const IFace *interface(const Solid::Device &device)
|
|
{
|
|
IFace *dev = device.as<const IFace>();
|
|
if(!dev) {
|
|
kWarning() << i18n("Device unable to be cast to correct device");
|
|
}
|
|
return dev;
|
|
}
|
|
|
|
template <class IFace> void createDeviceChildren(
|
|
QTreeWidgetItem *treeParent, const QString &parentUid, const Solid::DeviceInterface::Type &type)
|
|
{
|
|
const QList<Solid::Device> list = Solid::Device::listFromType(type, parentUid);
|
|
|
|
foreach(const Solid::Device &dev, list)
|
|
{
|
|
new IFace(treeParent,dev);
|
|
}
|
|
}
|
|
|
|
void setDeviceIcon(const KIcon &);
|
|
void setDeviceToolTip(const QString &);
|
|
|
|
virtual QVListLayout *infoPanelLayout();
|
|
virtual void addItem(Solid::Device dev) { new SolDevice(this,dev); };
|
|
virtual void refreshName() { setDefaultDeviceText(); };
|
|
|
|
QString udi() const;
|
|
bool isDeviceSet();
|
|
|
|
protected:
|
|
|
|
void setDeviceText(const QString &);
|
|
|
|
virtual void setDefaultDeviceToolTip();
|
|
virtual void setDefaultDeviceText();
|
|
virtual void setDefaultDeviceIcon();
|
|
virtual void setDefaultListing(const Solid::DeviceInterface::Type &);
|
|
|
|
bool deviceSet;
|
|
QVListLayout *deviceInfoLayout;
|
|
Solid::DeviceInterface::Type deviceTypeHolder;
|
|
Solid::Device tiedDevice;
|
|
};
|
|
|
|
#endif //SOLDEVICE
|