mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-19 14:50:53 +01:00
Add Debugging Techniques
This commit is contained in:
@@ -74,6 +74,7 @@ include(SingleApplication/singleapplication.pri)
|
|||||||
include(sources/QWidgetAnimation/QWidgetAnimation.pri)
|
include(sources/QWidgetAnimation/QWidgetAnimation.pri)
|
||||||
|
|
||||||
DEFINES += QAPPLICATION_CLASS=QApplication
|
DEFINES += QAPPLICATION_CLASS=QApplication
|
||||||
|
DEFINES += QT_MESSAGELOGCONTEXT
|
||||||
|
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
#include <QProcess>
|
#include <QProcess>
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
#include <QDebug>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@brief Machine_info::Machine_info
|
@brief Machine_info::Machine_info
|
||||||
@@ -195,5 +196,6 @@ QString Machine_info::compilation_info()
|
|||||||
* screens[ii]->devicePixelRatio())
|
* screens[ii]->devicePixelRatio())
|
||||||
+ " ) </br>";
|
+ " ) </br>";
|
||||||
}
|
}
|
||||||
|
qDebug()<<compilation_info;
|
||||||
return compilation_info;
|
return compilation_info;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,6 +21,79 @@
|
|||||||
#include "macosxopenevent.h"
|
#include "macosxopenevent.h"
|
||||||
#include <QStyleFactory>
|
#include <QStyleFactory>
|
||||||
|
|
||||||
|
/**
|
||||||
|
@brief myMessageOutput
|
||||||
|
for debugging
|
||||||
|
@param type : the messages that can be sent to a message handler
|
||||||
|
@param context : were? wat?
|
||||||
|
@param msg : Message
|
||||||
|
*/
|
||||||
|
void myMessageOutput(QtMsgType type,
|
||||||
|
const QMessageLogContext &context,
|
||||||
|
const QString &msg)
|
||||||
|
{
|
||||||
|
|
||||||
|
QByteArray dbs =
|
||||||
|
QTime::currentTime().toString("hh:mm:ss.zzz").toLocal8Bit();
|
||||||
|
QByteArray localMsg = msg.toLocal8Bit();
|
||||||
|
const char *file = context.file ? context.file : "";
|
||||||
|
const char *function = context.function ? context.function : "";
|
||||||
|
switch (type) {
|
||||||
|
case QtDebugMsg:
|
||||||
|
fprintf(stderr,
|
||||||
|
"%s Debug: %s (%s:%u, %s)\n",
|
||||||
|
dbs.constData(),
|
||||||
|
localMsg.constData(),
|
||||||
|
file,
|
||||||
|
context.line,
|
||||||
|
function);
|
||||||
|
break;
|
||||||
|
case QtInfoMsg:
|
||||||
|
fprintf(stderr,
|
||||||
|
"%s Info: %s (%s:%u, %s)\n",
|
||||||
|
dbs.constData(),
|
||||||
|
localMsg.constData(),
|
||||||
|
file,
|
||||||
|
context.line,
|
||||||
|
function);
|
||||||
|
break;
|
||||||
|
case QtWarningMsg:
|
||||||
|
fprintf(stderr,
|
||||||
|
"%s Warning: %s (%s:%u, %s)\n",
|
||||||
|
dbs.constData(),
|
||||||
|
localMsg.constData(),
|
||||||
|
file, context.line,
|
||||||
|
function);
|
||||||
|
break;
|
||||||
|
case QtCriticalMsg:
|
||||||
|
fprintf(stderr,
|
||||||
|
"%s Critical: %s (%s:%u, %s)\n",
|
||||||
|
dbs.constData(),
|
||||||
|
localMsg.constData(),
|
||||||
|
file,
|
||||||
|
context.line,
|
||||||
|
function);
|
||||||
|
break;
|
||||||
|
case QtFatalMsg:
|
||||||
|
fprintf(stderr,
|
||||||
|
"%s Fatal: %s (%s:%u, %s)\n",
|
||||||
|
dbs.constData(),
|
||||||
|
localMsg.constData(),
|
||||||
|
file,
|
||||||
|
context.line,
|
||||||
|
function);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
fprintf(stderr,
|
||||||
|
"%s Unknown: %s (%s:%u, %s)\n",
|
||||||
|
dbs.constData(),
|
||||||
|
localMsg.constData(),
|
||||||
|
file,
|
||||||
|
context.line,
|
||||||
|
function);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@brief main
|
@brief main
|
||||||
Main function of QElectroTech
|
Main function of QElectroTech
|
||||||
@@ -32,10 +105,20 @@
|
|||||||
*/
|
*/
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
qInstallMessageHandler(myMessageOutput);
|
||||||
//Some setup, notably to use with QSetting.
|
//Some setup, notably to use with QSetting.
|
||||||
QCoreApplication::setOrganizationName("QElectroTech");
|
QCoreApplication::setOrganizationName("QElectroTech");
|
||||||
QCoreApplication::setOrganizationDomain("qelectrotech.org");
|
QCoreApplication::setOrganizationDomain("qelectrotech.org");
|
||||||
QCoreApplication::setApplicationName("QElectroTech");
|
QCoreApplication::setApplicationName("QElectroTech");
|
||||||
|
qDebug()<<"test message generated";
|
||||||
|
qInfo()<<"OS:"
|
||||||
|
+ QString(QSysInfo::kernelType())
|
||||||
|
+ "-"
|
||||||
|
+ QString(QSysInfo::currentCpuArchitecture())
|
||||||
|
+ " Version:"
|
||||||
|
+ QString(QSysInfo::prettyProductName())
|
||||||
|
+ " Kernel:"
|
||||||
|
+ QString(QSysInfo::kernelVersion());
|
||||||
//Creation and execution of the application
|
//Creation and execution of the application
|
||||||
//HighDPI
|
//HighDPI
|
||||||
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
||||||
|
|||||||
Reference in New Issue
Block a user