fmradio/fmradio/inc/fmradiopreset.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Mon, 15 Mar 2010 12:40:34 +0200
branchRCL_3
changeset 6 3cb097cb90f8
parent 0 f3d95d9c00ab
permissions -rw-r--r--
Revision: 201009 Kit: 201010

/*
* Copyright (c) 2009 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:  fmradio preset station information
*
*/

#ifndef CMFRADIOPRESET_H
#define CMFRADIOPRESET_H

// INCLUDES
#include <e32base.h> 

// FORWARD DECLARATIONS

// CONSTANTS

/**
 * fmradio preset station information
 */
class CFMRadioPreset : public CBase
    {

    public:         
        /**
         * Two-phased constructor.
        */
        static CFMRadioPreset* NewL();       
        /**
         * Destructor.
         */
        virtual ~CFMRadioPreset();
            
    public: // New functions
        /*
         * Set name for the preset
         * @param aName new name for the preset
         */
        void SetPresetNameL( const TDesC& aName );
        /*
         * Returns preset name 
         * @return name
         */
        const TDesC& PresetName();
        /*
         * Set of the preset valid
         * @param aValid ETrue is the name is set valid
         */
        void SetPresetNameValid( TBool aValid );
        /*
         * Returns the validity of the preset name
         * @return ETrue if the name is valid, otherwise EFalse
         */
         TBool PresetNameValid();
        /*
         * Set frequency for the preset
         * @param aFrequency frequency to set
         */
        void SetPresetFrequency( TInt aFrequency );
        /*
         * Returns preset frequency
         * @return frequency
         */
        TInt PresetFrequency();
        
        /*
         * set station web url
         * @param aUrl url to set
         */
        void SetPresetUrlL( const TDesC& aUrl );
        
        /*
         * Gets station web url
         * @return url
         */
        const TDesC& PresetUrl();
        
    private:
        /**
         * C++ default constructor.
         */        
        CFMRadioPreset();
        /**
        * EPOC default constructor.
        */        
        void ConstructL();
        
    private: // data
         // station name
         RBuf iStationName;
		 // station frequency
         TInt iStationFrequency;
         // Validity of the station name
         TBool iNameIsValid;
         // station web url
         RBuf iStationUrl;
         
    };


#endif // CMFRADIOPRESET_H