multimediacommsengine/tsrc/MCETestUI/inc/createSendDTMFSequenceDialog.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     1 /*
       
     2 * Copyright (c) 2004 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #ifndef __CREATEDTMFSEQUENCEDIALOG_H__
       
    22 #define __CREATEDTMFSEQUENCEDIALOG_H__ (0x1)
       
    23 
       
    24 // INCLUDES
       
    25 #include <E32Base.h>
       
    26 #include <eikbutb.h>
       
    27 #include <eikenv.h>
       
    28 #include <eikdialg.h>
       
    29 #include <eikedwin.h>
       
    30 #include <in_sock.h> // for TInetAddr
       
    31 #include <es_sock.h> // for SetPort()
       
    32 #include <utf.h>
       
    33 #include <coeinput.h>
       
    34 #include <eikmfne.h>
       
    35 
       
    36 //#include <akndialog.h>
       
    37 #include <aknform.h>
       
    38 
       
    39 #include "MCETestUI.hrh"
       
    40 #include "CMCETestUIEngine.h"
       
    41 
       
    42 /**
       
    43  * @class CStartDTMFDialog
       
    44  *
       
    45  * A dialog that uses a CAknForm control
       
    46  * and allows a the user to edit session type parameters
       
    47  */
       
    48 
       
    49 class CSendDTMFSequenceDialog: public CAknForm
       
    50     {
       
    51     public:
       
    52        /**
       
    53          Perform the first phase of two phase construction
       
    54         @param aParams Receive parameters
       
    55         */
       
    56       //  CCreatePoCSessionDialog( CMCETestUIEngine ::TPoCSessionParams* aParams );
       
    57          CSendDTMFSequenceDialog( TDes& aSequence );
       
    58 
       
    59        /**
       
    60          Destroy the object
       
    61         */
       
    62         ~CSendDTMFSequenceDialog();
       
    63 
       
    64     private: // from CEikDialog
       
    65        /**
       
    66          Exit and return values
       
    67         @param aKeyCode Key that terminated dialog
       
    68         @result Always returns ETrue, Ok to exit
       
    69         */
       
    70         TBool OkToExitL(TInt aKeyCode);
       
    71 
       
    72        /**
       
    73          Perform dynamic initialisation prior to displaying dialog
       
    74         */
       
    75         void PreLayoutDynInitL();
       
    76 
       
    77     private:
       
    78     
       
    79         TDes& iSequence;
       
    80 
       
    81     };
       
    82 
       
    83 /**
       
    84  Append two message and pass it to a single message dialog.
       
    85  @param aMessage1
       
    86  @param aMessage2
       
    87  */
       
    88 extern void MessageBox( const TDesC& aMessage1, const TDesC& aMessage2 );
       
    89        
       
    90 /**
       
    91  Display message box dialog.
       
    92  @param aMessage
       
    93  */
       
    94 extern void MessageBox( const TDesC& aMessage );
       
    95 
       
    96 #endif // __CREATESESSIONDIALOG_H__
       
    97 
       
    98 // End of File