mobilemessaging/smum/inc/SMSETDLGCDMA.H
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 13 Oct 2010 14:27:34 +0300
branchRCL_3
changeset 77 da6ac9d688df
parent 0 72b543305e3a
permissions -rw-r--r--
Revision: 201039 Kit: 201041

/*
* Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  
*     Help classes to handle CDMA settings settings.
*
*/



#ifndef __SMSETDLGCDMA_H__
#define __SMSETDLGCDMA_H__

//    uikon includes
#if !defined(__EIKDIALG_H__)
#include <eikdialg.h>                    // CEikDialog
#endif // __EIKDIALG_H__

#if !defined(__E32DEF_H__)
#include <e32def.h>
#endif // __E32DEF_H__

// INCLUDES
#include <MuiuSettingsArray.h>          // CMuiuSettingsArray 
#include "smsu.h"                       // CSmsMtmUi

// FORWARD DECLARATIONS
class CEikColumnListBox;
class CSmsUiSettings;

//  CLASS DEFINITIONS

/**
*  CSmumSettingsArray
*  Inherited from CMuiuSettingsArray
*/
NONSHARABLE_CLASS(CSmumSettingsArray) : public CMuiuSettingsArray
    {
    public: // Constructors and destructor
        
        // Constructor
        static CSmumSettingsArray* NewL( TInt aResourceId );

        /**
        * Destructor.
        */
        ~CSmumSettingsArray();
        
    public: // New functions

        void SetCallBackNumberL( const TDesC& aCallBackNumber);

        TPtrC CallBackNumber() const;

    private: // functions from base classes
        
             /**
             * From MDesCArray
        */
        TPtrC MdcaPoint( TInt aIndex ) const;
        
    private:
        
        /**
        * By default Symbian OS constructor is private.
        */  
        CSmumSettingsArray();

        /**
        * By default Symbian OS constructor is private.
        */  
        void ConstructL( TInt aResourceId );
                
    private: // Data
        HBufC*              iCallBackNumberString;
        TInt                iTypeOfSettingsId;
    };

#endif // __SMSETDLGCDMA_H__

//  End of File