2011-06-28 15:25:20 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
Main
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-06-28 15:25:20 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-06-26 11:49:40 +00:00
|
|
|
//#include <QtPlugin>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include <QtGui/QApplication>
|
2011-06-26 12:25:52 +00:00
|
|
|
#include <QFontDatabase>
|
2011-06-28 01:51:21 +00:00
|
|
|
#include <QStringList>
|
2011-07-01 10:10:44 +00:00
|
|
|
#include <QDebug>
|
2011-09-01 07:12:25 +00:00
|
|
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
|
2011-09-01 07:12:25 +00:00
|
|
|
#ifdef Q_WS_X11
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#endif
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-22 13:46:17 +00:00
|
|
|
MainWindow *mainwin=NULL;
|
2011-07-17 15:57:45 +00:00
|
|
|
|
|
|
|
void MyOutputHandler(QtMsgType type, const char *msg) {
|
2011-07-22 13:46:17 +00:00
|
|
|
if (!mainwin) {
|
|
|
|
return;
|
|
|
|
}
|
2011-09-05 02:30:10 +00:00
|
|
|
|
2011-07-17 15:57:45 +00:00
|
|
|
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();
|
|
|
|
}
|
2011-09-05 02:30:10 +00:00
|
|
|
//loglock.unlock();
|
2011-07-17 15:57:45 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2011-09-01 09:03:23 +00:00
|
|
|
#ifdef Q_WS_X11
|
2011-09-01 07:12:25 +00:00
|
|
|
XInitThreads();
|
2011-09-01 09:03:23 +00:00
|
|
|
#endif
|
2011-09-11 13:58:26 +00:00
|
|
|
QGL::setPreferredPaintEngine(QPaintEngine::OpenGL);
|
2011-06-26 08:30:44 +00:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
2011-06-27 06:26:29 +00:00
|
|
|
a.setApplicationName("SleepyHead");
|
2011-07-17 15:57:45 +00:00
|
|
|
|
2011-08-17 03:06:57 +00:00
|
|
|
/*int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf");
|
2011-06-28 01:51:21 +00:00
|
|
|
QStringList ffam=QFontDatabase::applicationFontFamilies(id);
|
|
|
|
for (QStringList::iterator i=ffam.begin();i!=ffam.end();i++) {
|
2011-07-01 10:10:44 +00:00
|
|
|
qDebug() << "Loaded Font: " << (*i);
|
2011-08-17 03:06:57 +00:00
|
|
|
}*/
|
2011-06-28 01:51:21 +00:00
|
|
|
|
2011-08-07 00:22:54 +00:00
|
|
|
a.setFont(QFont("Sans Serif",10));
|
2011-06-28 01:51:21 +00:00
|
|
|
|
2011-07-23 07:56:13 +00:00
|
|
|
qInstallMsgHandler(MyOutputHandler);
|
2011-07-18 02:33:25 +00:00
|
|
|
MainWindow w;
|
|
|
|
mainwin=&w;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
w.show();
|
|
|
|
return a.exec();
|
|
|
|
}
|