connectionutilities/ConnectionDialogs/src/ConnectionDialogsNotifBase.cpp
changeset 0 5a93021fdf25
child 26 0a9e01492035
child 41 bbb64eb3bdee
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/connectionutilities/ConnectionDialogs/src/ConnectionDialogsNotifBase.cpp	Thu Dec 17 08:55:21 2009 +0200
@@ -0,0 +1,135 @@
+/*
+* Copyright (c) 2004 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 of base plugin.
+*
+*/
+
+
+// INCLUDE FILES
+
+#include "ConnectionDialogsNotifBase.h"
+
+#include <bautils.h>
+#include <eikenv.h>
+#include <data_caging_path_literals.hrh>
+
+
+// CONSTANTS
+
+// ROM folder
+_LIT( KDriveZ, "z:" );
+
+
+// ================= MEMBER FUNCTIONS =======================
+    
+
+// ---------------------------------------------------------
+// CConnectionDialogsNotifBase::TNotifierInfo 
+//                                  CConnectionDialogsNotifBase::Info() const
+// ---------------------------------------------------------
+//
+CConnectionDialogsNotifBase::TNotifierInfo 
+                                    CConnectionDialogsNotifBase::Info() const
+    {
+    return iInfo;
+    }
+
+
+// ---------------------------------------------------------
+// TPtrC8 CConnectionDialogsNotifBase::StartL()
+// ---------------------------------------------------------
+//
+TPtrC8 CConnectionDialogsNotifBase::StartL( const TDesC8& /*aBuffer*/ )
+    {
+    return KNullDesC8().Ptr();
+    }
+
+// ---------------------------------------------------------
+// void CConnectionDialogsNotifBase::Cancel()
+// ---------------------------------------------------------
+//
+void CConnectionDialogsNotifBase::Cancel()
+    {
+    }
+
+// ---------------------------------------------------------
+// TPtrC8 CConnectionDialogsNotifBase::UpdateL()
+// ---------------------------------------------------------
+//
+TPtrC8 CConnectionDialogsNotifBase::UpdateL(const TDesC8& /*aBuffer*/)
+    {
+    return KNullDesC8().Ptr();
+    }
+
+
+// ---------------------------------------------------------
+// void CConnectionDialogsNotifBase::Release()
+// ---------------------------------------------------------
+//
+void CConnectionDialogsNotifBase::Release()
+    {
+    delete this;
+    }
+
+
+// ---------------------------------------------------------
+// CConnectionDialogsNotifBase::CConnectionDialogsNotifBase()
+// ---------------------------------------------------------
+//
+CConnectionDialogsNotifBase::CConnectionDialogsNotifBase()
+: iCancelled( EFalse ), 
+  iResource( 0 )
+    {
+    }
+
+
+// ---------------------------------------------------------
+// void CConnectionDialogsNotifBase::ConstructL()
+// ---------------------------------------------------------
+//
+void CConnectionDialogsNotifBase::ConstructL( const TDesC& aResourceFileName,
+                                         const TBool aResourceFileResponsible )
+    {
+    if ( aResourceFileResponsible )
+        {
+        // Since this is a .DLL, resource files that are to be used by the
+        // notifier aren't added automatically so we do that here.
+        TFileName fileName;
+
+        fileName.Append( KDriveZ );
+        fileName.Append( KDC_RESOURCE_FILES_DIR );   
+        fileName.Append( aResourceFileName );
+
+        BaflUtils::NearestLanguageFile( CCoeEnv::Static()->FsSession(),
+                                        fileName );
+        iResource = CCoeEnv::Static()->AddResourceFileL( fileName );
+        }
+    }
+
+
+// ---------------------------------------------------------
+// CConnectionDialogsNotifBase::~CConnectionDialogsNotifBase()
+// ---------------------------------------------------------
+//
+CConnectionDialogsNotifBase::~CConnectionDialogsNotifBase()
+    {   
+    if ( iResource )
+        {
+        CCoeEnv::Static()->DeleteResourceFile( iResource );        
+        }
+    }
+
+
+
+// End of File