xref: /haiku/src/apps/serialconnect/SerialWindow.h (revision 204dee708a999d5a71d0cb9497650ee7cef85d0a)
1 /*
2  * Copyright 2012, Adrien Destugues, pulkomandy@gmail.com
3  * Distributed under the terms of the MIT licence.
4  */
5 
6 
7 #include <Window.h>
8 
9 
10 class BMenu;
11 class TermView;
12 
13 
14 class SerialWindow: public BWindow
15 {
16 	public:
17 		SerialWindow();
18 		~SerialWindow();
19 
20 		void MenusBeginning();
21 		void MessageReceived(BMessage* message);
22 
23 	private:
24 		TermView* fTermView;
25 		BMenu* fConnectionMenu;
26 		BFilePanel* fLogFilePanel;
27 
28 		static const char* kWindowTitle;
29 };
30