radioapp/radioenginewrapper/inc/cradioenginehandler.h
changeset 32 189d20c34778
parent 28 075425b8d9a4
child 33 11b6825f0862
--- a/radioapp/radioenginewrapper/inc/cradioenginehandler.h	Fri Jun 11 13:38:32 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,227 +0,0 @@
-/*
-* 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:
-*
-*/
-
-#ifndef _CRADIOENGINEHANDLER_H_
-#define _CRADIOENGINEHANDLER_H_
-
-// System includes
-#include <e32base.h>
-
-#include <mw/ProfileEngineSDKCRKeys.h>
-
-// User includes
-#include "radio_global.h"
-#include "mradioengineinitializer.h"
-
-// Forward declarations
-class CRadioEngine;
-class MRadioScanObserver;
-class MRadioRdsDataObserver;
-class CRadioRepositoryManager;
-class MRadioEngineHandlerObserver;
-class MRadioApplicationSettings;
-
-// Class declaration
-class CRadioEngineHandler : public CBase
-                          , public MRadioEngineInitializer
-    {
-public:
-
-    CRadioEngineHandler( MRadioEngineHandlerObserver& aObserver );
-
-    ~CRadioEngineHandler();
-
-    void ConstructL();
-
-    /**
-     * Sets the rds data observer
-     */
-    void SetRdsObserver( MRadioRdsDataObserver* aObserver );
-
-    /**
-     * Starts or stops receiving RDS data
-     */
-    void SetRdsEnabled( TBool aRdsEnabled );
-
-    /**
-     * Returns the radio status
-     * @return ETrue = radio is on, EFalse = radio is off
-     */
-    TBool IsRadioOn();
-
-    /**
-     * Sets the manual seek status
-     */
-    void SetManualSeekMode( TBool aManualSeek );
-
-    /**
-     * Returns the manual seek status
-     */
-    TBool IsInManualSeekMode() const;
-
-    /**
-     * Tune to the specified frequency
-     * @param aFrequency - frequency to lock onto.
-     */
-    void SetFrequency( TUint aFrequency );
-
-    /**
-     * Sets the audio mute state
-     * @param aMuted - flag to determine whether mute should be turned on or off
-     */
-    void SetMuted( const TBool aMuted, const TBool aUpdateSettings = ETrue );
-
-    /**
-     * Gets the audio mute state
-     * @return ETrue or EFalse to indicate whether mute is currently on.
-     */
-    TBool IsMuted() const;
-
-    /**
-     * Sets the volume level of the FM radio
-     * @param aVolume - the volume to be used.
-     */
-    void SetVolume( TInt aVolume );
-
-    /**
-     * Gets the volumelevel.
-     * @return the current volume
-     */
-    TInt Volume() const;
-
-    /**
-     * Gets the max volumelevel.
-     * @return the max volume
-     */
-    TInt MaxVolume() const;
-
-    /**
-     * Increases the volume by one increment
-     */
-    void IncreaseVolume();
-
-    /**
-     * Decreases the volume by one increment
-     */
-    void DecreaseVolume();
-
-    /**
-     * Checks if the antenna is attached
-     * @return ETrue or EFalse to indicate whether antenna is currently attached.
-     */
-    TBool IsAntennaAttached() const;
-
-    /**
-     * Retrieves the current frequency.
-     * @return the frequency in hertz
-     */
-    TUint CurrentFrequency() const;
-
-    /**
-     * Returns the minimum allowed frequency in the current region
-     */
-    TUint MinFrequency() const;
-
-    /**
-     * Returns the maximum allowed frequency in the current region
-     */
-    TUint MaxFrequency() const;
-
-    /**
-     * Checks if the given frequency is valid in the current region
-     */
-    TBool IsFrequencyValid( TUint aFrequency ) const;
-
-    /**
-     * Scan up to the next available frequency.
-     */
-    void Seek( Seek::Direction direction );
-
-    /**
-     * Cancel previously requested scan.
-     */
-    void CancelSeek();
-
-    /**
-     * Returns the engine seeking state
-     */
-    Seek::State SeekingState() const;
-
-    /**
-     * Rreturn step size for tuning.
-     * @return step size
-     */
-    TUint32 FrequencyStepSize() const;
-
-    /**
-     * Determine current region
-     * @return fmradio region. In case of error, returns EFMRadioRegionNone.
-     */
-    RadioRegion::Region Region() const;
-
-    /**
-     * Sets whether or not audio should be routed to loudspeaker
-     * @param aLoudspeaker ETrue if loudspeaker should be used, EFalse if not
-     */
-    void SetAudioRouteToLoudspeaker( TBool aLoudspeaker );
-
-    /**
-     * Checks if audio is routed to loudspeaker
-     * @return ETrue if loudspeaker is used, EFalse if headset is used
-     */
-    TBool IsAudioRoutedToLoudspeaker() const;
-
-    /**
-     * Returns a reference to the application settings
-     */
-    MRadioApplicationSettings& ApplicationSettings() const;
-
-private:
-
-// from base class MRadioEngineInitializer
-
-    CRadioAudioRouter* InitAudioRouterL();
-    CRadioSystemEventCollector* InitSystemEventCollectorL();
-    CRadioSettings* InitSettingsL();
-
-private: // data
-
-    /**
-     * Radio engine holder
-     * Own.
-     */
-    CRadioEngine*                   iEngine;
-
-    /**
-     * Radio handler observer
-     * Not own.
-     */
-    MRadioEngineHandlerObserver&    iObserver;
-
-    /**
-     * Frequency used by delayed tuning
-     */
-    TUint                           iFrequency;
-
-    /**
-     * Selected radio region
-     */
-    RadioRegion::Region             iRegion;
-
-    };
-
-#endif //_CRADIOENGINEHANDLER_H_