uifw/AknGlobalUI/OldStyleNotif/Inc/AknListQueryNotificationDialog.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 27 Apr 2010 16:55:05 +0300
branchRCL_3
changeset 18 0aa5fbdfbc30
parent 0 2f259fa3e83a
child 55 aecbbf00d063
permissions -rw-r--r--
Revision: 201015 Kit: 201017

/*
* Copyright (c) 2002-2008 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:  Global list query dialog declaration.
*
*/

#ifndef __AKNLISTQUERYNOTIFICATIONDIALOG__
#define __AKNLISTQUERYNOTIFICATIONDIALOG__

#include <AknQueryDialog.h>
#include <aknlistquerydialog.h>

class MAknListQueryNotificationCallback
    {
public:
    virtual void QueryDismissedL(TInt aResult) = 0;
    };

NONSHARABLE_CLASS(CAknListQueryNotificationDialog) : public CAknListQueryDialog
    {
public:
    CAknListQueryNotificationDialog( 
        TInt* aIndex,
        MAknListQueryNotificationCallback* aCallBack,
        CAknListQueryNotificationDialog** aSelfPtr);

    ~CAknListQueryNotificationDialog();
    
    TKeyResponse OfferKeyEventL( 
        const TKeyEvent& aKeyEvent,
        TEventCode aType);
    
    void HandleListBoxEventL(CEikListBox* aListBox, 
                                              TListBoxEvent aEventType);

protected:
    TBool OkToExitL(TInt aButtonId);
    
    void HandlePointerEventL(const TPointerEvent& aPointerEvent);
    
private: 
    virtual void CEikDialog_Reserved_1();
    virtual void CEikDialog_Reserved_2();   
    virtual void CAknDialog_Reserved();
    virtual void CAknQueryDialog_Reserved();   
    MAknListQueryNotificationCallback* iCallBack;
    CAknListQueryNotificationDialog** iSelfPtr;
    TBool iPanning;
    TBool iFlick;
    TBool iPointerUpEaten;
    };

#endif // __AKNLISTQUERYNOTIFICATIONDIALOG__

// End of file