mmsharing/mmshui/inc/musuidialogutil.h
branchRCL_3
changeset 33 bc78a40cd63c
parent 0 f0cf47e981f9
equal deleted inserted replaced
32:73a1feb507fb 33:bc78a40cd63c
       
     1 /*
       
     2 * Copyright (c) 2005-2006 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 
       
    19 #ifndef MUSDIALOGUTIL_H
       
    20 #define MUSDIALOGUTIL_H
       
    21 
       
    22 #include <e32base.h>
       
    23 #include <badesca.h>
       
    24 
       
    25 class MusUiDialogUtil
       
    26     {
       
    27 
       
    28     public:
       
    29         /**
       
    30          */
       
    31         static TBool ShowGlobalConfirmationQueryDialogL( const TDesC& aPrompt );
       
    32 
       
    33         static void ShowInformationDialogL( const TDesC& aPrompt );
       
    34 
       
    35         static void ShowInformationDialogL( TInt aResourceId );
       
    36 
       
    37         static void ShowGlobalInformationDialogL( TInt aResourceId );
       
    38 
       
    39         static void ShowGlobalInformationDialogL( const TDesC& aMessage );
       
    40         
       
    41         static void ShowGlobalErrorDialogL( const TDesC& aMessage );
       
    42 
       
    43         static void ShowGlobalErrorDialogL( TInt aResourceId );
       
    44         
       
    45         static void ShowGlobalErrorModalDialogL( const TDesC& aMessage );
       
    46         
       
    47         static void ShowGlobalErrorModalDialogL( TInt aResourceId );
       
    48 
       
    49         static TBool SelectAddressDialogL( CDesCArray* aAddressArray,
       
    50                                            TDes& aSelectedAddress );
       
    51 
       
    52         static TBool ShowTextQueryDialogL( const TDesC& aPrompt, TDes& aValue );
       
    53 
       
    54         static TBool ShowTextQueryDialogL( TInt aPromptResourceId,
       
    55                                            TDes& aValue );
       
    56 
       
    57     };
       
    58 
       
    59 
       
    60 
       
    61 #endif // MUSDIALOGUTIL_H