Merge view class in the window object

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33471 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Ruiz Dorantes
2009-10-06 20:03:36 +00:00
parent b0488dca68
commit 515209e338
2 changed files with 89 additions and 105 deletions
+18 -27
View File
@@ -10,44 +10,35 @@
#include <Window.h>
#include <bluetooth/bluetooth.h>
#include <bluetooth/HCI/btHCI.h>
class BStringView;
class BButton;
class BTextControls;
class BTextControl;
namespace Bluetooth {
class RemoteDevice;
class PincodeView : public BView
class PincodeWindow : public BWindow
{
public:
public:
PincodeWindow(bdaddr_t address, hci_id hid);
PincodeWindow(RemoteDevice* rDevice);
virtual void MessageReceived(BMessage *msg);
virtual bool QuitRequested();
void SetBDaddr(const char* address);
PincodeView(BRect rect);
private:
void InitUI();
bdaddr_t fBdaddr;
hci_id fHid;
void SetBDaddr(const char* address);
BStringView* fMessage;
BStringView* fRemoteInfo;
BButton* fAcceptButton;
BButton* fCancelButton;
BTextControl* fPincodeText;
};
class PincodeWindow : public BWindow
{
public:
PincodeWindow(bdaddr_t address, hci_id hid);
PincodeWindow(RemoteDevice* rDevice);
virtual void MessageReceived(BMessage *msg);
virtual bool QuitRequested();
private:
PincodeView* fView;
bdaddr_t bdaddr;
bdaddr_t fBdaddr;
hci_id fHid;
BStringView* fMessage;
BStringView* fRemoteInfo;
BButton* fAcceptButton;
BButton* fCancelButton;
BTextControl* fPincodeText;
};
}