xref: /haiku/src/preferences/bluetooth/InquiryPanel.h (revision 3fcbf7dc22d4d2d85eae66a9a8ac113243878873)
196455f01SOliver Ruiz Dorantes /*
296455f01SOliver Ruiz Dorantes  * Copyright 2008-09, Oliver Ruiz Dorantes, <oliver.ruiz.dorantes_at_gmail.com>
396455f01SOliver Ruiz Dorantes  * All rights reserved. Distributed under the terms of the MIT License.
496455f01SOliver Ruiz Dorantes  */
596455f01SOliver Ruiz Dorantes #ifndef INQUIRY_WINDOW_H
696455f01SOliver Ruiz Dorantes #define INQUIRY_WINDOW_H
796455f01SOliver Ruiz Dorantes 
896455f01SOliver Ruiz Dorantes #include <Application.h>
996455f01SOliver Ruiz Dorantes #include <Button.h>
1096455f01SOliver Ruiz Dorantes #include <Window.h>
1196455f01SOliver Ruiz Dorantes #include <Message.h>
1296455f01SOliver Ruiz Dorantes #include <TabView.h>
1396455f01SOliver Ruiz Dorantes 
14*3fcbf7dcSOliver Ruiz Dorantes class BStatusBar;
15*3fcbf7dcSOliver Ruiz Dorantes class BButton;
16*3fcbf7dcSOliver Ruiz Dorantes class BTextView;
1796455f01SOliver Ruiz Dorantes 
18*3fcbf7dcSOliver Ruiz Dorantes class InquiryPanel : public BWindow
1996455f01SOliver Ruiz Dorantes {
2096455f01SOliver Ruiz Dorantes public:
21*3fcbf7dcSOliver Ruiz Dorantes 			InquiryPanel(BRect frame);
2296455f01SOliver Ruiz Dorantes 	bool	QuitRequested(void);
2396455f01SOliver Ruiz Dorantes 	void	MessageReceived(BMessage *message);
2496455f01SOliver Ruiz Dorantes 
2596455f01SOliver Ruiz Dorantes private:
26*3fcbf7dcSOliver Ruiz Dorantes 		BStatusBar*				fScanProgress;
27*3fcbf7dcSOliver Ruiz Dorantes 		BButton*				fAddButton;
28*3fcbf7dcSOliver Ruiz Dorantes 		BButton*				fInquiryButton;
29*3fcbf7dcSOliver Ruiz Dorantes 		BTextView*				fMessage;
3096455f01SOliver Ruiz Dorantes 
3196455f01SOliver Ruiz Dorantes };
3296455f01SOliver Ruiz Dorantes 
3396455f01SOliver Ruiz Dorantes #endif
34