diff -r 000000000000 -r 1bce908db942 multimediacommsengine/tsrc/MCETestUI/inc/CMCETestUIMainViewModel.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/multimediacommsengine/tsrc/MCETestUI/inc/CMCETestUIMainViewModel.h Tue Feb 02 01:04:58 2010 +0200 @@ -0,0 +1,95 @@ +/* +* 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 __CMCETESTUIMAINVIEWMODEL_H +#define __CMCETESTUIMAINVIEWMODEL_H + +// INCLUDES + +#include +#include + +#include "MMCETestUIEngineCmdProvider.h" + +// FORWARD DECLARATIONS + +class CMCETestUIEngine; + + +// CLASS DECLARATION + +/** +* CMCETestUIMainViewModel +* +*/ +class CMCETestUIMainViewModel : public MDesCArray + { +public: // Constructors and destructor + + static CMCETestUIMainViewModel* NewL( CMCETestUIEngine& aEngine ); + + /** + * Destructor. + */ + ~CMCETestUIMainViewModel(); + +public: // from MDesCArray + + TInt MdcaCount() const; + TPtrC MdcaPoint( TInt aIndex ) const; + +public: // New functions + + TBool IsManagerSelected( TInt aIndex ) const; + TInt SelectedProfileIndex( TInt aIndex ) const; + TInt SelectedSessionIndex( TInt aIndex ) const; + TInt SelectedEventIndex( TInt aIndex ) const; + TInt SelectedReferIndex( TInt aIndex ) const; + MMCETestUIEngineCmdProvider& CmdProvider( TInt aIndex ); + +private: // Constructors + + CMCETestUIMainViewModel( CMCETestUIEngine& aEngine ); + CMCETestUIMainViewModel(); + + void ConstructL(); + + +private: // convenience functions + + void PopulateMainViewManagerL(); + void PopulateMainViewProfilesL(); + void PopulateMainViewOutSessionsL(); + void PopulateMainViewInSessionsL(); + void PopulateMainViewOutEventsL(); + void PopulateMainViewInEventsL(); + void PopulateMainViewOutRefersL(); + void PopulateMainViewInRefersL(); + + +private: //data + + CDesCArray* iArray; + CMCETestUIEngine& iEngine; + + TBool managerSuppressed; + TBool profilesSuppressed; + }; + +#endif + +// End of File