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