diff -r d9aefe59d544 -r 3075d9b614e6 camerauis/cameraxui/cxui/src/cxuiapplication.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/camerauis/cameraxui/cxui/src/cxuiapplication.cpp Thu May 13 21:30:19 2010 +0300 @@ -0,0 +1,63 @@ +/* +* Copyright (c) 2009-2010 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 "cxutils.h" +#include "cxuiapplication.h" + + +/*! + \class CxuiApplication + \brief CxuiApplication is a wrapper used for getting platform UI events. + + CxuiApplication is a wrapper used for getting platform UI events. + + Other classes may connect to CxuiApplication::symbianEvent signal, which is + emitted whenever a QSymbianEvent is posted to application. + +*/ +CxuiApplication::CxuiApplication(int &argc, char *argv[]) + : HbApplication(argc, argv, Hb::NoSplash) +{ + CX_DEBUG_IN_FUNCTION(); +} + +/*! +* Destructor +*/ +CxuiApplication::~CxuiApplication() +{ + CX_DEBUG_IN_FUNCTION(); +} + +#if defined(Q_WS_S60) +/*! +* Event filter. +* Reimplemented from HbApplication. +* Provides a signal with the event for rest of camera ui to use. +* Event handling is then progressed to HbApplication to process. +*/ +bool CxuiApplication::symbianEventFilter(const QSymbianEvent *e) +{ + emit symbianEvent(e); + return HbApplication::symbianEventFilter(e); +} +#endif // Q_WS_S60 + +// end of file