diff -r 000000000000 -r 2e3d3ce01487 startupservices/Startup/syserrcmd/inc/syserrcmd.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/startupservices/Startup/syserrcmd/inc/syserrcmd.h Tue Feb 02 10:12:00 2010 +0200 @@ -0,0 +1,89 @@ +/* +* Copyright (c) 2009 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: +* Declaration of CSysErrCmd class. +* +*/ + +#ifndef SYSERRCMD_H +#define SYSERRCMD_H + +#include +#include + +class CAknGlobalNote; + +/** + * A custom command for displaying a note about unrecoverable + * system error. + */ +NONSHARABLE_CLASS( CSysErrCmd ) : public CBase, public MSsmCustomCommand + { + +public: + + /** + * Two-phased constructor + */ + static CSysErrCmd* NewL(); + + /** + * Destructor + */ + virtual ~CSysErrCmd(); + +private: // From MSsmCustomCommand + + /** + * @see MSsmCustomCommand + */ + TInt Initialize( CSsmCustomCommandEnv* aCmdEnv ); + + /** + * @see MSsmCustomCommand + */ + void Execute( const TDesC8& aParams, TRequestStatus& aRequest ); + + /** + * @see MSsmCustomCommand + */ + void ExecuteCancel(); + + /** + * @see MSsmCustomCommand + */ + void Close(); + + /** + * @see MSsmCustomCommand + */ + void Release(); + +private: // New functions + + void DoExecuteL( TRequestStatus& aRequest ); + +private: // data + + // Custom command environment. Not owned. Set in Initialize. + CSsmCustomCommandEnv* iEnv; + + /** Global note object used to show the notification on UI. Own */ + CAknGlobalNote* iNote; + + /** Global note id for cancelling the note. */ + TInt iNoteId; + }; + +#endif // SYSERRCMD_H