idlehomescreen/nativeuicontroller/src/aidialogrenderer.cpp
changeset 0 f72a12da539e
child 9 f966699dea19
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/idlehomescreen/nativeuicontroller/src/aidialogrenderer.cpp	Thu Dec 17 08:40:49 2009 +0200
@@ -0,0 +1,163 @@
+/*
+* Copyright (c) 2005-2007 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:  Dialog renderer.
+*
+*/
+
+
+#include <e32property.h>
+#include <activeidle2domainpskeys.h>
+#include <aipropertyextension.h>
+#include <aknnotedialog.h>
+#include <avkon.rsg>
+#include <StringLoader.h>
+#include <AiNativeUi.rsg>
+#include "aidialogrenderer.h"
+#include "ainativeuiplugins.h"
+#ifdef __COVER_DISPLAY
+#include "aisecondarydisplayapi.h"
+#endif
+
+using namespace AiNativeUiController;
+
+// ======== MEMBER FUNCTIONS ========
+
+CAiDialogRenderer* CAiDialogRenderer::NewLC()
+    {
+    CAiDialogRenderer* self = new( ELeave ) CAiDialogRenderer;
+    CleanupStack::PushL( self );
+    return self;
+    }
+
+
+CAiDialogRenderer::~CAiDialogRenderer()
+    {
+    delete iDialog;
+    delete iText;
+    }
+
+
+CAiDialogRenderer::CAiDialogRenderer()
+    {
+    }
+    
+
+void CAiDialogRenderer::DoPublishL( MAiPropertyExtension& aPlugin, 
+                                    TInt aContent, 
+                                    TInt aResource,
+                                    TInt /*aIndex*/  )
+    {
+    if( aPlugin.PublisherInfoL()->iUid == KDeviceStatusPluginUid )
+    	{
+	    switch( aContent )
+	        {
+	        case EAiDeviceStatusContentSIMRegStatus:
+	            {
+	            TInt idleState;
+	            if ( RProperty::Get(
+	                    KPSUidAiInformation,
+	                    KActiveIdleState,
+	                    idleState ) != KErrNone )
+	                {
+	                idleState = EPSAiBackground;
+	                }
+                if( aResource == EAiDeviceStatusResourceSIMRegFail )
+                    {
+    	            if( iShowDialog )
+	                    {
+	                    break;
+	                    }
+	                HBufC* temp = StringLoader::LoadL( 
+	                    R_ACTIVEIDLE_SIM_REGISTRATION_FAILED );
+	                delete iText;
+	                iText = temp;
+#ifdef __COVER_DISPLAY
+	                iDialogId = EAiSimRegistrationFailed;
+#endif
+	                iShowDialog = ETrue;
+                    }
+	            if ( idleState == EPSAiForeground )
+                    {
+  	                ShowDialogL();	                    
+                    }
+	            
+	            break;
+	            }
+	        default:
+	            {
+	            User::Leave( KErrNotFound );
+	            break;
+	            }
+	        };
+    	}
+    else
+   		{
+   		User::Leave( KErrNotFound );	
+   		}
+    }
+
+void CAiDialogRenderer::DoCleanL( MAiPropertyExtension& /*aPlugin*/, 
+                                    TInt aContent )
+    {
+    switch( aContent )
+        {
+        case EAiDeviceStatusContentSIMRegStatus:
+            {
+            delete iDialog;
+            iDialog = NULL;
+            iShowDialog = EFalse;
+            break;
+            }
+        default:
+            {
+            User::Leave( KErrNotFound );
+            break;
+            }
+        };
+
+    }
+    
+    
+void CAiDialogRenderer::ShowDialogL()
+    {
+    if ( iDialog )
+        {
+        return;
+        }
+
+    iDialog = 
+        new (ELeave) CAknNoteDialog( 
+            reinterpret_cast< CEikDialog** >( &iDialog ),
+            CAknNoteDialog::EConfirmationTone,
+            CAknNoteDialog::ENoTimeout );
+
+#ifdef __COVER_DISPLAY
+    iDialog->PublishDialogL( iDialogId, KAICategory );
+#endif
+
+    iDialog->PrepareLC( R_AKN_INFORMATION_NOTE_DIALOG );
+
+    iDialog->ButtonGroupContainer().SetCommandSetL( R_AVKON_SOFTKEYS_OK_EMPTY );
+    iDialog->SetTextL( *iText );
+    iDialog->RunLD();
+    }
+    
+    
+void CAiDialogRenderer::FocusObtainedL()
+    {
+    if( iShowDialog )
+        {
+        ShowDialogL();
+        }
+    }