-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlsMp3Converter.h
53 lines (33 loc) · 951 Bytes
/
lsMp3Converter.h
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
#ifndef LSMP3CONVERTER_H
#define LSMP3CONVERTER_H
#include "qprocess.h"
#include <QObject>
#include <QPointer>
#include <QQueue>
class Einzelbeitrag;
class lsGlobalSettings;
class QProcess;
class lsMp3Converter : public QObject
{
Q_OBJECT
public:
explicit lsMp3Converter(lsGlobalSettings* globalSettings, QObject *parent = 0);
~lsMp3Converter();
signals:
void signalFinished( lsMp3Converter* );
void signalProgress( int percent );
public:
bool convert( Einzelbeitrag* toConvert, const QDate& date );
void setSubPath( const QString& newSubPath ) { this->subPath = newSubPath; }
private slots:
void slotFinished(int code, QProcess::ExitStatus exitStatus);
void slotProcOutput();
private:
QPointer<lsGlobalSettings> globalSettings;
QQueue<QPair<QPointer<Einzelbeitrag>,QDate> > queue;
QProcess* proc;
QPointer<Einzelbeitrag> currentProcessing;
bool isProcessing;
QString subPath;
};
#endif // LSMP3CONVERTER_H