blob: d1c1237ce0b857069cb12f1448c69e71c0c5825c (
plain)
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
|
#ifndef REPLAYGAINPLUGINLOADER_H
#define REPLAYGAINPLUGINLOADER_H
#include "pluginloaderbase.h"
/**
* @short The complete data, how to use the backend
* @author Daniel Faust <[email protected]>
* @version 0.3
*/
class ReplayGainPlugin
{
public:
/**
* Constructor
*/
ReplayGainPlugin();
/**
* Destructor
*/
virtual ~ReplayGainPlugin();
QString filePathName; // the file name of th plugin (needed to detect write permissions)
struct Info
{
int version; // the version of our plugin (v0.2.1 = 201, v11.3 = 110300)
QString name; // the name of our plugin
QString author; // the author of the plugin
QString about; // a short information aboue the plugin
} info;
struct ReplayGain
{
//PluginLoaderBase::FeatureLevel level;
int rank;
QString bin;
QString param;
QString silent_param;
QStringList mime_types;
QString in_files;
QString output_single;
QString output_multiple;
QString force;
QString skip;
QString track; // TODO remove track and album (put them into param)
QString album;
QString remove;
/*struct Test // obsolete
{
bool enabled;
QString param;
QString output_track;
QString output_album;
} test;*/
} replaygain;
};
/**
* @short The plugin loader for the replaygain plugins
* @author Daniel Faust <[email protected]>
* @version 0.3
*/
class ReplayGainPluginLoader : public PluginLoaderBase
{
Q_OBJECT
public:
/**
* Constructor
*/
ReplayGainPluginLoader();
/**
* Destructor
*/
virtual ~ReplayGainPluginLoader();
/** is this file a replaygain plugin and loadable? */
int verifyFile( QString );
/** load a given file */
ReplayGainPlugin* loadFile( QString );
};
#endif // REPLAYGAINPLUGINLOADER_H
|