wlansecuritysettings/wlaneapsettingsui/EapMschapv2/NotifierUi/inc/MsChapv2NotifDialog.h
branchRCL_3
changeset 19 c74b3d9f6b9e
equal deleted inserted replaced
18:bad0cc58d154 19:c74b3d9f6b9e
       
     1 /*
       
     2 * Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: Declaration of dialog class of MsChapv2NotifDialog.
       
    15 *
       
    16 */
       
    17 
       
    18 /*
       
    19 * %version: 15 %
       
    20 */
       
    21 
       
    22 #ifndef __MSCHAPV2DIALOG_H__
       
    23 #define __MSCHAPV2DIALOG_H__
       
    24 
       
    25 // INCLUDES
       
    26 #include <eikdialg.h>
       
    27 #include <badesca.h>
       
    28 #include <e32cons.h>
       
    29 #include <AknForm.h>
       
    30 #include <AknQueryDialog.h>
       
    31 #include "MsChapv2NotifDlgPlugin.h"
       
    32 
       
    33 
       
    34 // CLASS DECLARATION
       
    35 
       
    36 /**
       
    37 */
       
    38 class CMsChapv2Dialog : public CAknMultiLineDataQueryDialog
       
    39     {
       
    40     protected:
       
    41         CMsChapv2Dialog( CMsChapv2DialogPlugin* aPlugin, 
       
    42                          TBool aUsernameExists );
       
    43         void ConstructL();
       
    44 
       
    45     public:
       
    46         static CMsChapv2Dialog* NewL( TDes& aUsername, TDes& aPassword, 
       
    47                                       CMsChapv2DialogPlugin*  aPlugin );
       
    48         ~CMsChapv2Dialog();
       
    49 
       
    50     private:
       
    51         virtual TBool OkToExitL( TInt aButtonId );
       
    52         void HandleResourceChange( TInt aType );
       
    53         
       
    54     private:
       
    55         CMsChapv2DialogPlugin* iPlugin;     // Pointer to the notifier plugin
       
    56         TBool iUsernameExists;
       
    57     };
       
    58 
       
    59 #endif  // __MSCHAPV2DIALOG_H__
       
    60 
       
    61 // End of File