2019-09-28 01:18:08 +08:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
2019-10-01 10:37:14 +08:00
|
|
|
#include <QCommandLineParser>
|
|
|
|
#include <QUrl>
|
2019-09-28 01:18:08 +08:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2019-09-29 23:53:29 +08:00
|
|
|
|
2019-10-01 10:37:14 +08:00
|
|
|
// parse commandline arguments
|
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.addPositionalArgument("File list", QCoreApplication::translate("main", "File list."));
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-28 01:18:08 +08:00
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
|
|
|
|
2019-10-01 10:37:14 +08:00
|
|
|
if (!urlList.isEmpty()) {
|
|
|
|
w.showUrls(urlList);
|
2019-10-01 11:44:35 +08:00
|
|
|
w.adjustWindowSizeBySceneRect();
|
2019-10-01 10:37:14 +08:00
|
|
|
}
|
|
|
|
|
2019-09-28 01:18:08 +08:00
|
|
|
return a.exec();
|
|
|
|
}
|