multimediacommsengine/tsrc/MCETestUI/inc/CMCEPoCSessionSettingsItemList.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 CMCEPOCSESSIONSETTINGSITEMLIST_H
       
    22 #define CMCEPOCSESSIONSETTINGSITEMLIST_H
       
    23 
       
    24 // INCLUDES
       
    25 
       
    26 // System includes
       
    27 #include <aknsettingitemlist.h> // CAknSettingItemList
       
    28 
       
    29 // User includes
       
    30 #include <MCETestUI.rsg>
       
    31 #include "MCETestUI.hrh"
       
    32 
       
    33 
       
    34 //Qos
       
    35 //#include "TMCEPoCSessionParams.h"
       
    36 
       
    37 // CLASS DECLARATION
       
    38 class TMCEPoCSessionParams
       
    39 	{
       
    40 public:
       
    41 	TBuf<200>	iPocRecipentAddress;
       
    42 	};
       
    43 /**
       
    44 * CMCEPoCSessionSettingsItemList class.
       
    45 * Settings Item List for Generic QoS
       
    46 */ 
       
    47 class CMCEPoCSessionSettingsItemList : public CAknSettingItemList
       
    48 	{
       
    49 public: // Constructors and destructor
       
    50 	CMCEPoCSessionSettingsItemList(TMCEPoCSessionParams& aSettings);
       
    51 	
       
    52 public: // from CAknSettingItemList
       
    53 	CAknSettingItem* CreateSettingItemL(TInt identifier);
       
    54 	void EditItemL (TInt aIndex, TBool aCalledFromMenu);
       
    55 	
       
    56 public:// members
       
    57 	void ChangeSelectedItemL ();
       
    58 	
       
    59 private: // from CAknSettingItemList
       
    60 	void SizeChanged();
       
    61 
       
    62 private: // member data
       
    63 	TMCEPoCSessionParams& iSettings;
       
    64 	
       
    65 	};
       
    66 
       
    67 #endif	// #ifndef CMCEPOCSESSIONSETTINGSITEMLIST_H
       
    68 
       
    69 // End of File