2 * Copyright 2008-09, Oliver Ruiz Dorantes, <oliver.ruiz.dorantes_at_gmail.com>
3 * All rights reserved. Distributed under the terms of the MIT License.
5 #ifndef EXTENDEDLOCALDEVICEVIEW_H_
6 #define EXTENDEDLOCALDEVICEVIEW_H_
14 #include <bluetooth/LocalDevice.h>
16 #include "BluetoothDeviceView.h"
22 class ExtendedLocalDeviceView
: public BView
25 ExtendedLocalDeviceView(LocalDevice
* bDevice
,
26 uint32 flags
= B_WILL_DRAW
);
27 ~ExtendedLocalDeviceView();
29 void SetLocalDevice(LocalDevice
* lDevice
);
32 virtual void MessageReceived(BMessage
* message
);
33 virtual void AttachedToWindow();
34 virtual void SetTarget(BHandler
* target
);
35 virtual void SetEnabled(bool value
);
40 BCheckBox
* fAuthentication
;
41 BCheckBox
* fDiscoverable
;
43 BluetoothDeviceView
* fDeviceView
;