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