multimediacommsengine/tsrc/MCETestUI/inc/createreferdialog.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 __CREATEREFERDIALOG_H__
       
    22 #define __CREATEREFERDIALOG_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 #include <AknPopupFieldText.h>
       
    39 
       
    40 #include "MCETestUI.hrh"
       
    41 #include "CMCETestUIEngine.h"
       
    42 
       
    43 class TEventParams ;
       
    44 /**
       
    45  * @class CCreateSessionDialog
       
    46  *
       
    47  * A dialog that uses a CAknForm control
       
    48  * and allows a the user to edit session type parameters
       
    49  */
       
    50 
       
    51 class CCreateReferDialog: public CAknForm
       
    52     {
       
    53     public:
       
    54        /**
       
    55          Perform the first phase of two phase construction
       
    56         @param aParams Receive parameters
       
    57         */
       
    58       //  CCreatePoCSessionDialog( CMCETestUIEngine ::TPoCSessionParams* aParams );
       
    59          CCreateReferDialog(TReferParams* aParams);
       
    60 
       
    61        /**
       
    62          Destroy the object
       
    63         */
       
    64         ~CCreateReferDialog();
       
    65 
       
    66     private: // from CEikDialog
       
    67        /**
       
    68          Exit and return values
       
    69         @param aKeyCode Key that terminated dialog
       
    70         @result Always returns ETrue, Ok to exit
       
    71         */
       
    72         TBool OkToExitL(TInt aKeyCode);
       
    73 
       
    74        /**
       
    75          Perform dynamic initialisation prior to displaying dialog
       
    76         */
       
    77         void PreLayoutDynInitL();
       
    78 
       
    79     private:
       
    80         /** @var iParams Return item after dialog has run, owned by caller */
       
    81         TReferParams* iParams;
       
    82     };
       
    83 
       
    84 class CCreateReferToDialog: public CAknForm
       
    85     {
       
    86     public:
       
    87        /**
       
    88          Perform the first phase of two phase construction
       
    89         @param aParams Receive parameters
       
    90         */
       
    91       //  CCreatePoCSessionDialog( CMCETestUIEngine ::TPoCSessionParams* aParams );
       
    92          CCreateReferToDialog(TReferParams* aParams);
       
    93 
       
    94        /**
       
    95          Destroy the object
       
    96         */
       
    97         ~CCreateReferToDialog();
       
    98 
       
    99     private: // from CEikDialog
       
   100        /**
       
   101          Exit and return values
       
   102         @param aKeyCode Key that terminated dialog
       
   103         @result Always returns ETrue, Ok to exit
       
   104         */
       
   105         TBool OkToExitL(TInt aKeyCode);
       
   106 
       
   107        /**
       
   108          Perform dynamic initialisation prior to displaying dialog
       
   109         */
       
   110         void PreLayoutDynInitL();
       
   111 
       
   112     private:
       
   113         /** @var iParams Return item after dialog has run, owned by caller */
       
   114         TReferParams* iParams;
       
   115     };
       
   116 
       
   117 /**
       
   118  Append two message and pass it to a single message dialog.
       
   119  @param aMessage1
       
   120  @param aMessage2
       
   121  */
       
   122 extern void MessageBox( const TDesC& aMessage1, const TDesC& aMessage2 );
       
   123        
       
   124 /**
       
   125  Display message box dialog.
       
   126  @param aMessage
       
   127  */
       
   128 extern void MessageBox( const TDesC& aMessage );
       
   129 
       
   130 #endif // __CREATESESSIONDIALOG_H__
       
   131 
       
   132 // End of File