97 lines
2.9 KiB
C++
97 lines
2.9 KiB
C++
/*
|
|
Copyright 2006 Kevin Ottens <ervin@kde.org>
|
|
|
|
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 SOLID_IFACES_OPTICALDISC_H
|
|
#define SOLID_IFACES_OPTICALDISC_H
|
|
|
|
#include <solid-lite/ifaces/storagevolume.h>
|
|
#include <solid-lite/opticaldisc.h>
|
|
|
|
namespace Solid
|
|
{
|
|
namespace Ifaces
|
|
{
|
|
/**
|
|
* This device interface is available on optical discs.
|
|
*
|
|
* An optical disc is a volume that can be inserted in a cdrom drive.
|
|
*/
|
|
class OpticalDisc : virtual public StorageVolume
|
|
{
|
|
public:
|
|
/**
|
|
* Destroys an OpticalDisc object.
|
|
*/
|
|
~OpticalDisc() override;
|
|
|
|
|
|
/**
|
|
* Retrieves the content types this disc contains (audio, video,
|
|
* data...).
|
|
*
|
|
* @return the flag set indicating the available contents
|
|
*/
|
|
virtual Solid::OpticalDisc::ContentTypes availableContent() const = 0;
|
|
|
|
/**
|
|
* Retrieves the disc type (cdr, cdrw...).
|
|
*
|
|
* @return the disc type
|
|
*/
|
|
virtual Solid::OpticalDisc::DiscType discType() const = 0;
|
|
|
|
/**
|
|
* Indicates if it's possible to write additional data to the disc.
|
|
*
|
|
* @return true if the disc is appendable, false otherwise
|
|
*/
|
|
virtual bool isAppendable() const = 0;
|
|
|
|
/**
|
|
* Indicates if the disc is blank.
|
|
*
|
|
* @return true if the disc is blank, false otherwise
|
|
*/
|
|
virtual bool isBlank() const = 0;
|
|
|
|
/**
|
|
* Indicates if the disc is rewritable.
|
|
*
|
|
* A disc is rewritable if you can write on it several times.
|
|
*
|
|
* @return true if the disc is rewritable, false otherwise
|
|
*/
|
|
virtual bool isRewritable() const = 0;
|
|
|
|
/**
|
|
* Retrieves the disc capacity (that is the maximum size of a
|
|
* volume could have on this disc).
|
|
*
|
|
* @return the capacity of the disc in bytes
|
|
*/
|
|
virtual qulonglong capacity() const = 0;
|
|
};
|
|
}
|
|
}
|
|
|
|
Q_DECLARE_INTERFACE(Solid::Ifaces::OpticalDisc, "org.kde.Solid.Ifaces.OpticalDisc/0.1")
|
|
|
|
#endif
|