Update contrib.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
29 const TInt KMdaInfiniteDurationDTMFToneOnLength = -1;
32 * Includes information about tone type, data, length.
57 * Sets type of the tone. (Simple, Dual, Sequence etc.)
59 * @param aType Type of the tone.
61 IMPORT_C void SetType(TToneType aType);
64 * Sets tone duration in micro seconds.
66 * @param aDuration Tone duration in microseconds.
68 IMPORT_C void SetDuration(TTimeIntervalMicroSeconds aDuration);
71 * Sets tone one freqyency.
73 * @param aFrequencyOne Frequency of the tone one.
75 IMPORT_C void SetFrequencyOne(TInt aFrequencyOne);
78 * Sets tone two freqyency.
80 * @param aFrequencyOne Frequency of the tone two.
82 IMPORT_C void SetFrequencyTwo(TInt aFrequencyTwo);
85 * Sets tone sequence number.
87 * @param aSequenceNumber Number of the sequence.
89 IMPORT_C void SetSequenceNumber(TInt aSequenceNumber);
92 * Sets tone sequence data.
94 * @param aSequenceData Reference of the sequence data.
96 IMPORT_C void SetSequenceData(TDesC8& aSequenceData);
99 * Sets tone repeat count, if count is KMdaRepeatForever, tone will be repeated indefinitely.
101 * @param aRepeatCount Repeat count of the tone.
103 IMPORT_C void SetRepeatCount(TInt aRepeatCount);
106 * Sets tone trailing silence.
108 * @param aRepeatTrailingSilence An interval of silence which will be played after each tone.
110 IMPORT_C void SetRepeatTrailingSilence(TTimeIntervalMicroSeconds aRepeatTrailingSilence);
113 * Defines the duration of tone on, tone off and tone pause to be used during the DTMF tone playback operation.
115 * @param aToneOnLength The period over which the tone will be played. If this is set to zero, then the tone is not played.
116 * @param aToneOffLength The period over which the no tone will be played.
117 * @param aPauseLength The period over which the tone playing will be paused.
119 IMPORT_C void SetDtmfLengths(TTimeIntervalMicroSeconds32 aToneOnLength, TTimeIntervalMicroSeconds32 aToneOffLength, TTimeIntervalMicroSeconds32 aPauseLength);
122 * Sets tone DTMF string.
124 * @param aDTMFString Reference of the DTMF string.
126 IMPORT_C void SetDTMFString(TDesC& aDTMFString);
129 * Gets tone type. (Simple, Dual, Sequence etc.)
131 * @param aType Type of the tone.
133 IMPORT_C void GetType(TToneType& aType);
136 * Gets tone duration in micro seconds.
138 * @param aDuration Tone duration in microseconds.
140 IMPORT_C void GetDuration(TTimeIntervalMicroSeconds& aDuration);
143 * Gets frequency of the tone one.
145 * @return Frequency of the tone one.
147 IMPORT_C TInt GetFrequencyOne();
150 * Gets frequency of the tone two.
152 * @return Frequency of the tone two.
154 IMPORT_C TInt GetFrequencyTwo();
157 * Gets sequence number.
159 * @return Sequence number.
161 IMPORT_C TInt GetSequenceNumber();
164 * Gets sequence data of the tone.
165 * Client should not delete this pointer.
167 * @return Pointer to tone sequence data.
169 IMPORT_C TDesC8* GetSequenceData();
172 * Gets tone repeat count.
174 * @return Repeat count.
176 IMPORT_C TInt GetRepeatCount();
179 * Gets tone trailing silence duration.
181 * @param aRepeatTrailingSilence Trailing silence duration.
183 IMPORT_C void GetRepeatTrailingSilence(TTimeIntervalMicroSeconds& aRepeatTrailingSilence);
186 * Gets tone DTMF lengts duration.
188 * @param aToneOnLength The period over which the tone will be played.
189 * @param aToneOffLength The period over which the no tone will be played.
190 * @param aPauseLength The period over which the tone playing will be paused.
192 IMPORT_C void GetDtmfLenghts(TTimeIntervalMicroSeconds32& aToneOnLength, TTimeIntervalMicroSeconds32& aToneOffLength, TTimeIntervalMicroSeconds32& aPauseLength);
195 * Gets DTMF string of the tone.
196 * Client should not delete this pointer
198 * @return Pointer to tone DTMF string.
200 IMPORT_C TDesC* GetDTMFString();
205 /* Type of the tone. */
210 /* Duration of the tone. */
212 TTimeIntervalMicroSeconds iDuration;
215 /* Frequency of the tone one. */
220 /* Frequency of the tone two. */
225 /* Sequence number of the tone. */
227 TInt iSequenceNumber;
230 /* Repeat count of the tone. */
235 /* Repeat traingling silence of the tone. */
237 TTimeIntervalMicroSeconds iRepeatTrainglingSilence;
240 /* The period over which the tone will be played. */
242 TTimeIntervalMicroSeconds32 iToneOnLength;
245 /* The period over which the no tone will be played. */
247 TTimeIntervalMicroSeconds32 iToneOffLength;
250 /* The period over which the tone playing will be paused. */
252 TTimeIntervalMicroSeconds32 iPauseLength;
255 /* Pointer to data of the tone sequence.
259 TDesC8 *iSequenceData;
262 /* Pointer to string of the DTMF tone.
269 #endif // TTONEDATA_H