KShare/main.cpp

56 lines
1.7 KiB
C++
Raw Normal View History

2017-04-23 15:05:48 +02:00
#include "mainwindow.hpp"
#include <QApplication>
2017-04-27 13:57:42 +02:00
#include <QCommandLineParser>
#include <QDebug>
2017-04-27 14:24:04 +02:00
#include <QtGlobal>
2017-04-27 13:57:42 +02:00
#include <stdio.h>
bool verbose = false;
void handler(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
QByteArray localMsg = msg.toLocal8Bit();
switch (type)
{
case QtDebugMsg:
if (verbose)
fprintf(stdout, "DEBUG %s:%s(%d): %s\n", context.file, context.function, context.line, localMsg.constData());
break;
case QtInfoMsg:
fprintf(stdout, "INFO %s:%s(%d): %s\n", context.file, context.function, context.line, localMsg.constData());
break;
case QtWarningMsg:
2017-04-29 11:29:50 +02:00
fprintf(stdout, "WARN %s:%s(%d): %s\n", context.file, context.function, context.line, localMsg.constData());
2017-04-27 13:57:42 +02:00
break;
case QtCriticalMsg:
2017-04-29 11:29:50 +02:00
fprintf(stdout, "CRIT %s:%s(%d): %s\n", context.file, context.function, context.line, localMsg.constData());
2017-04-27 13:57:42 +02:00
break;
case QtFatalMsg:
2017-04-29 11:29:50 +02:00
fprintf(stdout, "FATAL %s:%s(%d): %s\n", context.file, context.function, context.line, localMsg.constData());
2017-04-27 13:57:42 +02:00
break;
}
}
2017-04-23 15:05:48 +02:00
int main(int argc, char *argv[])
{
2017-04-27 13:57:42 +02:00
qInstallMessageHandler(handler);
2017-04-23 15:05:48 +02:00
QApplication a(argc, argv);
2017-04-23 20:29:24 +02:00
a.setApplicationName("KShare");
a.setOrganizationName("ArsenArsen");
2017-04-27 18:58:23 +02:00
a.setApplicationVersion("1.1");
2017-04-26 22:00:13 +02:00
2017-04-27 13:57:42 +02:00
QCommandLineParser parser;
parser.addHelpOption();
QCommandLineOption h({ "b", "background" }, "Does not show the main window, starts in tray.");
QCommandLineOption v({ "v", "verbose" }, "Enables QtDebugMsg outputs");
parser.addOption(h);
parser.addOption(v);
parser.process(a);
verbose = parser.isSet(v);
2017-04-23 15:05:48 +02:00
MainWindow w;
2017-04-27 13:57:42 +02:00
if (!parser.isSet(h)) w.show();
2017-04-23 15:05:48 +02:00
return a.exec();
}