bluetoothengine/btnotif/inc/btnpwrnotifier.h
branchRCL_3
changeset 23 9386f31cc85b
parent 0 f63038272f30
child 24 269724087bed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bluetoothengine/btnotif/inc/btnpwrnotifier.h	Wed Sep 01 12:20:04 2010 +0100
@@ -0,0 +1,86 @@
+/*
+* Copyright (c) 2002 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:  Declares power mode setting notifier class.
+*
+*/
+
+
+#ifndef BTNPWRNOTIFIER_H
+#define BTNPWRNOTIFIER_H
+
+// INCLUDES
+
+#include "btnotifier.h" // Base class
+
+// FORWARD DECLARATIONS
+
+// CLASS DECLARATION
+
+/**
+* This class is used to confirm Bluetooth power status change from user.
+*/
+NONSHARABLE_CLASS(CBTPwrNotifier): public CBTNotifierBase
+    {
+    public: // Constructors and destructor
+
+        /**
+        * Two-phased constructor.
+        */
+        static CBTPwrNotifier* NewL();
+
+        /**
+        * Destructor.
+        */
+        virtual ~CBTPwrNotifier();
+
+    private: // Functions from base classes
+
+        /**
+        * From CBTNotifierBase Called when a notifier is first loaded 
+        * to allow any initial construction that is required.
+        * @param None.
+        * @return A structure containing priority and channel info.
+        */
+        TNotifierInfo RegisterL();
+
+        /**
+        * From CBTNotifierBase Used in asynchronous notifier launch to 
+        * store received parameters into members variables and 
+        * make needed initializations.
+        * @param aBuffer A buffer containing received parameters
+        * @param aReturnVal The return value to be passed back.
+        * @param aMessage Should be completed when the notifier is deactivated.
+        * @return None.
+        */
+        void GetParamsL(const TDesC8& aBuffer, TInt aReplySlot, const RMessagePtr2& aMessage);
+
+    private:
+
+        /**
+        * C++ default constructor.
+        */
+        CBTPwrNotifier();
+        
+        /**
+        * Show Information Note and complete message.
+        * @param None.
+        * @return None.
+        */
+        void ShowNoteAndCompleteMessageL(); 
+
+    };
+
+#endif
+
+// End of File