diff -r e7aa27f58ae1 -r 578830873419 emailuis/nmailui/inc/nmapplication.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/emailuis/nmailui/inc/nmapplication.h Fri Apr 16 14:51:52 2010 +0300 @@ -0,0 +1,75 @@ +/* +* 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: +* +*/ + +#ifndef NMAPPLICATION_H +#define NMAPPLICATION_H + +#include +#include + +#include "nmuiviewids.h" + +class HbMainWindow; +class NmBaseView; +class NmUiEngine; +class NmMailboxListModel; +class HbAction; +class NmUiExtensionManager; +class NmSendServiceInterface; +class NmMailboxServiceInterface; +class NmViewerServiceInterface; +class NmViewerViewNetManager; + +class NmApplication : public QObject +{ + Q_OBJECT +public: + NmApplication(QObject *parent); + ~NmApplication(); + void enterNmUiView(NmUiStartParam *startParam); + HbMainWindow* mainWindow(); + NmUiExtensionManager &extManager(); + NmViewerViewNetManager* networkAccessManager(); + QSize screenSize(); + + +public slots: + void popView(); + void exitApplication(); + void delayedExitApplication(); + +private: + void createMainWindow(); + void pushView(NmBaseView *view); + void resetViewStack(); + +private: + HbMainWindow *mMainWindow; // Not owned + QStack *mViewStack; // Owned + NmUiViewId mActiveViewId; + NmUiEngine *mUiEngine; // Owned + HbAction *mBackAction; // Owned + NmUiExtensionManager *mExtensionManager;// Owned + NmSendServiceInterface *mSendServiceInterface; // Owned + NmMailboxServiceInterface *mMailboxServiceInterface; // Owned + NmViewerServiceInterface *mViewerServiceInterface; // Owned + NmMailboxListModel *mMbListModel; // Not owned + NmUiViewId mServiceViewId; + NmViewerViewNetManager* mNetManager; // Owned +}; + +#endif // NMAPPLICATION_H