You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
1.7 KiB
90 lines
1.7 KiB
//
|
|
// C++ Interface: k9cddrive
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef K9CDDRIVE_H
|
|
#define K9CDDRIVE_H
|
|
#include "k9common.h"
|
|
|
|
#include <tqobject.h>
|
|
|
|
#include <tqstring.h>
|
|
#include <tqstringlist.h>
|
|
#include <tqvaluelist.h>
|
|
#ifndef HAVE_HAL
|
|
#include <k3bdevice.h>
|
|
#include <k3bdevicemanager.h>
|
|
#endif
|
|
|
|
|
|
/**
|
|
*@author
|
|
*/
|
|
class k9HalDevice;
|
|
class k9HalConnection;
|
|
|
|
class k9CdDrive : public TQObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
k9CdDrive();
|
|
~k9CdDrive();
|
|
int num;
|
|
TQString name;
|
|
TQString device;
|
|
bool canWriteCDR;
|
|
bool canReadDVD;
|
|
bool canWriteDVD;
|
|
|
|
void setWriteSpeeds(const TQValueList< int >& _value);
|
|
TQValueList< int > getWriteSpeeds() const;
|
|
|
|
#ifdef HAVE_HAL
|
|
void setDevice(k9HalDevice* _value) { m_Device = _value;}
|
|
|
|
k9HalDevice* getDevice() { return m_Device;}
|
|
#endif
|
|
private:
|
|
TQValueList <int> writeSpeeds;
|
|
#ifdef HAVE_HAL
|
|
k9HalDevice *m_Device;
|
|
#endif
|
|
};
|
|
|
|
class k9CdDrives : public TQObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
k9CdDrives();
|
|
~k9CdDrives();
|
|
/** No descriptions */
|
|
int count();
|
|
/** No descriptions */
|
|
k9CdDrive * getDrive(int num);
|
|
void eject(const TQString & device);
|
|
void scanDrives();
|
|
public slots:
|
|
void deviceAdded(k9HalDevice *device);
|
|
void deviceRemoved(k9HalDevice *device);
|
|
signals:
|
|
void deviceAdded(k9CdDrive *drive);
|
|
void deviceRemoved(k9CdDrive *drive);
|
|
private: // Private methods
|
|
#ifdef HAVE_HAL
|
|
k9HalConnection *m_connection;
|
|
void addDrive(k9HalDevice *_device);
|
|
#else
|
|
K3bDevice::DeviceManager *m_devMgr;
|
|
#endif
|
|
void readConfig();
|
|
TQPtrList <k9CdDrive> drives;
|
|
};
|
|
#endif
|