profilesservices/ProfileEngine/EngInc/MProfileSetExtraTones.h
branchRCL_3
changeset 8 f62c3a3d66b8
parent 4 3f8368f032cf
child 10 c8b9b0986973
equal deleted inserted replaced
4:3f8368f032cf 8:f62c3a3d66b8
     1 /*
       
     2 * Copyright (c) 2002 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:  Set profile extra tones interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __MPROFILESETEXTRATONES_H
       
    21 #define __MPROFILESETEXTRATONES_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32std.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  Set profile extra tones interface.
       
    30 *  This interface offers methods to set IM message alert tone file name.
       
    31 *
       
    32 *  @lib N/A
       
    33 *  @since 2.0
       
    34 */
       
    35 class MProfileSetExtraTones
       
    36     {
       
    37     protected:  // Destructor
       
    38 
       
    39         virtual ~MProfileSetExtraTones() {};
       
    40 
       
    41     public: // New functions
       
    42 
       
    43         /**
       
    44         * Set IM message alert tone file name.
       
    45         * @since 2.0
       
    46         * @param aIMMessageAlertTone IM message alert tone.
       
    47         */
       
    48         virtual void SetIMMessageAlertToneL(
       
    49             const TDesC& aIMMessageAlertTone ) = 0;
       
    50 
       
    51         /**
       
    52         * Set Email alert tone file name.
       
    53         * @since 2.0
       
    54         * @param aEmailAlertTone Email alert tone.
       
    55         */
       
    56         virtual void SetEmailAlertToneL(
       
    57             const TDesC& aEmailAlertTone ) = 0;
       
    58 
       
    59         /**
       
    60         * Set Video call ringing tone file name.
       
    61         * @since 2.6
       
    62         * @param aRingingTone Video call ringing tone file name.
       
    63         */
       
    64         virtual void SetVideoCallRingingToneL(
       
    65             const TDesC& aRingingTone ) = 0;
       
    66 
       
    67     };
       
    68 
       
    69 
       
    70 #endif      // __MPROFILESETEXTRATONES_H
       
    71 
       
    72 // End of File