uifw/AvKon/tsrc/bc/bctestdom3.2/bctestdomaiwakn/inc/bctestdomuiservershutdownapps.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 11 May 2010 16:27:42 +0300
branchRCL_3
changeset 23 3d340a0166ff
parent 0 2f259fa3e83a
permissions -rw-r--r--
Revision: 201017 Kit: 201019

/*
* Copyright (c) 2007 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: 
*
*/

#ifndef C_CBCTESTDOMUISERVERSHUTDOWNAPPS_H
#define C_CBCTESTDOMUISERVERSHUTDOWNAPPS_H

 
#include <akncapserverclient.h> 

 
/**
 *  test the asynchronous method RAknUiServer::ShutdownApps().
 *  
 *
 *  @code
 *    
 *  @endcode
 *
 *  @lib   
 *  @since S60 v5.0
 */  
class CBCTestDomUiServerShutdownApps : public CActive
    {

public:


     static CBCTestDomUiServerShutdownApps * NewLC();

    /**
     * Destructor.
     */
    virtual ~CBCTestDomUiServerShutdownApps ();

    /**
     * Unlock the default Multimedia Memory Card.
     *
     * Display a text query dialog requesting the password.
     * Unlock the MMC using the password entered by the user
     * in this dialog (unless the dialog is cancelled).
     * If the password is wrong display the dialog again with
     * a different prompt. This call is asynchronous, the
     * application should not assume that the card has been
     * unlocked when this function returns. In fact,
     * when this function returns the dialog is still
     * displaying. If the application needs to be notified
     * when the unlock operation is complete, it should implement
     * UnlockComplete. Memory for this class is automatically
     * released when the unlock operation is complete.
     * The application should therefore not delete this object.
     *
     * @since S60 v5.0     
     * @param aStore        store passwd
     *
     */
    void ShutdownAppsLD( const TUid aRequesterUID, 
                         const TInt aTimeoutInMicroseconds = 500 );

protected: 

// from base class CActive  
    /**
     * from  CActive.  
     * will delete this unless we are deleting already 
     *
     * @since S60 v5.0    
     */
     void DoCancel();  
     
    /**
     * from  CActive. 
     * Internal routine to set the state
     *
     * @since S60 v5.0
     */
     void RunL();
      
private:

     CBCTestDomUiServerShutdownApps ();

     void ConstructL();
   
    /**
     * New functions     
     * 
     *
     * @since S60 v5.0
     * @param aRequesterUID  an app uid.
     * @param aTimeoutInMicroseconds   a timeout in microseconds .  
     */
     void StartL( const TUid aRequesterUID, 
        const TInt aTimeoutInMicroseconds = 500 );  
      
private: // Data

    /**
     * pointer to RAknUiServer
     * Not own.  
     */
     RAknUiServer*    iAknCapServerClient;

    };

 



#endif // C_CBCTESTDOMUISERVERSHUTDOWNAPPS_H