|
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 */ |
|
55 void RadioEngineWrapperObserver::increaseVolume() |
|
56 { |
|
57 // Default implementation does nothing |
|
58 } |
|
59 |
|
60 /*! |
|
61 * |
|
62 */ |
|
63 void RadioEngineWrapperObserver::decreaseVolume() |
|
64 { |
|
65 // Default implementation does nothing |
|
66 } |
|
67 |
|
68 /*! |
|
69 * |
|
70 * @param volume |
|
71 */ |
|
72 void RadioEngineWrapperObserver::volumeChanged( int volume ) |
|
73 { |
|
74 // Default implementation does nothing |
|
75 Q_UNUSED( volume ); |
|
76 } |
|
77 |
|
78 /*! |
|
79 * |
|
80 * @param muted |
|
81 */ |
|
82 void RadioEngineWrapperObserver::muteChanged( bool muted ) |
|
83 { |
|
84 // Default implementation does nothing |
|
85 Q_UNUSED( muted ); |
|
86 } |
|
87 |
|
88 /*! |
|
89 * |
|
90 * @param loudspeaker |
|
91 */ |
|
92 void RadioEngineWrapperObserver::audioRouteChanged( bool loudspeaker ) |
|
93 { |
|
94 // Default implementation does nothing |
|
95 Q_UNUSED( loudspeaker ); |
|
96 } |
|
97 |
|
98 /*! |
|
99 * |
|
100 * @param connected |
|
101 */ |
|
102 void RadioEngineWrapperObserver::antennaStatusChanged( bool connected ) |
|
103 { |
|
104 // Default implementation does nothing |
|
105 Q_UNUSED( connected ); |
|
106 } |
|
107 |
|
108 /*! |
|
109 * |
|
110 */ |
|
111 void RadioEngineWrapperObserver::skipPrevious() |
|
112 { |
|
113 // Default implementation does nothing |
|
114 } |
|
115 |
|
116 /*! |
|
117 * |
|
118 */ |
|
119 void RadioEngineWrapperObserver::skipNext() |
|
120 { |
|
121 // Default implementation does nothing |
|
122 } |
|
123 |