engines/vmbxengine/inc/vmlist.h
branchRCL_3
changeset 20 987c9837762f
parent 0 ff3b6d0fd310
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
       
     1 /*
       
     2 * Copyright (c) 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:  A list query where voice mail type can be selected.
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef VMLIST_H
       
    20 #define VMLIST_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknlistquerydialog.h>
       
    24 
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 *  ?one_line_short_description.
       
    30 *  ?other_description_lines
       
    31 *
       
    32 *  @lib ?library
       
    33 *  @since ?Series60_version
       
    34 */
       
    35 class CVmListQueryDialog : public CAknListQueryDialog
       
    36 {
       
    37  public:
       
    38 	static CVmListQueryDialog* NewL( TInt* aIndex );
       
    39 	virtual ~CVmListQueryDialog();
       
    40 
       
    41  public:  
       
    42     TKeyResponse OfferKeyEventL(const TKeyEvent& aKeyEvent, TEventCode aType);
       
    43 
       
    44     
       
    45  protected:  
       
    46     TBool OkToExitL(TInt aButtonId);
       
    47  private:
       
    48 	CVmListQueryDialog( TInt* aIndex );  
       
    49 
       
    50  private:  // Data
       
    51      TBool iOkToExit;
       
    52 
       
    53 };
       
    54 
       
    55 
       
    56 #endif  // VMLIST_H
       
    57             
       
    58 // End of File