Update contrib.
2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: This is the definition of the audio visualization base class.
20 #ifndef CVISUALIZATION_H
21 #define CVISUALIZATION_H
26 // FORWARD DECLARATION
27 class MVisualizationObserver;
32 * This is the base class for audio visualization.
34 * @lib Visualization.lib
38 class CVisualization : public CBase
41 public: // Constructors and destructor
44 * Factory function for creating the volume object.
46 * @param aObserver A visualization observer.
47 * @return pointer to CVisualization object
49 IMPORT_C static CVisualization* NewL( MVisualizationObserver& aObserver );
54 virtual ~CVisualization();
56 public: // New functions
61 * @return data rate in Hz.
63 IMPORT_C TUint32 DataRate() const;
66 * Get the upper and lower limits of the supported data rate range
68 * @param aMin The lower limit of the data rate range
69 * @param aMax The upper limit of the data rate range
71 IMPORT_C void DataRateRange( TUint32& aMin, TUint32& aMax );
74 * Used by application enable or disable frequency data.
76 * @param aIndicator Set to ETrue to enable frequency, EFalse to disable frequency data.
78 IMPORT_C void EnableFrequencyData( TBool aIndicator );
81 * Used by application to enable or disable waveform data.
83 * @param aIndicator Set to ETrue to enable waveform data, EFalse to disable waveform data.
85 IMPORT_C void EnableWaveformData( TBool aIndicator );
88 * Get frequency band count.
90 * @return frequency band count.
92 IMPORT_C TUint32 FreqencyBandCount( ) const;
95 * Get frequency band count range.
97 * @param aMin Lower limit of the frequency band count range
98 * @param aMax Upper limit of the frequency band count range
100 IMPORT_C void FrequencyBandCountRange( TUint32& aMin, TUint32& aMax );
103 * Determine whether frequency data is enabled.
105 * @return ETrue, if frequency data is enabled. EFalse, if frequency data is disabled.
107 IMPORT_C TBool IsFrequencyDataEnabled( ) const;
110 * Determine whether waveform data is enabled.
112 * @return ETrue, if waveform data is enabled. EFalse, if waveform data is disabled.
114 IMPORT_C TBool IsWaveformDataEnabled( ) const;
117 * Get the sampling rate.
119 * @return The sampling rate.
121 IMPORT_C TUint32 SamplingRate() const;
126 * @param aDataRate The data rate.
128 IMPORT_C void SetDataRateL( TUint32 aDataRate );
131 * Sets the frequency band count. Results in a call to
132 * MVisualizationObserver::FrequencyBandCountChanged().
134 * @param aFrequencyBandCount The frequency band count.
136 IMPORT_C void SetFrequencyBandCountL( TUint32 aFrequencyBandCount );
139 * Sets the waveform band count. Results in a call to
140 * MVisualizationObserver::WaveformDataLengthChanged().
142 * @param aWaveformDataLength The waveform data length in samples.
144 IMPORT_C void SetWaveformDataLengthL( TUint32 aWaveformDataLength );
147 * Starts visualization. Results in a call to MVisualizationObserver::VisualizationStarted()
150 IMPORT_C void StartL( );
153 * Stops visualization. Results in a call to MVisualizationObserver::VisualizationStopped()
156 IMPORT_C void StopL( );
159 * Get the waveform data length.
161 * @return The waveform data length in samples.
163 IMPORT_C TUint32 WaveformDataLength() const;
166 * Get the waveform data length range in samples.
168 * @param aMin The lower limit of the waveform data length range
169 * @param aMax The upper limit of the waveform data length range
171 IMPORT_C void WaveformDataLengthRange( TUint32& aMin, TUint32& aMax );
177 * Private C++ constructor for this class.
183 * Second Phase Costructor
185 * @param aObserver Visualization Observer
187 void ConstructL( MVisualizationObserver& aObserver );
197 #endif // of CVISUALIZATION_H