sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description: Implementation of the base class for effects.
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
// INCLUDE FILES
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifdef _DEBUG
|
sl@0
|
23 |
#include <e32svr.h>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
#include <AudioEffectBase.h>
|
sl@0
|
26 |
#include <MAudioEffectObserver.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
// ============================ MEMBER FUNCTIONS ===============================
|
sl@0
|
29 |
|
sl@0
|
30 |
// -----------------------------------------------------------------------------
|
sl@0
|
31 |
// CAudioEffect::CAudioEffect
|
sl@0
|
32 |
// C++ default constructor can NOT contain any code, that
|
sl@0
|
33 |
// might leave.
|
sl@0
|
34 |
// -----------------------------------------------------------------------------
|
sl@0
|
35 |
//
|
sl@0
|
36 |
EXPORT_C CAudioEffect::CAudioEffect()
|
sl@0
|
37 |
: iEnabled(EFalse),
|
sl@0
|
38 |
iEnforced(EFalse),
|
sl@0
|
39 |
iHaveUpdateRights(ETrue)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
|
sl@0
|
44 |
// Destructor
|
sl@0
|
45 |
EXPORT_C CAudioEffect::~CAudioEffect()
|
sl@0
|
46 |
{
|
sl@0
|
47 |
iObservers.Close();
|
sl@0
|
48 |
}
|
sl@0
|
49 |
|
sl@0
|
50 |
// -----------------------------------------------------------------------------
|
sl@0
|
51 |
// CAudioEffect::IsEnable
|
sl@0
|
52 |
// -----------------------------------------------------------------------------
|
sl@0
|
53 |
//
|
sl@0
|
54 |
EXPORT_C TBool CAudioEffect::IsEnabled() const
|
sl@0
|
55 |
{
|
sl@0
|
56 |
return iEnabled;
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
// -----------------------------------------------------------------------------
|
sl@0
|
60 |
// CAudioEffect::Enable
|
sl@0
|
61 |
// -----------------------------------------------------------------------------
|
sl@0
|
62 |
//
|
sl@0
|
63 |
EXPORT_C void CAudioEffect::EnableL()
|
sl@0
|
64 |
{
|
sl@0
|
65 |
iEnabled = ETrue;
|
sl@0
|
66 |
ApplyL();
|
sl@0
|
67 |
}
|
sl@0
|
68 |
|
sl@0
|
69 |
// -----------------------------------------------------------------------------
|
sl@0
|
70 |
// CAudioEffect::Disable
|
sl@0
|
71 |
// -----------------------------------------------------------------------------
|
sl@0
|
72 |
//
|
sl@0
|
73 |
EXPORT_C void CAudioEffect::DisableL()
|
sl@0
|
74 |
{
|
sl@0
|
75 |
iEnabled = EFalse;
|
sl@0
|
76 |
ApplyL();
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
// -----------------------------------------------------------------------------
|
sl@0
|
80 |
// CAudioEffect::Enforce
|
sl@0
|
81 |
// -----------------------------------------------------------------------------
|
sl@0
|
82 |
//
|
sl@0
|
83 |
EXPORT_C void CAudioEffect::EnforceL(
|
sl@0
|
84 |
TBool aEnforced )
|
sl@0
|
85 |
{
|
sl@0
|
86 |
iEnforced = aEnforced;
|
sl@0
|
87 |
ApplyL();
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|
sl@0
|
90 |
// -----------------------------------------------------------------------------
|
sl@0
|
91 |
// CAudioEffect::HaveUpdateRights
|
sl@0
|
92 |
// -----------------------------------------------------------------------------
|
sl@0
|
93 |
//
|
sl@0
|
94 |
EXPORT_C TBool CAudioEffect::HaveUpdateRights() const
|
sl@0
|
95 |
{
|
sl@0
|
96 |
return iHaveUpdateRights;
|
sl@0
|
97 |
}
|
sl@0
|
98 |
|
sl@0
|
99 |
// -----------------------------------------------------------------------------
|
sl@0
|
100 |
// CAudioEffect::IsEnforced
|
sl@0
|
101 |
// -----------------------------------------------------------------------------
|
sl@0
|
102 |
//
|
sl@0
|
103 |
EXPORT_C TBool CAudioEffect::IsEnforced() const
|
sl@0
|
104 |
{
|
sl@0
|
105 |
return iEnforced;
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
// -----------------------------------------------------------------------------
|
sl@0
|
109 |
// CVolume::RegisterObserverL
|
sl@0
|
110 |
// -----------------------------------------------------------------------------
|
sl@0
|
111 |
//
|
sl@0
|
112 |
EXPORT_C void CAudioEffect::RegisterObserverL(
|
sl@0
|
113 |
MAudioEffectObserver& aObserver )
|
sl@0
|
114 |
{
|
sl@0
|
115 |
User::LeaveIfError(iObservers.Append(&aObserver));
|
sl@0
|
116 |
}
|
sl@0
|
117 |
|
sl@0
|
118 |
// -----------------------------------------------------------------------------
|
sl@0
|
119 |
// CVolume::UnRegisterObserver
|
sl@0
|
120 |
// -----------------------------------------------------------------------------
|
sl@0
|
121 |
//
|
sl@0
|
122 |
EXPORT_C void CAudioEffect::UnRegisterObserver(
|
sl@0
|
123 |
MAudioEffectObserver& aObserver )
|
sl@0
|
124 |
{
|
sl@0
|
125 |
TInt index = iObservers.Find(&aObserver);
|
sl@0
|
126 |
if( index != KErrNotFound )
|
sl@0
|
127 |
{
|
sl@0
|
128 |
iObservers.Remove(index);
|
sl@0
|
129 |
}
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
// ========================== OTHER EXPORTED FUNCTIONS =========================
|
sl@0
|
133 |
|
sl@0
|
134 |
// End of File
|