connectionutilities/ConnectionDialogs/ConnectionUiUtilities/NotifInc/connectionerrordiscreetpopupnotif.h
changeset 20 9c97ad6591ae
parent 18 fcbbe021d614
child 21 b8e8e15e80f2
child 23 7ec726f93df1
child 28 860702281757
equal deleted inserted replaced
18:fcbbe021d614 20:9c97ad6591ae
     1 /*
       
     2  * Copyright (c) 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 "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 Generic Connection Ui Utilities Notifier
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef __CONNECTIONERRORDISCREETPOPUPNOTIF_H__
       
    19 #define __CONNECTIONERRORDISCREETPOPUPNOTIF_H__
       
    20 
       
    21 // INCLUDES
       
    22 #include "ConnectionDialogsNotifBase.h"
       
    23 
       
    24 //FORWARD DECLARATION
       
    25 class CConnectionErrorDiscreetPopup;
       
    26 
       
    27 /**
       
    28  * CConnectionErrorDiscreetPopupNotif class
       
    29  */
       
    30 NONSHARABLE_CLASS( CConnectionErrorDiscreetPopupNotif ) : 
       
    31 public CConnectionDialogsNotifBase
       
    32     {
       
    33 public:
       
    34     /**
       
    35      * NewL function
       
    36      * @param  -
       
    37      * return CConnectionErrorDiscreetPopupNotif*
       
    38      */
       
    39     static CConnectionErrorDiscreetPopupNotif* NewL(
       
    40             const TBool aResourceFileResponsible );
       
    41 
       
    42     /**
       
    43      * RegisterL register the client notifier function
       
    44      * @param  -
       
    45      * return TNotifierInfo
       
    46      */
       
    47     TNotifierInfo RegisterL();
       
    48 
       
    49     /**
       
    50      * Start the Notifier
       
    51      * @param  aBuffer    Buffer
       
    52      * @param  aReplySlot Identifies which message argument to use for the 
       
    53      *                    reply. This message argument will refer to a 
       
    54      *                    modifiable descriptor, a TDes8 type, into which
       
    55      *                    data can be returned. 
       
    56      * @param  aMessage   Message
       
    57      * return -
       
    58      */
       
    59     void StartL( const TDesC8& aBuffer, TInt aReplySlot,
       
    60             const RMessagePtr2& aMessage );
       
    61 
       
    62     /**
       
    63      * Cancel() the notifier
       
    64      * @param  -
       
    65      * return -
       
    66      */
       
    67     void Cancel();
       
    68 
       
    69     /**
       
    70      * CompleteL the notifier is complete
       
    71      * @param  aStatus status
       
    72      * return  -
       
    73      */
       
    74     void CompleteL( TInt aStatus );
       
    75 
       
    76 protected:
       
    77     /**
       
    78      * Constructor
       
    79      */
       
    80     CConnectionErrorDiscreetPopupNotif();
       
    81 
       
    82 protected:
       
    83 
       
    84     // pointer to active object, owned
       
    85     CConnectionErrorDiscreetPopup* iActiveNote;
       
    86 
       
    87     };
       
    88 
       
    89 #endif //__CONNECTINGVIADISCREETPOPUPNOTIF_H__
       
    90 // End of File
       
    91