blob: f639059974f93b510156554c68b45d0b67b3f231 (
plain) (
tree)
|
|
/***************************************************************************
* Copyright (C) 2009-2020 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* 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. *
***************************************************************************/
#include <QMessageBox>
#include <cdio/version.h>
#include "settingsdialog.h"
#include "decoder_cdaudio.h"
#include "decodercdaudiofactory.h"
// DecoderCDAudioFactory
bool DecoderCDAudioFactory::canDecode(QIODevice *) const
{
return false;
}
DecoderProperties DecoderCDAudioFactory::properties() const
{
DecoderProperties properties;
properties.name = tr("CD Audio Plugin");
properties.shortName = "cdaudio";
properties.protocols << "cdda";
properties.hasAbout = true;
properties.noInput = true;
properties.hasSettings = true;
return properties;
}
Decoder *DecoderCDAudioFactory::create(const QString &url, QIODevice *input)
{
Q_UNUSED(input);
return new DecoderCDAudio(url);
}
QList<TrackInfo *> DecoderCDAudioFactory::createPlayList(const QString &path, TrackInfo::Parts parts, QStringList *)
{
QList<TrackInfo*> list;
if(path.contains("#"))
return list;
QString device_path = path;
device_path.remove("cdda://");
QList <CDATrack> tracks = DecoderCDAudio::generateTrackList(device_path, parts);
for(const CDATrack &t : qAsConst(tracks))
{
list << new TrackInfo(t.info);
}
return list;
}
MetaDataModel* DecoderCDAudioFactory::createMetaDataModel(const QString &path, bool readOnly)
{
Q_UNUSED(readOnly);
Q_UNUSED(path);
return nullptr;
}
void DecoderCDAudioFactory::showSettings(QWidget *parent)
{
SettingsDialog *d = new SettingsDialog(parent);
d->show();
}
void DecoderCDAudioFactory::showAbout(QWidget *parent)
{
QMessageBox::about (parent, tr("About CD Audio Plugin"),
tr("Qmmp CD Audio Plugin")+"\n"+
QString(tr("Compiled against libcdio-%1")).arg(CDIO_VERSION) + "\n" +
tr("Written by: Ilya Kotov <forkotov02@ya.ru>")+"\n"+
tr("Usage: open cdda:/// using Add URL dialog or command line"));
}
QString DecoderCDAudioFactory::translation() const
{
return QLatin1String(":/cdaudio_plugin_");
}
|