36 lines
808 B
C++
36 lines
808 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
#include <QCommandLineParser>
|
|
#include <QUrl>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
// parse commandline arguments
|
|
QCommandLineParser parser;
|
|
parser.addPositionalArgument("File list", QCoreApplication::translate("main", "File list."));
|
|
parser.addHelpOption();
|
|
|
|
parser.process(a);
|
|
|
|
QStringList urlStrList = parser.positionalArguments();
|
|
QList<QUrl> urlList;
|
|
for (const QString & str : urlStrList) {
|
|
QUrl url = QUrl::fromLocalFile(str);
|
|
if (url.isValid()) {
|
|
urlList.append(url);
|
|
}
|
|
}
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
if (!urlList.isEmpty()) {
|
|
w.commandlinePlayAudioFiles(urlList);
|
|
}
|
|
|
|
return a.exec();
|
|
}
|