diff -r 6a20128ce557 -r ebfee66fde93 messagingapp/msgui/msgapp/src/msgmainwindow.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingapp/msgui/msgapp/src/msgmainwindow.cpp Fri Jun 04 10:25:39 2010 +0100 @@ -0,0 +1,63 @@ +/* + * 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: + * Main window of the messaging application. Activates the default view. + * + */ + +#include "msgmainwindow.h" + +#include "msgviewmanager.h" +#include "msgserviceinterface.h" +#include "msgsendserviceinterface.h" +#include "conversationsengine.h" + + +//--------------------------------------------------------------- +// MsgMainWindow::MsgMainWindow +// Constructor +//--------------------------------------------------------------- +MsgMainWindow::MsgMainWindow(bool serviceRequest, QWidget *parent) : +HbMainWindow(parent), mMsgSI(0), mMsgSendSI(0) +{ + MsgViewManager* viewManager = new MsgViewManager(serviceRequest,this,this); + mMsgSI = new MsgServiceInterface(NULL,viewManager); + mMsgSendSI = new MsgSendServiceInterface(NULL,viewManager); + + //Model creation + ConversationsEngine::instance(); + +} + +//--------------------------------------------------------------- +// MsgMainWindow::~MsgMainWindow +// Constructor +//--------------------------------------------------------------- +MsgMainWindow::~MsgMainWindow() +{ + if (mMsgSI) + { + delete mMsgSI; + mMsgSI = NULL; + } + if (mMsgSendSI) + { + delete mMsgSendSI; + mMsgSendSI = NULL; + } + + delete ConversationsEngine::instance(); +} + +// End of file