radioapp/radioenginewrapper/src/radioenginewrapperobserver.cpp
changeset 16 f54ebcfc1b80
child 28 075425b8d9a4
equal deleted inserted replaced
14:63aabac4416d 16:f54ebcfc1b80
       
     1 /*
       
     2 * Copyright (c) 2009 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 #include "radioenginewrapperobserver.h"
       
    19 
       
    20 /*!
       
    21  *
       
    22  * @param frequency
       
    23  * @param commandSender
       
    24  */
       
    25 void RadioEngineWrapperObserver::tunedToFrequency( uint frequency, int reason )
       
    26 {
       
    27     // Default implementation does nothing
       
    28     Q_UNUSED( frequency );
       
    29     Q_UNUSED( reason );
       
    30 }
       
    31 
       
    32 /*!
       
    33  *
       
    34  * @param radioIsOn
       
    35  */
       
    36 void RadioEngineWrapperObserver::radioStatusChanged( bool radioIsOn )
       
    37 {
       
    38     // Default implementation does nothing
       
    39     Q_UNUSED( radioIsOn );
       
    40 }
       
    41 
       
    42 /*!
       
    43  *
       
    44  * @param available
       
    45  */
       
    46 void RadioEngineWrapperObserver::rdsAvailabilityChanged( bool available )
       
    47 {
       
    48     // Default implementation does nothing
       
    49     Q_UNUSED( available );
       
    50 }
       
    51 
       
    52 /*!
       
    53  *
       
    54  * @param volume
       
    55  */
       
    56 void RadioEngineWrapperObserver::volumeChanged( int volume )
       
    57 {
       
    58     // Default implementation does nothing
       
    59     Q_UNUSED( volume );
       
    60 }
       
    61 
       
    62 /*!
       
    63  *
       
    64  * @param muted
       
    65  */
       
    66 void RadioEngineWrapperObserver::muteChanged( bool muted )
       
    67 {
       
    68     // Default implementation does nothing
       
    69     Q_UNUSED( muted );
       
    70 }
       
    71 
       
    72 /*!
       
    73  *
       
    74  * @param loudspeaker
       
    75  */
       
    76 void RadioEngineWrapperObserver::audioRouteChanged( bool loudspeaker )
       
    77 {
       
    78     // Default implementation does nothing
       
    79     Q_UNUSED( loudspeaker );
       
    80 }
       
    81 
       
    82 /*!
       
    83  *
       
    84  * @param connected
       
    85  */
       
    86 void RadioEngineWrapperObserver::antennaStatusChanged( bool connected )
       
    87 {
       
    88     // Default implementation does nothing
       
    89     Q_UNUSED( connected );
       
    90 }
       
    91 
       
    92 /*!
       
    93  *
       
    94  */
       
    95 void RadioEngineWrapperObserver::skipPrevious()
       
    96 {
       
    97     // Default implementation does nothing
       
    98 }
       
    99 
       
   100 /*!
       
   101  *
       
   102  */
       
   103 void RadioEngineWrapperObserver::skipNext()
       
   104 {
       
   105     // Default implementation does nothing
       
   106 }
       
   107