multimediacommsengine/tsrc/MCETestUI/MCETestUIEngine/inc/TMCETestUIEngineCmdDeleteSession.h
changeset 0 1bce908db942
equal deleted inserted replaced
-1:000000000000 0:1bce908db942
       
     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:    See class definition below.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __TMCETESTUIENGINECMDDELETESESSION_H__
       
    21 #define __TMCETESTUIENGINECMDDELETESESSION_H__
       
    22 
       
    23 // INCLUDES
       
    24 #include "TMCETestUIEngineCmdBase.h"
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CMCETestUIEngineSession;
       
    28 
       
    29 // CLASS DEFINITION
       
    30 /**
       
    31  * 
       
    32  */
       
    33 class TMCETestUIEngineCmdDeleteSession: public TMCETestUIEngineCmdBase
       
    34 	{
       
    35 
       
    36 	public:	// Constructors
       
    37 
       
    38 		/**
       
    39 		 * Constructor.
       
    40 		 *
       
    41 		 * @param aEngine UI Engine
       
    42 		 */
       
    43 		TMCETestUIEngineCmdDeleteSession( 
       
    44 		            CMCETestUIEngine& aEngine,
       
    45 		            CMCETestUIEngineSession& aSession );
       
    46 
       
    47 	public: // Implementation for base class abstract methods
       
    48 
       
    49 		/// Executes a sequence of operations.
       
    50 		IMPORT_C void ExecuteL();
       
    51 		
       
    52 		/// Returns short textual representation for behavior of command
       
    53 		IMPORT_C const TDesC& Caption() const;
       
    54 
       
    55     private: // Data
       
    56         
       
    57         CMCETestUIEngineSession& iSession;
       
    58 
       
    59 	};
       
    60 	
       
    61 // CLASS DEFINITION
       
    62 /**
       
    63  * 
       
    64  */
       
    65 class TMCETestUIEngineCmdEnableVideoSession: public TMCETestUIEngineCmdBase
       
    66 	{
       
    67 
       
    68 	public:	// Constructors
       
    69 
       
    70 		/**
       
    71 		 * Constructor.
       
    72 		 *
       
    73 		 * @param aEngine UI Engine
       
    74 		 */
       
    75 		TMCETestUIEngineCmdEnableVideoSession( 
       
    76 		            CMCETestUIEngine& aEngine,
       
    77 		            CMCETestUIEngineSession& aSession );
       
    78 
       
    79 	public: // Implementation for base class abstract methods
       
    80 
       
    81 		/// Executes a sequence of operations.
       
    82 		IMPORT_C void ExecuteL();
       
    83 		
       
    84 		/// Returns short textual representation for behavior of command
       
    85 		IMPORT_C const TDesC& Caption() const;
       
    86 
       
    87     private: // Data
       
    88         
       
    89         CMCETestUIEngineSession& iSession;
       
    90 
       
    91 	};
       
    92 
       
    93 // CLASS DEFINITION
       
    94 /**
       
    95  * 
       
    96  */
       
    97 class TMCETestUIEngineCmdDisableVideoSession: public TMCETestUIEngineCmdBase
       
    98 	{
       
    99 
       
   100 	public:	// Constructors
       
   101 
       
   102 		/**
       
   103 		 * Constructor.
       
   104 		 *
       
   105 		 * @param aEngine UI Engine
       
   106 		 */
       
   107 		TMCETestUIEngineCmdDisableVideoSession( 
       
   108 		            CMCETestUIEngine& aEngine,
       
   109 		            CMCETestUIEngineSession& aSession );
       
   110 
       
   111 	public: // Implementation for base class abstract methods
       
   112 
       
   113 		/// Executes a sequence of operations.
       
   114 		IMPORT_C void ExecuteL();
       
   115 		
       
   116 		/// Returns short textual representation for behavior of command
       
   117 		IMPORT_C const TDesC& Caption() const;
       
   118 
       
   119     private: // Data
       
   120         
       
   121         CMCETestUIEngineSession& iSession;
       
   122 
       
   123 	};
       
   124 	
       
   125 // CLASS DEFINITION
       
   126 /**
       
   127  * 
       
   128  */
       
   129 class TMCETestUIEngineCmdEnableReceivingVideoSession: public TMCETestUIEngineCmdBase
       
   130 	{
       
   131 
       
   132 	public:	// Constructors
       
   133 
       
   134 		/**
       
   135 		 * Constructor.
       
   136 		 *
       
   137 		 * @param aEngine UI Engine
       
   138 		 */
       
   139 		TMCETestUIEngineCmdEnableReceivingVideoSession( 
       
   140 		            CMCETestUIEngine& aEngine,
       
   141 		            CMCETestUIEngineSession& aSession );
       
   142 
       
   143 	public: // Implementation for base class abstract methods
       
   144 
       
   145 		/// Executes a sequence of operations.
       
   146 		IMPORT_C void ExecuteL();
       
   147 		
       
   148 		/// Returns short textual representation for behavior of command
       
   149 		IMPORT_C const TDesC& Caption() const;
       
   150 
       
   151     private: // Data
       
   152         
       
   153         CMCETestUIEngineSession& iSession;
       
   154 
       
   155 	};
       
   156 
       
   157 
       
   158 // CLASS DEFINITION
       
   159 /**
       
   160  * 
       
   161  */
       
   162 class TMCETestUIEngineCmdDisableReceivingVideoSession: public TMCETestUIEngineCmdBase
       
   163 	{
       
   164 
       
   165 	public:	// Constructors
       
   166 
       
   167 		/**
       
   168 		 * Constructor.
       
   169 		 *
       
   170 		 * @param aEngine UI Engine
       
   171 		 */
       
   172 		TMCETestUIEngineCmdDisableReceivingVideoSession( 
       
   173 		            CMCETestUIEngine& aEngine,
       
   174 		            CMCETestUIEngineSession& aSession );
       
   175 
       
   176 	public: // Implementation for base class abstract methods
       
   177 
       
   178 		/// Executes a sequence of operations.
       
   179 		IMPORT_C void ExecuteL();
       
   180 		
       
   181 		/// Returns short textual representation for behavior of command
       
   182 		IMPORT_C const TDesC& Caption() const;
       
   183 
       
   184     private: // Data
       
   185         
       
   186         CMCETestUIEngineSession& iSession;
       
   187 
       
   188 	};
       
   189 	
       
   190 #endif // __TMCETESTUIENGINECMDDELETESESSION_H__