2011-06-26 08:30:44 +00:00
|
|
|
/********************************************************************
|
|
|
|
Main
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*********************************************************************/
|
|
|
|
|
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-26 08:30:44 +00:00
|
|
|
#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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
2011-06-26 12:25:52 +00:00
|
|
|
QFontDatabase::addApplicationFont(":/fonts/freesans.ttf");
|
|
|
|
a.setFont(QFont("FreeSans"));
|
2011-06-26 08:30:44 +00:00
|
|
|
PRS1Loader::Register();
|
|
|
|
CMS50Loader::Register();
|
|
|
|
ZEOLoader::Register();
|
|
|
|
|
|
|
|
Profiles::Scan();
|
|
|
|
|
|
|
|
//loader_progress->Show();
|
|
|
|
|
|
|
|
pref["AppName"]="SleepyHead";
|
|
|
|
//pref["Version"]=wxString(AutoVersion::_FULLVERSION_STRING,wxConvUTF8);
|
|
|
|
pref["Profile"]=getUserName();
|
|
|
|
pref["LinkGraphMovement"]=true;
|
|
|
|
pref["fruitsalad"]=true;
|
|
|
|
|
|
|
|
profile=Profiles::Get(pref["Profile"].toString());
|
|
|
|
|
|
|
|
profile->LoadMachineData();
|
|
|
|
|
|
|
|
/*Machine *m=new Machine(profile,0);
|
|
|
|
m->SetClass("Journal");
|
|
|
|
m->SetType(MT_JOURNAL);
|
|
|
|
m->properties["Brand"]="Virtual";
|
|
|
|
profile->AddMachine(m); */
|
|
|
|
|
|
|
|
MainWindow w;
|
|
|
|
w.show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|