mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
33 lines
765 B
C++
33 lines
765 B
C++
#include "nesca_3.h"
|
|
#include <QApplication>
|
|
#include <qfontdatabase.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
QStringList list;
|
|
list << "small_font.ttf";
|
|
int fontID(-1);
|
|
bool fontWarningShown(false);
|
|
for (QStringList::const_iterator constIterator = list.constBegin(); constIterator != list.constEnd(); ++constIterator) {
|
|
QFile res(":/nesca_3/" + *constIterator);
|
|
if (res.open(QIODevice::ReadOnly) == false) {
|
|
if (fontWarningShown == false) {
|
|
fontWarningShown = true;
|
|
}
|
|
} else {
|
|
fontID = QFontDatabase::addApplicationFontFromData(res.readAll());
|
|
if (fontID == -1 && fontWarningShown == false) {
|
|
fontWarningShown = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
nesca_3 *gui = new nesca_3();
|
|
|
|
gui->showNormal();
|
|
return a.exec();
|
|
}
|
|
|