diff -r 000000000000 -r 2f259fa3e83a uifw/AknGlobalUI/OldStyleNotif/Inc/aknsystemconfirmationpopup.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uifw/AknGlobalUI/OldStyleNotif/Inc/aknsystemconfirmationpopup.h Tue Feb 02 01:00:49 2010 +0200 @@ -0,0 +1,107 @@ +/* +* 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: Plugin implementation of global confirmation query. +* +*/ + +#ifndef __AKNSYSTEMCONFIRMATIONPOPUP_H__ +#define __AKNSYSTEMCONFIRMATIONPOPUP_H__ + +#include +#include +#include +#include +#include +#include "aknsystemmsgpopup.h" // for MAknQueryNotificationCallback + +NONSHARABLE_CLASS(CAknQueryNotificationDialog) : public CAknQueryDialog + { +public: + CAknQueryNotificationDialog( + MAknQueryNotificationCallback* aCallBack, + CAknQueryNotificationDialog** aSelfPtr, + TInt aSoftkeys = 0, + TInt aAnimation = 0, + CEikImage* aImage = NULL, + const TTone aTone = ENoTone, + TBool aEveryKeyDismisses = EFalse, + TInt aImageId = 0, + TInt aMaskId = 0); + + ~CAknQueryNotificationDialog(); + + TKeyResponse OfferKeyEventL( + const TKeyEvent& aKeyEvent, + TEventCode aType); + +protected: + TBool OkToExitL(TInt aButtonId); + void PostLayoutDynInitL(); + +private: + virtual void CEikDialog_Reserved_1(); + virtual void CEikDialog_Reserved_2(); + virtual void CAknDialog_Reserved(); + virtual void CAknQueryDialog_Reserved(); + +private: + TInt iSoftkeys; + TInt iAnimation; + CEikImage* iImage; + MAknQueryNotificationCallback* iCallBack; + CAknQueryNotificationDialog** iSelfPtr; + TBool iEveryKeyDismisses; + TInt iImageId, iMaskId; + }; + + +NONSHARABLE_CLASS(CAknGlobalConfirmationQuerySubject) : + public CBase, + public MEikSrvNotifierBase2, + public MAknQueryNotificationCallback + { +public: + static CAknGlobalConfirmationQuerySubject* NewL(); + virtual ~CAknGlobalConfirmationQuerySubject(); + + // From MEikSrvNotifierBase. + void Release(); + TNotifierInfo RegisterL(); + TNotifierInfo Info() const; + TPtrC8 StartL(const TDesC8& aBuffer); + void StartL(const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage); + TPtrC8 UpdateL(const TDesC8& aBuffer); + void Cancel(); + + // From MAknListQueryNotificationCallback. + void QueryDismissedL(TInt aResult); + +private: + CAknGlobalConfirmationQuerySubject(); + void ConstructL(); + +private: + RMessagePtr2 iMessage; + const TAny* iReturnVal; + TBool iPending; + TNotifierInfo iInfo; + CAknQueryNotificationDialog* iDlg; + TBool iAppsKeySuppressed; + + CEikonEnv* iStoredEikonEnv; + }; + +#endif // __AKNSYSTEMCONFIRMATIONPOPUP_H__ + +// End of file