multimediacommsengine/tsrc/MCETestUI/MCETestUIEngine/src/TMCETestUIEngineCmdNotifyEvent.cpp
changeset 0 1bce908db942
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/multimediacommsengine/tsrc/MCETestUI/MCETestUIEngine/src/TMCETestUIEngineCmdNotifyEvent.cpp	Tue Feb 02 01:04:58 2010 +0200
@@ -0,0 +1,121 @@
+/*
+* Copyright (c) 2005 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:    Implementation.
+*
+*/
+
+
+
+
+// INCLUDES
+
+#include "TMCETestUIEngineCmdNotifyEvent.h"
+#include "CMCETestUIEngineInEvent.h"
+#include "CMCETestUIQuestionSingleSelection.h"
+#include "CMCETestUIQuestionDataQuery.h"
+#include <MCEInEvent.h>
+
+// -----------------------------------------------------------------------------
+// TMCETestUIEngineCmdNotifyEvent::TMCETestUIEngineCmdNotifyEvent
+// -----------------------------------------------------------------------------
+//
+TMCETestUIEngineCmdNotifyEvent::TMCETestUIEngineCmdNotifyEvent( 
+		            CMCETestUIEngine& aEngine,
+		            CMCETestUIEngineInEvent& aInEvent )
+    : TMCETestUIEngineCmdBase( aEngine ),
+      iInEvent( aInEvent )		            
+    {
+    }
+
+// -----------------------------------------------------------------------------
+// TMCETestUIEngineCmdNotifyEvent::ExecuteL
+// -----------------------------------------------------------------------------
+//
+EXPORT_C void TMCETestUIEngineCmdNotifyEvent::ExecuteL()
+	{
+
+	TNotifyValues notifyValues;
+    if( iEngine.NotifyValues( notifyValues) )
+    	{
+    	CDesC8Array* headers;
+    	headers = new (ELeave) CDesC8ArrayFlat( 1 );
+    	CleanupStack::PushL( headers );
+
+		CMCETestUIQuestionDataQuery* question = 
+    			CMCETestUIQuestionDataQuery::NewLC();
+		question->SetCaptionL( KUserQuestionInputEventHeader );
+		question->SetDefaultValueL(notifyValues.headers  );
+		question->SetAnswerL( notifyValues.headers );
+		TBufC8<100> headersbuffer( question->Answer8() );
+		CleanupStack::PopAndDestroy( question );
+		headers->AppendL( headersbuffer );
+
+/*
+        CMCETestUIQuestionDataQuery* question2 = 
+		    CMCETestUIQuestionDataQuery::NewLC();
+		    
+        question2->SetCaptionL( KUserQuestionInputEventContentType );
+    	question2->SetDefaultValueL(notifyValues.contentType  );
+    	question2->SetAnswerL( notifyValues.contentType  );
+    	
+    	HBufC8 *contentType = HBufC8::NewLC( question2->Answer8().Length() );
+    	contentType->Des().Copy( question2->Answer8() );
+    	    	
+    	CleanupStack::PopAndDestroy( question2 );
+
+        CMCETestUIQuestionDataQuery* question3 = 
+		    CMCETestUIQuestionDataQuery::NewLC();
+		    
+        question3->SetCaptionL( KUserQuestionInputEventContent );
+    	question3->SetDefaultValueL(notifyValues.contentType  );
+    	question3->SetAnswerL( notifyValues.contentType  );
+    	HBufC8 *content = HBufC8::NewLC( question3->Answer8().Length() );
+    	content->Des().Copy( question3->Answer8() );
+    	
+    	
+    	CleanupStack::PopAndDestroy( question3 );
+    	
+    	CleanupStack::Pop( content );
+    	CleanupStack::Pop( contentType );
+   */
+    	
+    	
+    	
+    	HBufC8 *contentType = HBufC8::NewLC( KNotifyContentType().Length() );
+    	contentType->Des().Copy( KNotifyContentType );
+    	
+    	HBufC8 *content = HBufC8::NewLC( KNotifyContent().Length() );
+    	content->Des().Copy( KNotifyContent );
+    	
+    	CleanupStack::Pop( content );
+    	CleanupStack::Pop( contentType );
+    	CleanupStack::Pop( headers );
+    	
+    	iInEvent.InEvent().NotifyL( headers, contentType, content );
+    	iEngine.EngineStateChangedL();
+	    }
+	}
+// -----------------------------------------------------------------------------
+// TMCETestUIEngineCmdNotifyEvent::Caption
+// -----------------------------------------------------------------------------
+//
+EXPORT_C const TDesC& TMCETestUIEngineCmdNotifyEvent::Caption() const
+	{
+	return KCommandCaptionNotifyEvent;
+	}
+
+
+
+
+// End of File