connectionutilities/ConnectionDialogs/ConnectionUiUtilities/NotifInc/ActiveConnectViaNote.h
changeset 20 9c97ad6591ae
parent 18 fcbbe021d614
child 21 b8e8e15e80f2
child 23 7ec726f93df1
child 28 860702281757
--- a/connectionutilities/ConnectionDialogs/ConnectionUiUtilities/NotifInc/ActiveConnectViaNote.h	Fri Apr 16 15:21:37 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,104 +0,0 @@
-/*
-* Copyright (c) 2006 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:  Declaration of CActiveConnectViaNote
-*
-*/
-
-
-#ifndef __ACTIVE_CONNECT_VIA_NOTE_H__
-#define __ACTIVE_CONNECT_VIA_NOTE_H__
-
-// INCLUDES
-#include "ConnectionUiUtilitiesCommon.h"
-#include <e32base.h>
-#include <cmmanager.h>
-
-// FORWARD DECLARATIONS
-class CConnectViaNoteNotif;
-class CGulIcon;
-class CEikImage;
-
-
-/**
- * CActiveConnectViaNote class,
- * an active object for COfflineWlanDisabledNoteNotif
- */     
-NONSHARABLE_CLASS( CActiveConnectViaNote ) : public CActive
-{
-public:
-    /**
-    * Constructor
-    */    
-    CActiveConnectViaNote( CConnectViaNoteNotif* aNotif, 
-                           const TConnUiUiDestConnMethodNoteId aData );
-
-    /**
-    * Launch ConnectViaNote setactive and starts active object
-    */    
-    void LaunchActiveConnectViaNote();
-    
-    /**
-    * Destructor
-    */
-    virtual ~CActiveConnectViaNote();
-
-protected:
-    /**
-    * DoCancel from CActive
-    */    
-    virtual void DoCancel();
-      
-    /**
-    * RunL from CActive
-    */      
-    virtual void RunL();
-    
-    /**
-    * GetDialogTextL() 
-    * @return 
-    */
-    HBufC* GetDialogTextL();
-
-    /**
-    * GetDestinationNameLC() 
-    * @param  aDestId
-    * @return 
-    */
-    HBufC* GetDestinationNameLC( const TUint32 aDestId );
-    
-    /**
-    * GetConnectionMethodNameLC
-    * @param aConnMId
-    * @return
-    */
-    HBufC* GetConnectionMethodNameLC( const TUint32 aConnMId );
-    
-    /**
-    * CreateEikImageFromCGulIconLC
-    * @return CEikImage*
-    */
-    CEikImage* CreateEikImageFromCGulIconLC();    
-    
-protected:
-    TRequestStatus* iClientStatus;   ///< used for complete runl, not owned 
-    CConnectViaNoteNotif* iNotif; ///< poiter to notifer, not owned
-    CGulIcon* iIcon;    
-    
-    TConnUiUiDestConnMethodNoteId iData;
-    RCmManager iCmManager;    
-};         
-
-#endif // __ACTIVE_CONNECT_VIA_NOTE_H__
-
-// End of File