/usr/include/qmmp/decoderfactory.h is in libqmmp-dev 0.7.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | /***************************************************************************
* Copyright (C) 2006-2012 by Ilya Kotov *
* forkotov02@hotmail.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. *
***************************************************************************/
#ifndef DECODERFACTORY_H
#define DECODERFACTORY_H
class QObject;
class QString;
class QIODevice;
class QWidget;
class QTranslator;
class QStringList;
class Decoder;
class Output;
class FileInfo;
class MetaDataModel;
/*! @brief Helper class to store input plugin properties.
* @author Ilya Kotov <forkotov02@hotmail.ru>
*/
class DecoderProperties
{
public:
/*!
* Constructor
*/
DecoderProperties()
{
hasAbout = false;
hasSettings = false;
noInput = false;
noOutput = false;
priority = 0;
}
QString name; /*!< Input plugin full name */
QString shortName; /*!< Input plugin short name for internal usage */
QStringList filters; /*!< File filters (example: "*.mp3") */
QString description; /*!< File filters description */
QStringList contentTypes; /*!< Supported content types */
QStringList protocols; /*!< A list of supported protocols.
* Should be empty if plugin uses stream input. */
bool hasAbout; /*!< Should be \b true if plugin has about dialog, otherwise \b false */
bool hasSettings; /*!< Should be \b true if plugin has settings dialog, otherwise \b false */
bool noInput; /*!< Should be \b true if plugin has own input, otherwise \b false */
bool noOutput; /*!< Should be \b true if plugin has own output, otherwise \b false */
int priority; /*!< Decoder priority. Decoders with lowest value will be used first */
};
/*! @brief Input plugin interface (decoder factory).
* @author Ilya Kotov <forkotov02@hotmail.ru>
*/
class DecoderFactory
{
public:
/*!
* Object destructor.
*/
virtual ~DecoderFactory() {}
/*!
* Returns \b true if plugin supports \b source, otherwise returns \b false
*/
virtual bool supports(const QString &source) const = 0;
/*!
* Returns \b true if plugin can decode data provided by \b d, otherwise returns \b false
*/
virtual bool canDecode(QIODevice *d) const = 0;
/*!
* Returns general plugin properties.
*/
virtual const DecoderProperties properties() const = 0;
/*!
* Creates decoder object.
* @param path File path
* @param input Input data (if required)
*/
virtual Decoder *create(const QString &path , QIODevice *input = 0) = 0;
/*!
* Extracts metadata and audio information from file \b path and returns a list of FileInfo items.
* One file may contain several playlist items (for example: cda disk or flac with embedded cue)
* @param fileName File path.
* @param useMetaData Metadata usage (\b true - use, \b - do not use)
*/
virtual QList<FileInfo *> createPlayList(const QString &fileName, bool useMetaData) = 0;
/*!
* Creats metadata object, which provides full access to file tags.
* @param path File path.
* @param parent Parent object.
* @return MetaDataModel pointer.
*/
virtual MetaDataModel* createMetaDataModel(const QString &path, QObject *parent = 0) = 0;
/*!
* Shows settings dialog.
* @param parent Parent widget.
*/
virtual void showSettings(QWidget *parent) = 0;
/*!
* Shows about dialog.
* @param parent Parent widget.
*/
virtual void showAbout(QWidget *parent) = 0;
/*!
* Creates QTranslator object of the system locale. Should return 0 if translation doesn't exist.
* @param parent Parent object.
*/
virtual QTranslator *createTranslator(QObject *parent) = 0;
};
Q_DECLARE_INTERFACE(DecoderFactory, "DecoderFactory/1.0")
#endif
|