diff -r 6b1d113cdff3 -r 6638e7f4bd8f telephonyprotocols/pdplayer/inc/authenticationdialog.h --- a/telephonyprotocols/pdplayer/inc/authenticationdialog.h Mon May 03 13:37:20 2010 +0300 +++ b/telephonyprotocols/pdplayer/inc/authenticationdialog.h Thu May 06 15:10:38 2010 +0100 @@ -1,78 +1,78 @@ -// Copyright (c) 2010 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: -// Interface between the PDP and the connection agent dialog server. -// - -/** - @file - @internalComponent -*/ - -#ifndef SYMBIAN_AUTHENTICATION_DIALOG_H -#define SYMBIAN_AUTHENTICATION_DIALOG_H - -#include -#include - -class MAuthenticationDialogObserver -/** -MAuthenticationDialogObserver - -Mixin observer class to be derived from by classes wishing to use CAuthenticationDialog. -When the Authenticate function call completes the AuthenticationComplete function will -be called on the observer. -@internalTechnology -*/ - { -public: - virtual void AuthenticationCompleteL(TInt aError) = 0; - }; - -class CAuthenticationDialog : public CActive -/** -CAuthenticationDialog - -Has an RGenConAgentDialogServer class which provides the interface -to the dialog server. - -@internalTechnology -*/ - { -public: - static CAuthenticationDialog* NewL(TInt aPriority = CActive::EPriorityStandard); - ~CAuthenticationDialog(); - - /** - * The aIsReconnect parameter indicates to the dialog server if it is a reconnection attempt. - * The reasoning behind providing this information is that the dialog server implementation may choose to - * suppress the dialog if this is a reconnection and just silently return the values entered by the user - * at the first connection attempt. Here the dafault value is False, so dialog server will prompt for - * authentication information all the time. - */ - void Authenticate(MAuthenticationDialogObserver& aObserver, TDes& aUsername, TDes& aPassword, TBool aIsReconnect = EFalse); - -private: - CAuthenticationDialog(TInt aPriority); - void ConstructL(); - - /** From CActive */ - virtual void DoCancel(); - virtual void RunL(); - -private: - MAuthenticationDialogObserver* iObserver; - RGenConAgentDialogServer iDlgServ; - }; - -#endif +// Copyright (c) 2010 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: +// Interface between the PDP and the connection agent dialog server. +// + +/** + @file + @internalComponent +*/ + +#ifndef SYMBIAN_AUTHENTICATION_DIALOG_H +#define SYMBIAN_AUTHENTICATION_DIALOG_H + +#include +#include + +class MAuthenticationDialogObserver +/** +MAuthenticationDialogObserver + +Mixin observer class to be derived from by classes wishing to use CAuthenticationDialog. +When the Authenticate function call completes the AuthenticationComplete function will +be called on the observer. +@internalTechnology +*/ + { +public: + virtual void AuthenticationCompleteL(TInt aError) = 0; + }; + +class CAuthenticationDialog : public CActive +/** +CAuthenticationDialog + +Has an RGenConAgentDialogServer class which provides the interface +to the dialog server. + +@internalTechnology +*/ + { +public: + static CAuthenticationDialog* NewL(TInt aPriority = CActive::EPriorityStandard); + ~CAuthenticationDialog(); + + /** + * The aIsReconnect parameter indicates to the dialog server if it is a reconnection attempt. + * The reasoning behind providing this information is that the dialog server implementation may choose to + * suppress the dialog if this is a reconnection and just silently return the values entered by the user + * at the first connection attempt. Here the dafault value is False, so dialog server will prompt for + * authentication information all the time. + */ + void Authenticate(MAuthenticationDialogObserver& aObserver, TDes& aUsername, TDes& aPassword, TBool aIsReconnect = EFalse); + +private: + CAuthenticationDialog(TInt aPriority); + void ConstructL(); + + /** From CActive */ + virtual void DoCancel(); + virtual void RunL(); + +private: + MAuthenticationDialogObserver* iObserver; + RGenConAgentDialogServer iDlgServ; + }; + +#endif