uifw/AknGlobalUI/OldStyleNotif/Inc/AknListMsgQueryNotificationDialog.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Global list message query dialog declaration.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __AKNLISTMSGQUERYNOTIFICATIONDIALOG__
       
    19 #define __AKNLISTMSGQUERYNOTIFICATIONDIALOG__
       
    20 
       
    21 #include <AknQueryDialog.h>
       
    22 #include <aknlistquerydialog.h>
       
    23 #include "AknListQueryNotificationDialog.h"
       
    24 
       
    25 NONSHARABLE_CLASS(CAknListMsgQueryNotificationDialog) : public CAknListQueryDialog
       
    26     {
       
    27 public:
       
    28     CAknListMsgQueryNotificationDialog( 
       
    29         TInt* aIndex,
       
    30         MAknListQueryNotificationCallback* aCallBack,
       
    31         CAknListMsgQueryNotificationDialog** aSelfPtr,
       
    32         TInt aAcceptKeyId,
       
    33         TInt aCancelKeyId);
       
    34 
       
    35     ~CAknListMsgQueryNotificationDialog();
       
    36     
       
    37     TKeyResponse OfferKeyEventL( 
       
    38         const TKeyEvent& aKeyEvent,
       
    39         TEventCode aType );
       
    40 
       
    41 protected:
       
    42     TBool OkToExitL(TInt aButtonId);
       
    43     
       
    44 private: 
       
    45     MAknListQueryNotificationCallback* iCallBack;
       
    46     CAknListMsgQueryNotificationDialog** iSelfPtr;
       
    47     TInt iAcceptKeyId;
       
    48     TInt iCancelKeyId;
       
    49     };
       
    50 
       
    51 #endif // __AKNLISTMSGQUERYNOTIFICATIONDIALOG__
       
    52 
       
    53 // End of File