uifw/AvKon/tsrc/bc/bctestdom5.0/bctestdomaiwakn/inc/bctestdomuiservershutdownapps.h
changeset 0 2f259fa3e83a
child 10 3d340a0166ff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/uifw/AvKon/tsrc/bc/bctestdom5.0/bctestdomaiwakn/inc/bctestdomuiservershutdownapps.h	Tue Feb 02 01:00:49 2010 +0200
@@ -0,0 +1,125 @@
+/*
+* ============================================================================
+*  Name        : bctestdomuiservershutdownapps.h
+*  Part of     : BCTest / bctestdomaiwakn       
+*  Description : test the asynchronous method RAknUiServer::ShutdownApps().
+*  Version     : %version: 1 % << Don't touch! Updated by Synergy at check-out.
+*
+*  Copyright © 2007.  All rights reserved.
+*  This material, including documentation and any related computer
+*  programs, is protected by copyright controlled by Nokia.  All
+*  rights are reserved.  Copying, including reproducing, storing,
+*  adapting or translating, any or all of this material requires the
+*  prior written consent of Nokia.  This material also contains
+*  confidential information which may not be disclosed to others
+*  without the prior written consent of Nokia.
+* ============================================================================
+* Template version: 4.2
+*/
+
+#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