1*96455f01SOliver Ruiz Dorantes /* 2*96455f01SOliver Ruiz Dorantes * Copyright 2008-09, Oliver Ruiz Dorantes, <oliver.ruiz.dorantes_at_gmail.com> 3*96455f01SOliver Ruiz Dorantes * All rights reserved. Distributed under the terms of the MIT License. 4*96455f01SOliver Ruiz Dorantes */ 5*96455f01SOliver Ruiz Dorantes #ifndef BLUETOOTH_WINDOW_H 6*96455f01SOliver Ruiz Dorantes #define BLUETOOTH_WINDOW_H 7*96455f01SOliver Ruiz Dorantes 8*96455f01SOliver Ruiz Dorantes #include <Application.h> 9*96455f01SOliver Ruiz Dorantes #include <Button.h> 10*96455f01SOliver Ruiz Dorantes #include <Window.h> 11*96455f01SOliver Ruiz Dorantes #include <Message.h> 12*96455f01SOliver Ruiz Dorantes #include <TabView.h> 13*96455f01SOliver Ruiz Dorantes 14*96455f01SOliver Ruiz Dorantes 15*96455f01SOliver Ruiz Dorantes #include "BluetoothSettingsView.h" 16*96455f01SOliver Ruiz Dorantes 17*96455f01SOliver Ruiz Dorantes class RemoteDevicesView; 18*96455f01SOliver Ruiz Dorantes class ConnChanView; 19*96455f01SOliver Ruiz Dorantes 20*96455f01SOliver Ruiz Dorantes class BluetoothWindow : public BWindow 21*96455f01SOliver Ruiz Dorantes { 22*96455f01SOliver Ruiz Dorantes public: 23*96455f01SOliver Ruiz Dorantes BluetoothWindow(BRect frame); 24*96455f01SOliver Ruiz Dorantes bool QuitRequested(void); 25*96455f01SOliver Ruiz Dorantes void MessageReceived(BMessage *message); 26*96455f01SOliver Ruiz Dorantes 27*96455f01SOliver Ruiz Dorantes private: 28*96455f01SOliver Ruiz Dorantes RemoteDevicesView* fRemoteDevices; 29*96455f01SOliver Ruiz Dorantes ConnChanView* fConnChan; 30*96455f01SOliver Ruiz Dorantes BButton* fDefaultsButton; 31*96455f01SOliver Ruiz Dorantes BButton* fRevertButton; 32*96455f01SOliver Ruiz Dorantes BMenuBar* fMenubar; 33*96455f01SOliver Ruiz Dorantes 34*96455f01SOliver Ruiz Dorantes BluetoothSettingsView* fSettingsView; 35*96455f01SOliver Ruiz Dorantes 36*96455f01SOliver Ruiz Dorantes }; 37*96455f01SOliver Ruiz Dorantes 38*96455f01SOliver Ruiz Dorantes #endif 39