2014-04-09 21:01:57 +00:00
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim : set ts = 8 sts = 4 et sw = 4 tw = 99 :
*
* Main
*
* Copyright ( c ) 2011 - 2014 Mark Watkins < jedimark @ users . sourceforge . net >
*
* This file is subject to the terms and conditions of the GNU General Public
* License . See the file COPYING in the main directory of the Linux
* distribution for more details . */
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>
2013-10-19 02:59:52 +00:00
# include <QSettings>
# include <QFileDialog>
2014-06-02 06:40:00 +00:00
# include <QSysInfo>
2011-10-30 14:01:33 +00:00
2014-06-20 07:05:40 +00:00
# include "logger.h"
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"
2014-04-24 09:44:15 +00:00
# include "translation.h"
2014-06-02 10:28:05 +00:00
# include "common_gui.h"
2011-11-20 23:39:55 +00:00
2014-06-20 07:05:40 +00:00
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"
2014-05-28 09:35:21 +00:00
# include "SleepLib/loader_plugins/md300w1_loader.h"
2011-10-01 12:54:20 +00:00
# include "SleepLib/loader_plugins/zeo_loader.h"
2014-04-15 13:59:24 +00:00
# include "SleepLib/loader_plugins/somnopose_loader.h"
2011-10-01 12:54:20 +00:00
# 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
2014-04-23 13:19:56 +00:00
MainWindow * mainwin = nullptr ;
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 ;
2014-04-17 05:52:25 +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 ) ;
2014-04-17 05:52:25 +00:00
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 ) ;
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
2013-10-19 02:59:52 +00:00
void sDelay ( int s )
{
// QThread::msleep() is exposed in Qt5
# ifdef Q_OS_WIN32
2014-04-17 05:52:25 +00:00
Sleep ( s * 1000 ) ;
2013-10-19 02:59:52 +00:00
# else
2014-04-17 05:52:25 +00:00
sleep ( s ) ;
2013-10-19 02:59:52 +00:00
# endif
}
2012-01-12 09:35:50 +00:00
2014-05-14 06:49:37 +00:00
int compareVersion ( QString version ) ;
2014-06-02 06:40: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
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
2014-04-17 05:52:25 +00:00
bool force_login_screen = false ;
bool force_data_dir = false ;
2013-10-19 02:59:52 +00:00
2011-06-26 08:30:44 +00:00
QApplication a ( argc , argv ) ;
2014-04-17 05:52:25 +00:00
QStringList args = QCoreApplication : : arguments ( ) ;
2011-11-18 09:05:22 +00:00
2014-05-20 15:11:16 +00:00
QSettings settings ( getDeveloperName ( ) , getAppName ( ) ) ;
2014-04-17 05:52:25 +00:00
for ( int i = 1 ; i < args . size ( ) ; i + + ) {
if ( args [ i ] = = " -l " ) { force_login_screen = true ; }
else if ( args [ i ] = = " -d " ) { force_data_dir = true ; }
2014-05-20 15:11:16 +00:00
else if ( args [ i ] = = " -language " ) {
settings . setValue ( " Settings/Language " , " " ) ;
} else if ( args [ i ] = = " -p " ) {
2013-10-19 02:59:52 +00:00
sDelay ( 1 ) ;
2011-12-11 10:59:30 +00:00
}
2011-11-18 09:05:22 +00:00
}
2014-06-20 07:05:40 +00:00
initializeLogger ( ) ;
2014-06-20 05:25:50 +00:00
2013-09-15 04:20:26 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Language Selection
////////////////////////////////////////////////////////////////////////////////////////////
2014-04-24 09:44:15 +00:00
initTranslations ( settings ) ;
2013-10-20 12:13:06 +00:00
initializeStrings ( ) ; // Important, call this AFTER translator is installed.
2013-09-15 04:20:26 +00:00
a . setApplicationName ( STR_TR_SleepyHead ) ;
2014-06-02 17:35:45 +00:00
float glversion = getOpenGLVersion ( ) ;
2014-06-02 08:16:28 +00:00
2014-06-02 17:35:45 +00:00
bool opengl2supported = glversion > = 2.0 ;
bool bad_graphics = ! opengl2supported ;
bool intel_graphics = getOpenGLVersionString ( ) . contains ( " INTEL " , Qt : : CaseInsensitive ) ;
2014-06-02 10:28:05 +00:00
2014-06-02 17:35:45 +00:00
# if defined(Q_OS_WIN)
bool angle_supported = getGraphicsEngine ( ) . contains ( CSTR_GFX_ANGLE , Qt : : CaseInsensitive ) & & ( QSysInfo : : windowsVersion ( ) > = QSysInfo : : WV_VISTA ) ;
if ( bad_graphics ) {
bad_graphics = ! angle_supported
}
# endif
2014-06-02 08:16:28 +00:00
2014-06-02 17:35:45 +00:00
QString lookfor = QObject : : tr ( " Look for this build in <a href='%1'>SleepyHead's files hosted on Sourceforge</a>. " ) . arg ( " http://sf.net/projects/sleepyhead/files " ) ;
# ifdef BROKEN_OPENGL_BUILD
Q_UNUSED ( bad_graphics )
Q_UNUSED ( intel_graphics )
QString betterbuild = " Settings/BetterBuild " ;
QString fasterbuildavailable = QObject : : tr ( " A faster build of SleepyHead may be available " ) ;
QString notbotheragain = QObject : : tr ( " You will not be bothered with this message again. " ) ;
QString betterresults = QObject : : tr ( " This version will run fine, but a \" <b>%1</b> \" tagged build of SleepyHead will likely run much smoother on your computer. " ) ;
if ( opengl2supported ) {
if ( ! settings . value ( betterbuild , false ) . toBool ( ) ) {
QMessageBox : : information ( nullptr , fasterbuildavailable ,
QObject : : tr ( " This build of SleepyHead was designed to work with older computers lacking OpenGL 2.0 support, but it looks like your computer has full support for it. " ) + " <br/><br/> " +
betterresults . arg ( " -OpenGL " ) + " <br/><br/> " +
lookfor + " <br/><br/> " +
notbotheragain , QMessageBox : : Ok , QMessageBox : : Ok ) ;
settings . setValue ( betterbuild , true ) ;
2014-06-02 06:40:00 +00:00
}
2014-06-02 17:35:45 +00:00
} else {
# if defined(Q_OS_WIN)
if ( angle_supported ) {
if ( ! settings . value ( betterbuild , false ) . toBool ( ) ) {
QMessageBox : : information ( nullptr , fasterbuildavailable ,
QObject : : tr ( " This build of SleepyHead was designed to work with older computers lacking OpenGL 2.0 support, which yours doesn't have, but there may still be a better version available for your computer. " ) + " <br/><br/> " +
betterresults . arg ( " -ANGLE " ) + " <br/><br/> " +
QObject : : tr ( " If you are running this in a virtual machine like VirtualBox or VMware, please disregard this message, as no better build is available. " ) + " <br/><br/> " +
lookfor + " <br/><br/> " +
notbotheragain , QMessageBox : : Ok , QMessageBox : : Ok ) ;
settings . setValue ( betterbuild , true ) ;
}
2014-06-02 08:16:28 +00:00
}
2014-06-02 17:35:45 +00:00
# endif
}
# else
if ( bad_graphics ) {
QMessageBox : : warning ( nullptr , QObject : : tr ( " Incompatible Graphics Hardware " ) ,
QObject : : tr ( " This build of SleepyHead requires OpenGL 2.0 support to function correctly, and unfortunately your computer lacks this capability. " ) + " <br/><br/> " +
QObject : : tr ( " You may need to update your computers graphics drivers from the GPU makers website. %1 " ) .
arg ( intel_graphics ? QObject : : tr ( " (<a href='http://intel.com/support'>Intel's support site</a>) " ) : " " ) + " <br/><br/> " +
QObject : : tr ( " Because graphs will not render correctly, and it may cause crashes, this build will now exit. " ) + " <br/><br/> " +
QObject : : tr ( " Don't be disheartened, there is another build available tagged \" <b>-BrokenGL</b> \" that should work on your computer. " ) + " <br/><br/> " +
lookfor + " <br/><br/> "
, QMessageBox : : Ok , QMessageBox : : Ok ) ;
exit ( 1 ) ;
2014-06-02 06:40:00 +00:00
}
# endif
2013-10-19 02:59:52 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Datafolder location Selection
////////////////////////////////////////////////////////////////////////////////////////////
2014-04-17 05:52:25 +00:00
bool change_data_dir = force_data_dir ;
bool havefolder = false ;
2013-10-19 02:59:52 +00:00
if ( ! settings . contains ( " Settings/AppRoot " ) ) {
2014-04-17 05:52:25 +00:00
change_data_dir = true ;
2013-10-19 02:59:52 +00:00
} else {
QDir dir ( GetAppRoot ( ) ) ;
2014-04-17 05:52:25 +00:00
if ( ! dir . exists ( ) ) {
change_data_dir = true ;
} else { havefolder = true ; }
2013-10-19 02:59:52 +00:00
}
if ( ! havefolder & & ! force_data_dir ) {
2014-05-17 05:04:40 +00:00
if ( QMessageBox : : question ( nullptr , STR_MessageBox_Question ,
QObject : : tr ( " No SleepyHead data folder was found. " ) + " \n \n " + QObject : : tr ( " Would you like SleepyHead to use the default location for storing its data? " ) + " \n \n " +
QDir : : toNativeSeparators ( GetAppRoot ( ) ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) = = QMessageBox : : Yes ) {
2014-04-17 05:52:25 +00:00
settings . setValue ( " Settings/AppRoot " , GetAppRoot ( ) ) ;
change_data_dir = false ;
2013-10-19 02:59:52 +00:00
}
}
retry_directory :
2014-04-17 05:52:25 +00:00
2013-10-19 02:59:52 +00:00
if ( change_data_dir ) {
2014-04-23 13:19:56 +00:00
QString datadir = QFileDialog : : getExistingDirectory ( nullptr ,
2014-04-17 05:52:25 +00:00
QObject : : tr ( " Choose or create new folder for SleepyHead data " ) , GetAppRoot ( ) ,
QFileDialog : : ShowDirsOnly ) ;
2013-10-19 02:59:52 +00:00
if ( datadir . isEmpty ( ) ) {
if ( ! havefolder ) {
2014-04-23 13:19:56 +00:00
QMessageBox : : information ( nullptr , QObject : : tr ( " Exiting " ) ,
2014-05-17 05:04:40 +00:00
QObject : : tr ( " As you did not select a data folder, SleepyHead will exit. " ) + " \n \n " + QObject : : tr ( " Next time you run, you will be asked again. " ) ) ;
2014-04-17 05:52:25 +00:00
return 0 ;
2013-10-19 02:59:52 +00:00
} else {
2014-05-17 05:04:40 +00:00
QMessageBox : : information ( nullptr , STR_MessageBox_Warning ,
QObject : : tr ( " You did not select a directory. " ) + " \n \n " + QObject : : tr ( " SleepyHead will now start with your old one. " ) + " \n \n " +
QDir : : toNativeSeparators ( GetAppRoot ( ) ) , QMessageBox : : Ok ) ;
2013-10-19 02:59:52 +00:00
}
} else {
QDir dir ( datadir ) ;
2014-04-17 05:52:25 +00:00
QFile file ( datadir + " /Preferences.xml " ) ;
2013-10-19 02:59:52 +00:00
if ( ! file . exists ( ) ) {
if ( dir . count ( ) > 2 ) {
// Not a new directory.. nag the user.
2014-05-17 05:04:40 +00:00
if ( QMessageBox : : question ( nullptr , STR_MessageBox_Warning ,
QObject : : tr ( " The folder you chose is not empty, nor does it already contain valid SleepyHead data. " )
+ " \n \n " + QObject : : tr ( " Are you sure you want to use this folder? " ) + " \n \n "
2014-04-17 05:52:25 +00:00
+ datadir , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) {
2013-10-19 02:59:52 +00:00
goto retry_directory ;
}
}
}
2014-04-17 05:52:25 +00:00
settings . setValue ( " Settings/AppRoot " , datadir ) ;
2013-10-19 02:59:52 +00:00
qDebug ( ) < < " Changing data folder to " < < datadir ;
}
}
////////////////////////////////////////////////////////////////////////////////////////////
2014-04-15 13:59:24 +00:00
// Register Importer Modules for autoscanner
2013-10-19 02:59:52 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
initialize ( ) ;
PRS1Loader : : Register ( ) ;
ResmedLoader : : Register ( ) ;
IntellipapLoader : : Register ( ) ;
FPIconLoader : : Register ( ) ;
2014-05-25 07:07:08 +00:00
CMS50Loader : : Register ( ) ;
2014-05-28 09:35:21 +00:00
MD300W1Loader : : Register ( ) ;
2014-05-25 07:07:08 +00:00
//ZEOLoader::Register(); // Use outside of directory importer..
2013-10-19 02:59:52 +00:00
2014-04-25 05:28:10 +00:00
p_pref = new Preferences ( " Preferences " ) ;
p_layout = new Preferences ( " Layout " ) ;
PREF . Open ( ) ;
LAYOUT . Open ( ) ;
2013-10-19 02:59:52 +00:00
// Scan for user profiles
Profiles : : Scan ( ) ;
2014-04-25 05:28:10 +00:00
2013-10-19 02:59:52 +00:00
//qRegisterMetaType<Preference>("Preference");
2014-04-17 05:52:25 +00:00
PREF [ " AppName " ] = STR_TR_SleepyHead ;
2013-10-19 02:59:52 +00:00
// Skip login screen, unless asked not to on the command line
2014-04-17 05:52:25 +00:00
bool skip_login = PREF . ExistsAndTrue ( STR_GEN_SkipLogin ) ;
if ( force_login_screen ) { skip_login = false ; }
2013-10-19 02:59:52 +00:00
// Todo: Make a wrapper for Preference settings, like Profile settings have..
2014-04-17 05:52:25 +00:00
QDateTime lastchecked , today = QDateTime : : currentDateTime ( ) ;
2014-04-25 05:28:10 +00:00
PREF . init ( STR_GEN_UpdatesAutoCheck , true ) ;
PREF . init ( STR_GEN_UpdateCheckFrequency , 7 ) ; // days
PREF . init ( STR_PREF_AllowEarlyUpdates , false ) ;
2013-10-19 02:59:52 +00:00
2012-01-06 16:07:54 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Check when last checked for updates..
////////////////////////////////////////////////////////////////////////////////////////////
2014-04-17 05:52:25 +00:00
bool check_updates = false ;
2011-12-21 14:24:09 +00:00
if ( PREF [ STR_GEN_UpdatesAutoCheck ] . toBool ( ) ) {
2014-04-17 05:52:25 +00:00
int update_frequency = PREF [ STR_GEN_UpdateCheckFrequency ] . toInt ( ) ;
int days = 1000 ;
lastchecked = PREF [ STR_GEN_UpdatesLastChecked ] . toDateTime ( ) ;
2011-12-21 14:24:09 +00:00
if ( PREF . contains ( STR_GEN_UpdatesLastChecked ) ) {
2014-04-17 05:52:25 +00:00
days = lastchecked . secsTo ( today ) ;
days / = 86400 ;
2011-10-21 05:50:31 +00:00
} ;
2014-04-17 05:52:25 +00:00
if ( days > update_frequency ) {
check_updates = true ;
2011-10-21 05:50:31 +00:00
}
}
2011-10-01 12:54:20 +00:00
if ( ! Profiles : : profiles . size ( ) ) {
2014-04-25 05:28:10 +00:00
// Show New User wizard..
2011-10-01 12:54:20 +00:00
NewProfile newprof ( 0 ) ;
2014-04-17 05:52:25 +00:00
if ( newprof . exec ( ) = = NewProfile : : Rejected ) {
2011-10-01 12:54:20 +00:00
return 0 ;
2014-04-17 05:52:25 +00:00
}
2011-10-30 14:01:33 +00:00
release_notes ( ) ;
2011-10-01 12:54:20 +00:00
} else {
2013-09-09 15:56:02 +00:00
if ( PREF . contains ( STR_PREF_VersionString ) ) {
2012-01-12 09:35:50 +00:00
2014-05-14 06:49:37 +00:00
if ( compareVersion ( PREF [ STR_PREF_VersionString ] . toString ( ) ) < 0 ) {
release_notes ( ) ;
2014-04-17 05:52:25 +00:00
check_updates = false ;
2011-10-01 12:54:20 +00:00
}
}
2014-04-17 05:52:25 +00:00
2011-11-18 09:18:41 +00:00
ProfileSelect profsel ( 0 ) ;
2014-04-17 05:52:25 +00:00
2011-11-18 09:05:22 +00:00
if ( skip_login ) {
2011-11-18 09:18:41 +00:00
profsel . QuickLogin ( ) ;
2014-04-17 05:52:25 +00:00
if ( profsel . result ( ) = = ProfileSelect : : Rejected ) {
2011-11-18 09:18:41 +00:00
exit ( 1 ) ;
}
2014-04-17 05:52:25 +00:00
p_profile = Profiles : : Get ( PREF [ STR_GEN_Profile ] . toString ( ) ) ;
2014-04-23 13:19:56 +00:00
} else { p_profile = nullptr ; }
2014-04-17 05:52:25 +00:00
2011-11-18 09:18:41 +00:00
if ( ! p_profile ) {
2014-04-17 05:52:25 +00:00
if ( profsel . exec ( ) = = ProfileSelect : : Rejected ) {
2011-11-18 09:05:22 +00:00
exit ( 1 ) ;
}
2011-10-01 12:54:20 +00:00
}
}
2011-10-21 05:50:31 +00:00
2014-04-17 05:52:25 +00:00
PREF [ STR_PREF_VersionString ] = FullVersionString ;
p_profile = Profiles : : Get ( PREF [ STR_GEN_Profile ] . toString ( ) ) ;
2011-10-01 12:54:20 +00:00
2014-04-25 05:28:10 +00:00
qDebug ( ) < < " Opened Profile " < < p_profile - > user - > userName ( ) ;
2012-01-06 16:07:54 +00:00
2014-04-17 05:52:25 +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 " ) ) {
2014-04-17 05:52:25 +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
2014-04-25 05:28:10 +00:00
qDebug ( ) < < " Selected Font " < < QApplication : : font ( ) . family ( ) ;
2011-10-01 12:54:20 +00:00
2014-04-25 05:28:10 +00:00
// Must be initialized AFTER profile creation
2011-07-18 02:33:25 +00:00
MainWindow w ;
2014-06-02 08:16:28 +00:00
2014-04-17 05:52:25 +00:00
mainwin = & w ;
2014-06-20 05:25:50 +00:00
// if (check_updates) { mainwin->CheckForUpdates(); }
2011-10-21 05:50:31 +00:00
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 ( ) ;
}