author | hgs |
Thu, 08 Jul 2010 12:44:18 +0300 | |
changeset 36 | ba22309243a1 |
parent 28 | 075425b8d9a4 |
child 37 | 451b2e1545b2 |
permissions | -rw-r--r-- |
24 | 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 |
#ifndef RADIOENGINEWRAPPEROBSERVER_H_ |
|
19 |
#define RADIOENGINEWRAPPEROBSERVER_H_ |
|
20 |
||
21 |
#include "radio_global.h" |
|
22 |
#include "radiowrapperexport.h" |
|
23 |
||
24 |
class WRAPPER_DLL_EXPORT RadioEngineWrapperObserver |
|
25 |
{ |
|
26 |
public: |
|
27 |
||
28 |
virtual void tunedToFrequency( uint frequency, int reason ); |
|
29 |
||
30 |
virtual void radioStatusChanged( bool radioIsOn ); |
|
31 |
||
32 |
virtual void rdsAvailabilityChanged( bool available ); |
|
33 |
||
28
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
34 |
virtual void increaseVolume(); |
075425b8d9a4
Revision: 201021
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
24
diff
changeset
|
35 |
virtual void decreaseVolume(); |
24 | 36 |
virtual void volumeChanged( int volume ); |
37 |
virtual void muteChanged( bool muted ); |
|
38 |
||
39 |
virtual void audioRouteChanged( bool loudspeaker ); |
|
40 |
virtual void antennaStatusChanged( bool connected ); |
|
41 |
||
42 |
virtual void skipPrevious(); |
|
43 |
virtual void skipNext(); |
|
44 |
||
45 |
}; |
|
46 |
||
47 |
#endif // RADIOENGINEWRAPPEROBSERVER_H_ |