blob: 2f490495ea034b7f36ada77d13151d81ea9464ab (
plain) (
blame)
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
|
#include "mainwindow.hpp"
#include <QApplication>
#include <QUrl>
#include <QSettings>
#include <QCommandLineParser>
#include <QDebug>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QCommandLineParser cli_parser;
cli_parser.parse(app.arguments());
MainWindow w(&app);
auto urls = cli_parser.positionalArguments();
if(urls.size() > 0) {
for(auto url_str : urls) {
QUrl url { url_str };
if(url.isValid()) {
w.addNewTab(false, url);
} else {
qDebug() << "Invalid url: " << url_str;
}
}
}
else {
w.addEmptyTab(true, true);
}
w.show();
return app.exec();
}
|