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