2017-04-23 15:05:48 +02:00
|
|
|
#include "mainwindow.hpp"
|
2017-05-24 16:51:14 +02:00
|
|
|
#include "screenshotutil.hpp"
|
2017-06-27 12:46:35 +02:00
|
|
|
#include "ui_mainwindow.h"
|
2017-04-23 15:05:48 +02:00
|
|
|
#include <QApplication>
|
2017-04-27 13:57:42 +02:00
|
|
|
#include <QCommandLineParser>
|
2017-06-22 17:41:29 +02:00
|
|
|
#include <QDebug>
|
2017-06-27 11:33:11 +02:00
|
|
|
#include <QScreen>
|
2017-04-27 14:24:04 +02:00
|
|
|
#include <QtGlobal>
|
2017-06-06 17:05:34 +02:00
|
|
|
#include <formatter.hpp>
|
2017-05-29 22:42:10 +02:00
|
|
|
#include <iostream>
|
2017-06-11 23:56:06 +02:00
|
|
|
extern "C" {
|
|
|
|
#include <libavcodec/avcodec.h>
|
|
|
|
#include <libavformat/avformat.h>
|
|
|
|
}
|
2017-06-22 17:41:29 +02:00
|
|
|
#include <QListWidget>
|
2017-05-22 15:56:47 +02:00
|
|
|
#include <notifications.hpp>
|
2017-06-27 11:33:11 +02:00
|
|
|
#include <platformbackend.hpp>
|
2017-05-29 22:42:10 +02:00
|
|
|
#include <worker/worker.hpp>
|
2017-04-27 13:57:42 +02:00
|
|
|
|
|
|
|
bool verbose = false;
|
|
|
|
|
2017-06-22 17:41:29 +02:00
|
|
|
// I've experiments to run
|
|
|
|
// There is research to be done
|
|
|
|
// On the people who are
|
|
|
|
// still alive
|
|
|
|
bool stillAlive = true;
|
|
|
|
|
|
|
|
#define LOGACT(lvl) \
|
|
|
|
std::cout << lvl << stdMsg << "\n"; \
|
|
|
|
if (stillAlive && MainWindow::inst() && MainWindow::inst()->valid()) { \
|
|
|
|
MainWindow::inst()->ui->logBox->addItem(lvl + msg); \
|
|
|
|
}
|
|
|
|
|
2017-05-06 13:21:12 +02:00
|
|
|
void handler(QtMsgType type, const QMessageLogContext &, const QString &msg) {
|
2017-05-29 22:42:10 +02:00
|
|
|
std::string stdMsg = msg.toStdString();
|
2017-05-09 17:26:00 +02:00
|
|
|
switch (type) {
|
|
|
|
case QtDebugMsg:
|
2017-06-22 17:41:29 +02:00
|
|
|
if (verbose) {
|
|
|
|
LOGACT("DEBUG: ")
|
|
|
|
}
|
2017-05-09 17:26:00 +02:00
|
|
|
break;
|
|
|
|
case QtInfoMsg:
|
2017-06-22 17:41:29 +02:00
|
|
|
LOGACT("INFO: ")
|
|
|
|
if (stillAlive) notifications::notifyNolog("KShare", msg);
|
2017-05-09 17:26:00 +02:00
|
|
|
break;
|
|
|
|
case QtWarningMsg:
|
2017-06-22 17:41:29 +02:00
|
|
|
LOGACT("WARN: ")
|
|
|
|
if (stillAlive) notifications::notifyNolog("KShare Warning", msg, QSystemTrayIcon::Warning);
|
2017-05-09 17:26:00 +02:00
|
|
|
break;
|
|
|
|
case QtCriticalMsg:
|
2017-06-22 17:41:29 +02:00
|
|
|
LOGACT("CRIT: ")
|
|
|
|
if (stillAlive) notifications::notifyNolog("KShare Critical Error", msg, QSystemTrayIcon::Critical);
|
2017-05-09 17:26:00 +02:00
|
|
|
break;
|
|
|
|
case QtFatalMsg:
|
2017-06-22 17:41:29 +02:00
|
|
|
LOGACT("FATAL: ")
|
|
|
|
if (stillAlive) notifications::notifyNolog("KShare Fatal Error", msg, QSystemTrayIcon::Critical);
|
2017-05-09 17:26:00 +02:00
|
|
|
break;
|
|
|
|
}
|
2017-04-27 13:57:42 +02:00
|
|
|
}
|
2017-04-23 15:05:48 +02:00
|
|
|
|
2017-05-06 13:21:12 +02:00
|
|
|
int main(int argc, char *argv[]) {
|
2017-06-11 23:56:06 +02:00
|
|
|
av_register_all();
|
2017-05-09 17:26:00 +02:00
|
|
|
qInstallMessageHandler(handler);
|
|
|
|
QApplication a(argc, argv);
|
2017-05-24 16:51:14 +02:00
|
|
|
a.setQuitOnLastWindowClosed(false);
|
2017-05-09 17:26:00 +02:00
|
|
|
a.setApplicationName("KShare");
|
|
|
|
a.setOrganizationName("ArsenArsen");
|
2017-07-04 20:58:13 +02:00
|
|
|
a.setApplicationVersion("4.1");
|
2017-04-26 22:00:13 +02:00
|
|
|
|
2017-05-09 17:26:00 +02:00
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.addHelpOption();
|
2017-04-27 13:57:42 +02:00
|
|
|
|
2017-05-09 17:26:00 +02:00
|
|
|
QCommandLineOption h({ "b", "background" }, "Does not show the main window, starts in tray.");
|
|
|
|
QCommandLineOption v({ "v", "verbose" }, "Enables QtDebugMsg outputs");
|
2017-05-13 19:31:55 +02:00
|
|
|
QCommandLineOption ver({ "ver", "version" }, "Prints KShare version");
|
2017-05-09 17:26:00 +02:00
|
|
|
parser.addOption(h);
|
|
|
|
parser.addOption(v);
|
2017-05-13 19:31:55 +02:00
|
|
|
parser.addOption(ver);
|
2017-05-09 17:26:00 +02:00
|
|
|
parser.process(a);
|
2017-05-13 19:31:55 +02:00
|
|
|
|
|
|
|
if (parser.isSet(ver)) {
|
|
|
|
printf("%s %s\n", a.applicationName().toLocal8Bit().constData(), a.applicationVersion().toLocal8Bit().constData());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-09 17:26:00 +02:00
|
|
|
verbose = parser.isSet(v);
|
|
|
|
MainWindow w;
|
2017-05-29 22:42:10 +02:00
|
|
|
Worker::init();
|
2017-05-30 15:51:25 +02:00
|
|
|
a.connect(&a, &QApplication::aboutToQuit, Worker::end);
|
2017-06-22 17:41:29 +02:00
|
|
|
a.connect(&a, &QApplication::aboutToQuit, [] { stillAlive = false; });
|
2017-07-02 20:51:15 +02:00
|
|
|
|
2017-05-14 19:32:55 +02:00
|
|
|
if (!parser.isSet(h)) w.show();
|
2017-05-09 17:26:00 +02:00
|
|
|
return a.exec();
|
2017-04-23 15:05:48 +02:00
|
|
|
}
|