mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
/*
|
|
Main
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
//#include <QtPlugin>
|
|
#include <QtGui/QApplication>
|
|
#include <QFontDatabase>
|
|
#include <QStringList>
|
|
#include <QDebug>
|
|
#include "mainwindow.h"
|
|
#include "SleepLib/profiles.h"
|
|
|
|
#include "SleepLib/loader_plugins/prs1_loader.h"
|
|
#include "SleepLib/loader_plugins/cms50_loader.h"
|
|
#include "SleepLib/loader_plugins/zeo_loader.h"
|
|
#include "SleepLib/loader_plugins/resmed_loader.h"
|
|
|
|
MainWindow *mainwin;
|
|
|
|
void MyOutputHandler(QtMsgType type, const char *msg) {
|
|
if (!mainwin) return;
|
|
switch (type) {
|
|
case QtDebugMsg:
|
|
mainwin->Log(msg);
|
|
break;
|
|
case QtWarningMsg:
|
|
mainwin->Log(QString("Warning: ")+msg);
|
|
break;
|
|
case QtFatalMsg:
|
|
mainwin->Log(QString("Fatal: ")+msg);
|
|
break;
|
|
case QtCriticalMsg:
|
|
mainwin->Log(QString("Critical: ")+msg);
|
|
break;
|
|
// Popup a messagebox
|
|
//abort();
|
|
}
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
qInstallMsgHandler(MyOutputHandler);
|
|
|
|
a.setApplicationName("SleepyHead");
|
|
|
|
int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf");
|
|
QStringList ffam=QFontDatabase::applicationFontFamilies(id);
|
|
for (QStringList::iterator i=ffam.begin();i!=ffam.end();i++) {
|
|
qDebug() << "Loaded Font: " << (*i);
|
|
}
|
|
|
|
a.setFont(QFont("FreeSans",10));
|
|
|
|
PRS1Loader::Register();
|
|
CMS50Loader::Register();
|
|
ZEOLoader::Register();
|
|
ResmedLoader::Register();
|
|
MainWindow w;
|
|
mainwin=&w;
|
|
|
|
w.show();
|
|
return a.exec();
|
|
}
|