diff -r 7e15987c4500 -r 8c311f9acc5e usbuis/usbuiqt/src/main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/usbuis/usbuiqt/src/main.cpp Fri Mar 19 09:48:52 2010 +0200 @@ -0,0 +1,54 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + +#include +#include +#include +#include +#include "usbviewmanager.h" + +int main(int argc, char *argv[]) +{ + HbApplication app(argc, argv); + + // add translator for application library + QString locale = QLocale::system().name(); + QTranslator translator; + QString filename = QString("usbapplication_") + locale; +#ifdef Q_OS_SYMBIAN + // TRAP is must here, otherwise it crashes +TRAP_IGNORE( + bool loaded(false); + loaded = translator.load( filename, QString("z:/resource/qt/translations") ); + if (!loaded) + translator.load(filename, QString("c:/resource/qt/translations") ); +); +#else + translator.load(filename, QString("resource") ); +#endif //Q_OS_SYMBIAN + app.installTranslator(&translator); + + HbMainWindow mainWindow; + + // create the view manager, which handles 3 HbViews and add into mainWindow. + UsbViewManager* mViewManager = new UsbViewManager( &mainWindow, &app ); + mViewManager->addView(); + + mainWindow.show(); + return app.exec(); +}