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-10-01 12:54:20 +00:00
# include <QMessageBox>
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-10-30 14:01:33 +00:00
# include <QPushButton>
# include <QWebFrame>
2011-12-05 15:03:16 +00:00
# include <QWebView>
2011-10-30 14:01:33 +00:00
2011-09-17 12:39:00 +00:00
# include "SleepLib/schema.h"
2011-06-26 08:30:44 +00:00
# include "mainwindow.h"
# include "SleepLib/profiles.h"
2011-10-01 12:54:20 +00:00
# include "profileselect.h"
# include "newprofile.h"
2011-11-20 23:39:55 +00:00
// Gah! I must add the real darn plugin system one day.
2011-10-01 12:54:20 +00:00
# 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"
2011-11-20 23:39:55 +00:00
# include "SleepLib/loader_plugins/intellipap_loader.h"
2011-10-01 12:54:20 +00:00
2011-09-01 07:12:25 +00:00
# ifdef Q_WS_X11
# include <X11/Xlib.h>
# endif
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
2011-09-17 12:39:00 +00:00
void initialize ( )
{
schema : : init ( ) ;
}
2011-10-30 14:01:33 +00:00
void release_notes ( )
{
QDialog relnotes ;
QVBoxLayout layout ( & relnotes ) ;
QWebView web ( & relnotes ) ;
web . load ( QUrl ( " qrc:/docs/release_notes.html " ) ) ;
//web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn);
relnotes . setLayout ( & layout ) ;
layout . insertWidget ( 0 , & web , 1 ) ;
QPushButton okbtn ( " &Ok, get on with it.. " , & relnotes ) ;
relnotes . connect ( & okbtn , SIGNAL ( clicked ( ) ) , SLOT ( accept ( ) ) ) ;
layout . insertWidget ( 1 , & okbtn , 1 ) ;
relnotes . exec ( ) ;
}
2011-09-17 12:39:00 +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-10-28 03:45:31 +00:00
2011-11-18 09:05:22 +00:00
bool force_login_screen = false ;
2011-06-26 08:30:44 +00:00
QApplication a ( argc , argv ) ;
2011-11-18 09:05:22 +00:00
QStringList args = QCoreApplication : : arguments ( ) ;
for ( int i = 1 ; i < args . size ( ) ; i + + ) {
if ( args [ i ] = = " -l " ) force_login_screen = true ;
2011-12-11 10:59:30 +00:00
if ( args [ i ] = = " -p " ) {
sleep ( 1 ) ;
}
2011-11-18 09:05:22 +00:00
}
2011-06-27 06:26:29 +00:00
a . setApplicationName ( " SleepyHead " ) ;
2011-09-17 12:39:00 +00:00
initialize ( ) ;
2011-07-17 15:57:45 +00:00
2011-10-01 12:54:20 +00:00
PRS1Loader : : Register ( ) ;
CMS50Loader : : Register ( ) ;
ZEOLoader : : Register ( ) ;
ResmedLoader : : Register ( ) ;
2011-11-20 23:39:55 +00:00
IntellipapLoader : : Register ( ) ;
2011-10-01 12:54:20 +00:00
Profiles : : Scan ( ) ;
2011-11-30 06:01:38 +00:00
qRegisterMetaType < Preference > ( " Preference " ) ;
2011-10-05 07:41:56 +00:00
PREF [ " AppName " ] = " SleepyHead " ;
2011-11-18 09:18:41 +00:00
bool skip_login = ( PREF . ExistsAndTrue ( " SkipLoginScreen " ) ) ;
if ( force_login_screen ) skip_login = false ;
2011-10-01 12:54:20 +00:00
QString Version = QString ( " %1.%2.%3 " ) . arg ( major_version ) . arg ( minor_version ) . arg ( revision_number ) ;
2011-10-21 05:50:31 +00:00
QDateTime lastchecked , today = QDateTime : : currentDateTime ( ) ;
if ( ! PREF . Exists ( " Updates_AutoCheck " ) ) {
PREF [ " Updates_AutoCheck " ] = true ;
2011-12-11 09:45:28 +00:00
PREF [ " Updates_CheckFrequency " ] = 7 ;
2011-10-21 05:50:31 +00:00
}
bool check_updates = false ;
if ( PREF [ " Updates_AutoCheck " ] . toBool ( ) ) {
int update_frequency = PREF [ " Updates_CheckFrequency " ] . toInt ( ) ;
int days = 1000 ;
// p_pref ->Get
lastchecked = PREF [ " Updates_LastChecked " ] . toDateTime ( ) ;
if ( PREF . Exists ( " Updates_LastChecked " ) ) {
days = lastchecked . secsTo ( today ) ;
days / = 86400 ;
} ;
if ( days > update_frequency ) {
//QMessageBox::information(NULL,"Check for updates","Placeholder. Would automatically check for updates here.",QMessageBox::Ok);
check_updates = true ;
//PREF["Updates_LastChecked"]=today;
}
}
2011-10-01 12:54:20 +00:00
if ( ! Profiles : : profiles . size ( ) ) {
NewProfile newprof ( 0 ) ;
if ( newprof . exec ( ) = = NewProfile : : Rejected )
return 0 ;
2011-10-30 14:01:33 +00:00
release_notes ( ) ;
2011-10-01 12:54:20 +00:00
// Show New User wizard..
} else {
2011-10-05 07:41:56 +00:00
if ( PREF . Exists ( " VersionString " ) ) {
QString V = PREF [ " VersionString " ] . toString ( ) ;
2011-10-01 12:54:20 +00:00
if ( V ! = Version ) {
2011-10-30 14:01:33 +00:00
release_notes ( ) ;
//QMessageBox::warning(0,"New Version Warning","This is a new version of SleepyHead. If you experience a crash right after clicking Ok, you will need to manually delete the SleepApp folder (it's located in your Documents folder) and reimport your data. After this things should work normally.",QMessageBox::Ok);
2011-10-30 10:44:30 +00:00
check_updates = false ;
2011-10-01 12:54:20 +00:00
}
}
2011-11-18 09:18:41 +00:00
ProfileSelect profsel ( 0 ) ;
2011-11-18 09:05:22 +00:00
if ( skip_login ) {
2011-11-18 09:18:41 +00:00
profsel . QuickLogin ( ) ;
if ( profsel . result ( ) = = ProfileSelect : : Rejected ) {
exit ( 1 ) ;
}
2011-11-18 09:05:22 +00:00
p_profile = Profiles : : Get ( PREF [ " Profile " ] . toString ( ) ) ;
} else p_profile = NULL ;
2011-11-18 09:18:41 +00:00
if ( ! p_profile ) {
2011-11-18 09:05:22 +00:00
if ( profsel . exec ( ) = = ProfileSelect : : Rejected ) {
exit ( 1 ) ;
}
2011-10-01 12:54:20 +00:00
}
}
2011-10-05 07:41:56 +00:00
PREF [ " VersionString " ] = Version ;
2011-10-21 05:50:31 +00:00
2011-10-05 07:41:56 +00:00
p_profile = Profiles : : Get ( PREF [ " Profile " ] . toString ( ) ) ;
2011-10-01 12:54:20 +00:00
2011-10-05 08:01:14 +00:00
//if (!PREF.Exists("Profile")) PREF["Profile"]=getUserName();
2011-10-01 12:54:20 +00:00
2011-10-05 10:44:41 +00:00
//int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf");
/* QFontDatabase fdb;
QStringList ffam = fdb . families ( ) ;
2011-06-28 01:51:21 +00:00
for ( QStringList : : iterator i = ffam . begin ( ) ; i ! = ffam . end ( ) ; i + + ) {
2011-07-01 10:10:44 +00:00
qDebug ( ) < < " Loaded Font: " < < ( * i ) ;
2011-10-05 10:44:41 +00:00
} */
2011-06-28 01:51:21 +00:00
2011-10-21 05:50:31 +00:00
if ( ! PREF . Exists ( " Fonts_Application_Name " ) ) {
PREF [ " Fonts_Application_Name " ] = " Sans Serif " ;
PREF [ " Fonts_Application_Size " ] = 10 ;
PREF [ " Fonts_Application_Bold " ] = false ;
PREF [ " Fonts_Application_Italic " ] = false ;
2011-10-05 10:44:41 +00:00
}
2011-10-21 05:50:31 +00:00
QApplication : : setFont ( QFont ( PREF [ " Fonts_Application_Name " ] . toString ( ) ,
PREF [ " Fonts_Application_Size " ] . toInt ( ) ,
PREF [ " Fonts_Application_Bold " ] . toBool ( ) ? QFont : : Bold : QFont : : Normal ,
PREF [ " Fonts_Application_Italic " ] . toBool ( ) ) ) ;
2011-06-28 01:51:21 +00:00
2011-12-11 09:45:28 +00:00
qDebug ( ) < < " Selected " < < QApplication : : font ( ) . family ( ) ;
2011-07-23 07:56:13 +00:00
qInstallMsgHandler ( MyOutputHandler ) ;
2011-10-01 12:54:20 +00:00
2011-07-18 02:33:25 +00:00
MainWindow w ;
mainwin = & w ;
2011-10-21 05:50:31 +00:00
if ( check_updates ) mainwin - > CheckForUpdates ( ) ;
2011-06-26 08:30:44 +00:00
w . show ( ) ;
2011-10-01 14:08:43 +00:00
2011-06-26 08:30:44 +00:00
return a . exec ( ) ;
}