X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=main.cpp;h=69bf13c72c9ac0098e57cf56af04aaa361475eba;hb=9d6624b77d5ce16de6f3f722fd500f1a8ff6418f;hp=c1c710d3cd6069468f31c200f6f1f3930c95c87f;hpb=49c54409184e0c72b8ca87f9f3f7331681d95391;p=dorian diff --git a/main.cpp b/main.cpp index c1c710d..69bf13c 100644 --- a/main.cpp +++ b/main.cpp @@ -1,46 +1,82 @@ -#if defined(Q_OS_UNIX) && !defined(Q_OS_SYMBIAN) -#include -#endif - #include #include "mainwindow.h" #include "trace.h" #include "settings.h" +#include "library.h" +#include "settings.h" +#include "bookdb.h" +#include "search.h" +#include "platform.h" +#include "splash.h" + +#ifdef Q_OS_SYMBIAN +# include "mediakeysobserver.h" +#endif static const char *DORIAN_VERSION = #include "pkg/version.txt" ; +static const QtMsgType DORIAN_DEFAULT_TRACE_LEVEL = +#ifdef Q_OS_SYMBIAN + QtDebugMsg +#else + QtWarningMsg +#endif + ; + int main(int argc, char *argv[]) { - QApplication a(argc, argv); + int ret; - Trace::level = (QtMsgType)Settings::instance()-> - value("tracelevel", (int)QtWarningMsg).toInt(); - qInstallMsgHandler(Trace::messageHandler); + // Set up application + QApplication app(argc, argv); + app.setApplicationName("Dorian"); + app.setApplicationVersion(DORIAN_VERSION); + app.setOrganizationDomain("pipacs.com"); + app.setOrganizationName("Pipacs"); - a.setApplicationName("Dorian"); - a.setApplicationVersion(DORIAN_VERSION); - a.setOrganizationDomain("pipacs.com"); - a.setOrganizationName("Pipacs"); + // Initialize tracing + Settings *settings = Settings::instance(); + Trace::level = (QtMsgType)settings-> + value("tracelevel", (int)DORIAN_DEFAULT_TRACE_LEVEL).toInt(); + Trace::setFileName(settings->value("tracefilename").toString()); + qInstallMsgHandler(Trace::messageHandler); #ifdef Q_OS_SYMBIAN - // Remove context menu from all widgets - foreach (QWidget *w, QApplication::allWidgets()) { - w->setContextMenuPolicy(Qt::NoContextMenu); - } -#endif // Q_OS_SYMBIAN + // Show splash screen + Splash splash; + splash.show(); + app.processEvents(); +#endif - MainWindow w; - w.show(); + // Initialize main window + MainWindow *mainWindow = new MainWindow(); + settings->apply(); + mainWindow->initialize(); - int ret = a.exec(); - if (ret == 1000) { -#if defined(Q_OS_UNIX) && !defined(Q_OS_SYMBIAN) - extern char **environ; - execve(argv[0], argv, environ); +#ifdef Q_OS_SYMBIAN + // Hide splash screen + splash.finish(mainWindow); #endif + + // Run event loop, Re-start application if event loop exit code was 1000 + ret = app.exec(); + if (ret == 1000) { + Platform::instance()->restart(argv); } + + // Release singletons + delete mainWindow; + Library::close(); + BookDb::close(); + Settings::close(); + Search::close(); + Platform::close(); +#ifdef Q_OS_SYMBIAN + MediaKeysObserver::close(); +#endif + return ret; }