1 /* 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. 4 */ 5 6 #ifndef BLUETOOTH_WINDOW_H 7 #define BLUETOOTH_WINDOW_H 8 9 #include "BluetoothSettingsView.h" 10 11 #include <Application.h> 12 #include <Button.h> 13 #include <Window.h> 14 #include <Message.h> 15 #include <TabView.h> 16 17 class BluetoothSettingsView; 18 class RemoteDevicesView; 19 20 class BluetoothWindow : public BWindow { 21 public: 22 BluetoothWindow(BRect frame); 23 bool QuitRequested(); 24 void MessageReceived(BMessage *message); 25 26 private: 27 RemoteDevicesView* fRemoteDevices; 28 BButton* fDefaultsButton; 29 BButton* fRevertButton; 30 BMenuBar* fMenubar; 31 32 BluetoothSettingsView* fSettingsView; 33 }; 34 35 #endif 36