⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bluetoothdevicediscoverer.h

📁 roids60 game symbian os application development
💻 H
字号:
/*============================================================================ Name			: BlueToothDeviceDiscoverer.h Author	  		:  Copyright   	:  Description 	: CBluetoothDeviceDiscoverer is responsible for displaying to the player (Master role) the available				  BT devices in range from which they can choose. CBluetoothDeviceDiscoverer is implemented using the				  Rnotifier dialog that is provided by the Notifier Framework. If the application needs to customize the 				  BT discovery [by displaying to the user the BT devices in range using a custumize UI] then the				  application needs to use the RHostResolver class instead of the RNotifier class. Steps to use				  the RHostResolver are:				  1) RHostResolver::Open(RSocketServ &aSocketServer, TUint anAddrFamily, TUint aProtocol);				  2) RHostResolver::GetByAddress(const TSockAddr &anAddr, TNameEntry &aResult, TRequestStatus &aStatus);				  3) In the RunL store the BT address and call RHostResolver::Next() to get the next availble BT device.				  4) When the BT discovery is finished then pass the array of BT device addresses to the engine (by a callbck)				     to be displayed by the customized UI (like a multi choice control).				  5) The Master player selects the BT devices to which she wants to connect.				  6)The App engine will create one Connector per BT device selected by the Master player============================================================================*/#ifndef __BLUETOOTHDEVICEDISCOVERER_H__#define __BLUETOOTHDEVICEDISCOVERER_H__#include <bt_sock.h>#include <btmanclient.h>#include <btsdp.h>#include "commoninterfaces.h"/*** CBluetoothDeviceDiscoverer* Displays to the player the BT device in range to choose from*/class CBluetoothDeviceDiscoverer : public CActive    {public:	/**	* Two stage constructor	* @param aObs Device discovery observer	*/    static CBluetoothDeviceDiscoverer* NewL(MBluetoothDeviceDiscovererObserver& aObs);    	/**	* Destructor	*/    ~CBluetoothDeviceDiscoverer();    	/**	* Displays the BT device in range for the player to choose from	* @param aSelectionFilter	pckgbuf to send paramaters to the device selection dialog via the notifier framework	*/    void DiscoverAndSelectDeviceL(const TBTDeviceSelectionParamsPckg& aSelectionFilter);private:	/**	* Constructor	* @param aObs	Device discovery observer	*/    CBluetoothDeviceDiscoverer(MBluetoothDeviceDiscovererObserver& aObs);    	/**	* Second phase constructor 	*/    void ConstructL();      //From CActive	/**	* Handles CBluetoothDeviceDiscoverer's completion events	*/    void RunL();    	/**	* Cancels an oustanding Notifier request	*/    void DoCancel();    	/**	* Handles a leave occurring in the request completion event handler RunL()	* @param aError	 The leave code	* @return TInt	 The default implementation returns aError.A derived class implementation should return KErrNone,	*				 if it handles the leave; otherwise it should return any suitable value to cause the handling	*				 of the error to be propagated back to the active scheduler.	*/	virtual TInt RunError(TInt aError);private:	/**	* The reference to the device discoverer observer	*/	MBluetoothDeviceDiscovererObserver& iObserver;		/**	* A handle to the Notifier Server's session 	*/	RNotifier iBTDevicesNotifier;		/**	* Pckgbuf to retrieve the response from the device selection dialog via the Notifier framework	*/	TBTDeviceResponseParamsPckg iResponse;    };#endif // __BLUETOOTHDEVICEDISCOVERER_H__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -