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>
2013-01-20 19:39:01 +00:00
# include <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>
2013-09-09 15:56:02 +00:00
# include <QTranslator>
# include <QDir>
2013-09-15 04:20:26 +00:00
# include <QComboBox>
# include <QPushButton>
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"
2012-01-22 14:39:20 +00:00
# include "SleepLib/loader_plugins/icon_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
2013-01-21 21:47:40 +00:00
# if QT_VERSION < QT_VERSION_CHECK(5,0,0)
void MyOutputHandler ( QtMsgType type , const char * msgtxt ) {
# else
void MyOutputHandler ( QtMsgType type , const QMessageLogContext & context , const QString & msgtxt ) {
# endif
2011-07-22 13:46:17 +00:00
if ( ! mainwin ) {
2013-01-21 21:47:40 +00:00
// qInstallMessageHandler(0);
# if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
fprintf ( stderr , " Pre/Post: %s \n " , msgtxt . toLocal8Bit ( ) . constData ( ) ) ;
# else
fprintf ( stderr , " Pre/Post: %s \n " , msgtxt ) ;
# endif
2011-07-22 13:46:17 +00:00
return ;
}
2011-09-05 02:30:10 +00:00
2013-01-21 21:47:40 +00:00
QString msg , typestr ;
2011-07-17 15:57:45 +00:00
switch ( type ) {
case QtWarningMsg :
2013-01-21 21:47:40 +00:00
typestr = QString ( " Warning: " ) ;
2011-07-17 15:57:45 +00:00
break ;
case QtFatalMsg :
2013-01-21 21:47:40 +00:00
typestr = QString ( " Fatal: " ) ;
2011-07-17 15:57:45 +00:00
break ;
case QtCriticalMsg :
2013-01-21 21:47:40 +00:00
typestr = QString ( " Critical: " ) ;
break ;
default :
typestr = QString ( " Debug: " ) ;
2011-07-17 15:57:45 +00:00
break ;
}
2013-01-21 21:47:40 +00:00
# if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
2013-10-16 02:52:25 +00:00
msg = typestr + msgtxt ; //+QString(" (%1:%2, %3)").arg(context.file).arg(context.line).arg(context.function);
2013-01-21 21:47:40 +00:00
# else
msg = typestr + msgtxt ;
# endif
mainwin - > Log ( msg ) ;
if ( type = = QtFatalMsg ) {
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-12-18 16:39:36 +00:00
2011-10-30 14:01:33 +00:00
void release_notes ( )
{
QDialog relnotes ;
2013-09-09 15:56:02 +00:00
relnotes . setWindowTitle ( STR_TR_SleepyHead + " " + QObject : : tr ( " Release Notes " ) ) ;
2011-10-30 14:01:33 +00:00
QVBoxLayout layout ( & relnotes ) ;
QWebView web ( & relnotes ) ;
2013-01-15 07:24:00 +00:00
2011-12-18 16:39:36 +00:00
// Language???
2013-01-15 09:13:21 +00:00
web . load ( QUrl ( " qrc:/docs/release_notes.html " ) ) ;
2013-01-15 07:24:00 +00:00
2011-10-30 14:01:33 +00:00
//web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn);
relnotes . setLayout ( & layout ) ;
layout . insertWidget ( 0 , & web , 1 ) ;
2011-12-18 16:39:36 +00:00
QPushButton okbtn ( QObject : : tr ( " &Ok, get on with it.. " ) , & relnotes ) ;
2011-10-30 14:01:33 +00:00
relnotes . connect ( & okbtn , SIGNAL ( clicked ( ) ) , SLOT ( accept ( ) ) ) ;
layout . insertWidget ( 1 , & okbtn , 1 ) ;
2013-01-15 09:13:21 +00:00
QApplication : : processEvents ( ) ; // MW: Needed on Mac, as the html has to finish loading
2011-10-30 14:01:33 +00:00
relnotes . exec ( ) ;
}
2011-09-17 12:39:00 +00:00
2012-01-12 09:35:50 +00:00
void build_notes ( )
{
QDialog relnotes ;
2013-09-09 15:56:02 +00:00
relnotes . setWindowTitle ( STR_TR_SleepyHead + " " + QObject : : tr ( " SleepyHead Update Notes " ) ) ;
2012-01-12 09:35:50 +00:00
QVBoxLayout layout ( & relnotes ) ;
QWebView web ( & relnotes ) ;
2013-09-09 15:56:02 +00:00
relnotes . setWindowTitle ( STR_TR_SleepyHead + " v " + FullVersionString + QObject : : tr ( " Update " ) ) ;
2012-01-12 09:35:50 +00:00
// Language???
2013-01-15 09:13:21 +00:00
web . load ( QUrl ( " qrc:/docs/update_notes.html " ) ) ;
2012-01-12 09:35:50 +00:00
//web.page()->mainFrame()->setScrollBarPolicy(Qt::Vertical, Qt::ScrollBarAlwaysOn);
2013-01-15 07:24:00 +00:00
2012-01-12 09:35:50 +00:00
relnotes . setLayout ( & layout ) ;
layout . insertWidget ( 0 , & web , 1 ) ;
QPushButton okbtn ( QObject : : tr ( " &Ok, get on with it.. " ) , & relnotes ) ;
relnotes . connect ( & okbtn , SIGNAL ( clicked ( ) ) , SLOT ( accept ( ) ) ) ;
layout . insertWidget ( 1 , & okbtn , 1 ) ;
layout . setMargin ( 0 ) ;
2013-01-15 09:13:21 +00:00
QApplication : : processEvents ( ) ; // MW: Needed on Mac, as the html has to finish loading
2012-01-12 09:35:50 +00:00
relnotes . setFixedSize ( 500 , 400 ) ;
relnotes . exec ( ) ;
}
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
2013-01-17 18:26:11 +00:00
# if QT_VERSION < QT_VERSION_CHECK(5,0,0)
2013-01-18 22:14:37 +00:00
QGL : : setPreferredPaintEngine ( QPaintEngine : : OpenGL ) ;
2013-01-17 18:26:11 +00:00
# endif
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 " ) {
2013-01-20 16:31:51 +00:00
# ifdef Q_OS_WIN32
2011-12-21 17:00:19 +00:00
Sleep ( 1000 ) ;
2011-12-13 10:20:22 +00:00
# else
2011-12-11 10:59:30 +00:00
sleep ( 1 ) ;
2011-12-13 10:20:22 +00:00
# endif
2011-12-11 10:59:30 +00:00
}
2011-11-18 09:05:22 +00:00
}
2012-01-06 16:07:54 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Register Importer Modules
////////////////////////////////////////////////////////////////////////////////////////////
2013-10-13 16:35:53 +00:00
initialize ( ) ;
2011-10-01 12:54:20 +00:00
PRS1Loader : : Register ( ) ;
CMS50Loader : : Register ( ) ;
2012-01-11 13:55:46 +00:00
//ZEOLoader::Register(); // Use outside of directory importer..
2011-10-01 12:54:20 +00:00
ResmedLoader : : Register ( ) ;
2011-11-20 23:39:55 +00:00
IntellipapLoader : : Register ( ) ;
2012-01-22 14:39:20 +00:00
FPIconLoader : : Register ( ) ;
2012-01-06 16:07:54 +00:00
// Scan for user profiles
2011-10-01 12:54:20 +00:00
Profiles : : Scan ( ) ;
2012-01-06 16:07:54 +00:00
//qRegisterMetaType<Preference>("Preference");
2013-09-15 04:20:26 +00:00
PREF [ " AppName " ] = STR_TR_SleepyHead ;
2012-01-06 16:07:54 +00:00
// Skip login screen, unless asked not to on the command line
2012-01-12 09:35:50 +00:00
bool skip_login = PREF . ExistsAndTrue ( STR_GEN_SkipLogin ) ;
2011-11-18 09:18:41 +00:00
if ( force_login_screen ) skip_login = false ;
2011-10-01 12:54:20 +00:00
2012-01-06 16:07:54 +00:00
// Todo: Make a wrapper for Preference settings, like Profile settings have..
2011-10-21 05:50:31 +00:00
QDateTime lastchecked , today = QDateTime : : currentDateTime ( ) ;
2011-12-21 14:24:09 +00:00
if ( ! PREF . contains ( STR_GEN_UpdatesAutoCheck ) ) {
PREF [ STR_GEN_UpdatesAutoCheck ] = true ;
PREF [ STR_GEN_UpdateCheckFrequency ] = 7 ;
2011-10-21 05:50:31 +00:00
}
2012-01-12 09:35:50 +00:00
if ( ! PREF . contains ( STR_PREF_AllowEarlyUpdates ) ) {
PREF [ STR_PREF_AllowEarlyUpdates ] = false ;
}
2012-01-06 16:07:54 +00:00
2013-09-15 04:20:26 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Language Selection
////////////////////////////////////////////////////////////////////////////////////////////
QDialog langsel ( NULL , Qt : : CustomizeWindowHint | Qt : : WindowTitleHint ) ;
langsel . setWindowTitle ( QObject : : tr ( " Language " ) ) ;
QHBoxLayout lang_layout ( & langsel ) ;
QComboBox lang_combo ( & langsel ) ;
QPushButton lang_okbtn ( " -> " , & langsel ) ;
lang_layout . addWidget ( & lang_combo , 1 ) ;
lang_layout . addWidget ( & lang_okbtn ) ;
2013-10-09 15:42:46 +00:00
# ifdef Q_WS_MAC
QString transdir = QCoreApplication : : applicationDirPath ( ) + " /Contents/Resources/Translations/ " ;
# else
2013-09-15 04:20:26 +00:00
QString transdir = QCoreApplication : : applicationDirPath ( ) + " /Translations/ " ;
2013-10-09 15:42:46 +00:00
# endif
2013-09-15 04:20:26 +00:00
QDir dir ( transdir ) ;
qDebug ( ) < < " Scanning \" " < < transdir < < " \" for translations " ;
dir . setFilter ( QDir : : Files ) ;
dir . setNameFilters ( QStringList ( " *.qm " ) ) ;
qDebug ( ) < < " Available Translations " ;
QFileInfoList list = dir . entryInfoList ( ) ;
QString language = PREF [ STR_PREF_Language ] . toString ( ) ;
QString langfile , langname ;
// Fake english for now..
lang_combo . addItem ( " English " , " English.en_US.qm " ) ;
// Scan translation directory
for ( int i = 0 ; i < list . size ( ) ; + + i ) {
QFileInfo fi = list . at ( i ) ;
langname = fi . fileName ( ) . section ( ' . ' , 0 , 0 ) ;
lang_combo . addItem ( langname , fi . fileName ( ) ) ;
qDebug ( ) < < " Found Translation " < < QDir : : toNativeSeparators ( fi . fileName ( ) ) ;
}
for ( int i = 0 ; i < lang_combo . count ( ) ; i + + ) {
langname = lang_combo . itemText ( i ) ;
if ( langname = = language ) {
langfile = lang_combo . itemData ( i ) . toString ( ) ;
break ;
}
}
2013-09-15 05:03:41 +00:00
if ( language . isEmpty ( ) ) {
2013-09-15 04:20:26 +00:00
langsel . connect ( & lang_okbtn , SIGNAL ( clicked ( ) ) , & langsel , SLOT ( close ( ) ) ) ;
langsel . exec ( ) ;
langsel . disconnect ( & lang_okbtn , SIGNAL ( clicked ( ) ) , & langsel , SLOT ( close ( ) ) ) ;
2013-09-15 05:03:41 +00:00
langname = lang_combo . currentText ( ) ;
langfile = lang_combo . itemData ( lang_combo . currentIndex ( ) ) . toString ( ) ;
PREF [ STR_PREF_Language ] = langname ;
2013-09-15 04:20:26 +00:00
}
2013-09-15 05:03:41 +00:00
qDebug ( ) < < " Loading " < < langname < < " Translation " < < langfile ;
2013-09-15 04:20:26 +00:00
QTranslator translator ;
translator . load ( langfile , QCoreApplication : : applicationDirPath ( ) + " /Translations " ) ;
a . installTranslator ( & translator ) ;
a . setApplicationName ( STR_TR_SleepyHead ) ;
2012-01-06 16:07:54 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Check when last checked for updates..
////////////////////////////////////////////////////////////////////////////////////////////
2011-10-21 05:50:31 +00:00
bool check_updates = false ;
2011-12-21 14:24:09 +00:00
if ( PREF [ STR_GEN_UpdatesAutoCheck ] . toBool ( ) ) {
int update_frequency = PREF [ STR_GEN_UpdateCheckFrequency ] . toInt ( ) ;
2011-10-21 05:50:31 +00:00
int days = 1000 ;
2011-12-21 14:24:09 +00:00
lastchecked = PREF [ STR_GEN_UpdatesLastChecked ] . toDateTime ( ) ;
if ( PREF . contains ( STR_GEN_UpdatesLastChecked ) ) {
2011-10-21 05:50:31 +00:00
days = lastchecked . secsTo ( today ) ;
days / = 86400 ;
} ;
if ( days > update_frequency ) {
check_updates = true ;
}
}
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 {
2013-09-09 15:56:02 +00:00
if ( PREF . contains ( STR_PREF_VersionString ) ) {
QString V = PREF [ STR_PREF_VersionString ] . toString ( ) ;
2012-01-12 09:35:50 +00:00
if ( FullVersionString > V ) {
QString V2 = V . section ( " - " , 0 , 0 ) ;
if ( VersionString > V2 ) {
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 "+AppRoot+" folder (it's located in your Documents folder) and reimport your data. After this things should work normally.",QMessageBox::Ok);
} else {
build_notes ( ) ;
}
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-12-21 14:24:09 +00:00
p_profile = Profiles : : Get ( PREF [ STR_GEN_Profile ] . toString ( ) ) ;
2011-11-18 09:05:22 +00:00
} 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
}
}
2013-09-09 15:56:02 +00:00
PREF [ STR_PREF_VersionString ] = FullVersionString ;
2011-10-21 05:50:31 +00:00
2011-12-21 14:24:09 +00:00
p_profile = Profiles : : Get ( PREF [ STR_GEN_Profile ] . toString ( ) ) ;
2011-10-01 12:54:20 +00:00
2011-12-21 17:00:19 +00:00
qDebug ( ) < < " Selected Profile " < < p_profile - > user - > userName ( ) ;
2012-01-06 16:07:54 +00:00
// int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf");
// QFontDatabase fdb;
// QStringList ffam=fdb.families();
// for (QStringList::iterator i=ffam.begin();i!=ffam.end();i++) {
// qDebug() << "Loaded Font: " << (*i);
// }
2011-06-28 01:51:21 +00:00
2011-12-21 14:24:09 +00:00
if ( ! PREF . contains ( " Fonts_Application_Name " ) ) {
2011-10-21 05:50:31 +00:00
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-10-01 12:54:20 +00:00
2013-01-21 21:47:40 +00:00
# if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
qInstallMessageHandler ( MyOutputHandler ) ;
# else
2013-01-17 18:26:11 +00:00
qInstallMsgHandler ( MyOutputHandler ) ;
2013-01-20 16:31:51 +00:00
# endif
//#endif
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 ( ) ;
}