sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Declares the DVB-H tuner hardware adaptation information classes. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @publishedPartner sl@0: @prototype sl@0: */ sl@0: sl@0: #ifndef DVBHRECEIVERINFO_H sl@0: #define DVBHRECEIVERINFO_H sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class TIp6Addr; sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetStateObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of RDvbhReceiver state changes. sl@0: * Clients wishing to monitor state changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetStateObserver(). sl@0: */ sl@0: class MDvbhStateObserver sl@0: { sl@0: public: sl@0: /** sl@0: * @param aNewState Identifies the state to which the RDvbhReceiver has just transitioned. sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever RDvbhReceiver changes state, in order to sl@0: * inform the client of the new state. sl@0: */ sl@0: virtual void DvbhStateChange( TDvbhState aNewState ) = 0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetSignalQualityObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of changes to signal quality. sl@0: * Clients wishing to monitor signal quality should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetSignalQualityObserver(). sl@0: */ sl@0: class MDvbhSignalQualityObserver sl@0: { sl@0: public: sl@0: /** sl@0: * @param aNewSignalQuality Identifies the new signal quality value. sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the signal quality changes, in order to sl@0: * inform the client of the new signal quality. sl@0: */ sl@0: virtual void DvbhSignalQualityChange( const TDvbhSignalQuality& aNewSignalQuality ) = 0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetPlatformObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of changes of the current IP platform. sl@0: * Clients wishing to monitor IP platform changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetPlatformObserver(). sl@0: */ sl@0: class MDvbhPlatformObserver sl@0: { sl@0: public: sl@0: /** sl@0: * @param aNewPlatform Identifies the IP platform to which the receiver has just switched. sl@0: * @param aESGRoot The IP address of the bootstrap ESG sevice on the new platform. sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the current IP platform changes, in order to sl@0: * inform the client of the new IP platform and bootstrap ESG IP address. sl@0: */ sl@0: virtual void DvbhPlatformChange( const TDvbhPlatform& aNewPlatform, const TIp6Addr& aESGRoot ) = 0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetNetworkTimeObserver() sl@0: * sl@0: * Defines an interface for notifying of updates to the network time. sl@0: * Clients wishing to monitor network time changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetNetworkTimeObserver(). sl@0: * Network time update is triggered via call to RDvbhReceiver::UpdateNetworkTime() sl@0: */ sl@0: class MDvbhNetworkTimeObserver sl@0: { sl@0: public: sl@0: /** sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the current network time has been updated. sl@0: */ sl@0: virtual void DvbhNetworkTimeUpdate() = 0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetFrequencyObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of changes to the frequency to which the receiver is tuned. sl@0: * Clients wishing to monitor frequency changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetFrequencyObserver(). sl@0: */ sl@0: class MDvbhFrequencyObserver sl@0: { sl@0: public: sl@0: /** sl@0: * @param aNewFrequency Identifies the frequency to which the tuner has just tuned. sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the tuned frequency changes, in order to sl@0: * inform the client of the new frequency. sl@0: */ sl@0: virtual void DvbhFrequencyChange( const TDvbhFrequency& aNewFrequency ) = 0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetCellIdObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of changes to current cellId. sl@0: * Clients wishing to monitor cellId changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetCellIdObserver(). sl@0: */ sl@0: class MDvbhCellIdObserver sl@0: { sl@0: public: sl@0: /** sl@0: * @param aNewCellId The new cellId. sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the current cellId changes, in order to sl@0: * inform the client of the new cellId. sl@0: */ sl@0: virtual void DvbhCellIdChange( const TDvbhCellId& aNewCellId ) = 0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetNetworkIdObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of changes to current networkId. sl@0: * Clients wishing to monitor networkId changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetNetworkIdObserver(). sl@0: */ sl@0: class MDvbhNetworkIdObserver sl@0: { sl@0: public: sl@0: /** sl@0: * @param aNewNetworkId The ID of the network to which the receiver is now tuned. sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the ID of the network to which it is tuned changes, sl@0: * in order to inform the client of the new networkId. sl@0: */ sl@0: virtual void DvbhNetworkIdChange( const TDvbhNetworkId& aNewNetworkId ) = 0; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetBatteryStateObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of changes in external DVB-H receiver battery state. sl@0: * Clients wishing to monitor battery changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetBatteryStateObserver(). sl@0: */ sl@0: class MDvbhExtBatteryStateObserver sl@0: { sl@0: public: sl@0: /** sl@0: * @param aNewState The new battery state of external receiver. sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the battery state of external receiver is changed, sl@0: * in order to inform the client of the new aNewState. sl@0: */ sl@0: virtual void DvbhExtBatteryStateChange( TDvbhExtBatteryState aNewState ) = 0; sl@0: }; sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetExtConnectionStateObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of changes in external DVB-H receiver connection sl@0: * Clients wishing to monitor connection changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetExtConnectionStateObserver(). sl@0: */ sl@0: class MDvbhExtConnectionObserver sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: * @param aNewState The new external receiver connection state. sl@0: * @param aReceiverType Type of the receiver sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the connection state of external receiver is changed, sl@0: * in order to inform the client of the new aNewState. sl@0: */ sl@0: virtual void DvbhExtConnectionStateChange( sl@0: const TDvbhExtConnectionState& aNewState, const TDvbhReceiverType& aReceiverType ) = 0; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * @see CDvbhReceiverInfo::SetExtAntennaConnectionStateObserver() sl@0: * sl@0: * Defines an interface for receiving notifications of changes in external DVB-H receiver antenna connection. sl@0: * Clients wishing to monitor connection changes should provide a CDvbhReceiverInfo sl@0: * instance with an implementation of this interface via CDvbhReceiverInfo::SetExtAntennaConnectionStateObserver(). sl@0: */ sl@0: class MDvbhExtAntennaConnectionObserver sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: * @param aNewState The new external antenna connection state. sl@0: * @param aReceiverType Type of the receiver sl@0: * sl@0: * When a client has registered an implementation with a CDvbhReceiverInfo instance, sl@0: * this method will be called whenever the connection state of external receiver antenna is changed, sl@0: * in order to inform the client of the new aNewState. sl@0: */ sl@0: virtual void DvbhExtAntennaConnectionStateChange( sl@0: const TDvbhExtAntennaConnectionState& aNewState, const TDvbhReceiverType& aReceiverType ) = 0; sl@0: }; sl@0: sl@0: sl@0: /** sl@0: * @publishedPartner sl@0: * @prototype sl@0: * sl@0: * Provides operations for reading and tracking information about the receiver, such sl@0: * as state, signal quality, frequency, etc. Refer to the individual class methods sl@0: * for the full list. sl@0: * sl@0: * Use of this class is safe in the sense that it will not interfere with the sl@0: * receiver operation in any way. There can be multiple simultaneous instances sl@0: * of CDvbhReceiverInfo at one time. sl@0: */ sl@0: class CDvbhReceiverInfo : public CBase sl@0: { sl@0: public: sl@0: /** sl@0: * @return A new instance of CDvbhReceiverInfo. sl@0: * sl@0: * Factory function for creating a CDvbhReceiverInfo object. sl@0: */ sl@0: IMPORT_C static CDvbhReceiverInfo* NewL(); sl@0: sl@0: /** sl@0: * @return A new instance of CDvbhReceiverInfo. sl@0: * sl@0: * Factory function for creating a CDvbhReceiverInfo object, with sl@0: * the new object left on the CleanupStack. sl@0: */ sl@0: IMPORT_C static CDvbhReceiverInfo* NewLC(); sl@0: sl@0: /** sl@0: * C++ destructor. sl@0: */ sl@0: IMPORT_C ~CDvbhReceiverInfo(); sl@0: sl@0: /** sl@0: * @param aState Updated with the current state of the receiver. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the current state of the receiver. sl@0: */ sl@0: IMPORT_C static TInt GetState( TDvbhState& aState ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhStateObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhStateObserver sl@0: * sl@0: * Used to register an MDvbhStateObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified of any changes in receiver sl@0: * state via that observer until either a new observer is registered or this object is sl@0: * destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetStateObserver( MDvbhStateObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aSignalQuality Updated with the current signal quality value. sl@0: * @return KErrNone on success, KErrNotReady if receiver is not in the Receiving state, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the current signal quality value. sl@0: */ sl@0: IMPORT_C static TInt GetSignalQuality( TDvbhSignalQuality& aSignalQuality ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhSignalQualityObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhSignalQualityObserver sl@0: * sl@0: * Used to register an MDvbhSignalQualityObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified of any changes to signal sl@0: * quality via that observer until either a new observer is registered or this object is sl@0: * destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetSignalQualityObserver( MDvbhSignalQualityObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aPlatform Updated with the currently active IP platform. sl@0: * @param aESGRoot Updated with the IP address of the bootstrap ESG service on the platform. sl@0: * @return KErrNone on success, KErrNotReady if platform has not been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the currently active IP platform and IP address of its bootstrap ESG service. sl@0: */ sl@0: IMPORT_C static TInt GetPlatform( TDvbhPlatform& aPlatform, TIp6Addr& aESGRoot ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhPlatformObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhPlatformObserver sl@0: * sl@0: * Used to register an MDvbhPlatformObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified of any changes to IP platform sl@0: * via that observer until either a new observer is registered or this object is sl@0: * destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetPlatformObserver( MDvbhPlatformObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aNetworkTime Upated with the current network time. sl@0: * @param aValid Updated with ETrue if the receiver is in Ready or Receiving state; or EFalse if the time offset of a previous platform is available and has been used as a fallback to calculate the given time. sl@0: * @return KErrNone on success, KErrNotReady if no platform has ever been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see RDvbhReceiver::UpdateNetworkTime() sl@0: * sl@0: * Retrieves the current network time by calculating it from the offset obtained sl@0: * after the last call to RDvbhReceiver::UpdateNetworkTime(). sl@0: */ sl@0: IMPORT_C static TInt GetNetworkTime( TTime& aNetworkTime, TBool& aValid ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhNetworkTimeObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhNetworkTimeObserver sl@0: * sl@0: * Used to register an MDvbhNetworkTimeObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified whenever the network time has been sl@0: * updated via that observer until either a new observer is registered or this object is sl@0: * destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetNetworkTimeObserver( MDvbhNetworkTimeObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aPerformanceData Updated with the current usage and performance data of the receiver. sl@0: * @return KErrNone on success, KErrNotReady if the receiver is not in Receiving state, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the current performance and usage data from the receiver. sl@0: */ sl@0: IMPORT_C static TInt GetPerformanceData( TDvbhPerformanceData& aPerformanceData ); sl@0: sl@0: /** sl@0: * @param aFrequency Updated with the frequency to which the receiver is currently tuned. sl@0: * @return KErrNone on success, KErrNotReady if platform has not been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the frequency to which the receiver is currently tuned. sl@0: */ sl@0: IMPORT_C static TInt GetFrequency( TDvbhFrequency& aFrequency ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhFrequencyObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhFrequencyObserver sl@0: * sl@0: * Used to register an MDvbhFrequencyObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified whenever the frequency to which sl@0: * the receiver is tuned changes via that observer until either a new observer is sl@0: * registered or this object is destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetFrequencyObserver( MDvbhFrequencyObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aCellId Updated with the current cellId. sl@0: * @return KErrNone on success, KErrNotReady if platform has not been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the current cellId. sl@0: */ sl@0: IMPORT_C static TInt GetCellId( TDvbhCellId& aCellId ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhCellIdObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhCellIdObserver sl@0: * sl@0: * Used to register an MDvbhCellIdObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified whenever the current cellId changes sl@0: * via that observer until either a new observer is registered or the object is destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetCellIdObserver( MDvbhCellIdObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aNetworkId Updated with the ID of the network to which the receiver is currently tuned. sl@0: * @return KErrNone on success, KErrNotReady if platform has not been set on the receiver, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the networkId of the network to which the receiver is currently tuned. sl@0: */ sl@0: IMPORT_C static TInt GetNetworkId( TDvbhNetworkId& aNetworkId ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhNetworkIdObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhNetworkIdObserver sl@0: * sl@0: * Used to register an MDvbhNetworkIdObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified whenever the ID of the network to which sl@0: * the receiver is tuned changes via that observer until either a new observer is sl@0: * registered or this object is destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetNetworkIdObserver( MDvbhNetworkIdObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aState Updated with the battery state of external receiver sl@0: * @return KErrNone on success, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the battery state of external receiver sl@0: */ sl@0: IMPORT_C static TInt GetBatteryState( TDvbhExtBatteryState& aState ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhExtBatteryStateObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhExtBatteryStateObserver sl@0: * sl@0: * Used to register an MDvbhExtBatteryStateObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified whenever the battery state of external receiver sl@0: * has changed via that observer until either a new observer is sl@0: * registered or this object is destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetBatteryStateObserver( MDvbhExtBatteryStateObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aConnectionState Updated with the connection state of external receiver sl@0: * @param aReceiver Input for which receiver type the connection state is queried sl@0: * @return KErrNone on success, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the connection state of external receiver sl@0: */ sl@0: IMPORT_C static TInt GetExtConnectionState( TDvbhExtConnectionState& aConnectionState, const TDvbhReceiverType& aReceiver ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhExtConnectionObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhExtConnectionObserver sl@0: * sl@0: * Used to register an MDvbhExtConnectionObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified whenever the connection state of external sl@0: * receiver has changed via that observer until either a new observer is sl@0: * registered or this object is destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetExtConnectionStateObserver( MDvbhExtConnectionObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aConnectionState Updated with the antenna connection state of external receiver sl@0: * @param aReceiver Input for which receiver type the connection state is queried sl@0: * @return KErrNone on success, or another system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the antenna connection state of external receiver. sl@0: */ sl@0: IMPORT_C static TInt GetExtAntennaConnectionState( TDvbhExtAntennaConnectionState& aConnectionState, const TDvbhReceiverType& aReceiver ); sl@0: sl@0: /** sl@0: * @param aObserver An instance of an MDvbhExtAntennaConnectionObserver implementation. sl@0: * @return KErrNone on success, otherwise a system-wide error code. Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * @see MDvbhExtAntennaConnectionObserver sl@0: * sl@0: * Used to register an MDvbhExtAntennaConnectionObserver implementation with the object. Once a client sl@0: * has registered such an observer, it will be notified whenever the antenna connection state of external sl@0: * receiver has changed via that observer until either a new observer is sl@0: * registered or this object is destroyed. sl@0: * sl@0: * If called more than once on an instance, the most recent observer registered sl@0: * overrides any previously registered observers. sl@0: */ sl@0: IMPORT_C TInt SetExtAntennaConnectionStateObserver( MDvbhExtAntennaConnectionObserver& aObserver ); sl@0: sl@0: /** sl@0: * @param aDeviceInfo Updated with the device information of external receiver sl@0: * @param aReceiver Input for which receiver type the device information is queried sl@0: * @return KErrNone on success, KErrNotSupported if receiver type is not supported, or another system-wide error code. sl@0: * Clients should accept unknown error codes gracefully since new error codes may be returned in the future. sl@0: * sl@0: * Retrieves the device information of external receiver. Please note that the external receiver must be connected to get valid sl@0: * device information. sl@0: */ sl@0: IMPORT_C static TInt GetExtDeviceInfo( TDvbhAccessoryInfo& aDeviceInfo, const TDvbhReceiverType& aReceiver ); sl@0: sl@0: private: sl@0: /** sl@0: * C++ constructor. sl@0: */ sl@0: CDvbhReceiverInfo(); sl@0: sl@0: /** sl@0: * Symbian 2nd phase constructor. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: /* sl@0: * Implementers of this interface should declare their own CPrivateData sl@0: * class containing whatever private data is needed for their implementation. sl@0: */ sl@0: class CPrivateData; sl@0: CPrivateData* iData; sl@0: }; sl@0: sl@0: #endif // DVBHRECEIVERINFO_H