1 /* 2 * Copyright 2001-2007, Haiku. 3 * Copyright (c) 2003-4 Kian Duffy <myob@users.sourceforge.net> 4 * Parts Copyright (C) 1998,99 Kazuho Okui and Takashi Murai. 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining 7 * a copy of this software and associated documentation files or portions 8 * thereof (the "Software"), to deal in the Software without restriction, 9 * including without limitation the rights to use, copy, modify, merge, 10 * publish, distribute, sublicense, and/or sell copies of the Software, 11 * and to permit persons to whom the Software is furnished to do so, subject 12 * to the following conditions: 13 * 14 * * Redistributions of source code must retain the above copyright notice, 15 * this list of conditions and the following disclaimer. 16 * 17 * * Redistributions in binary form must reproduce the above copyright notice 18 * in the binary, as well as this list of conditions and the following 19 * disclaimer in the documentation and/or other materials provided with 20 * the distribution. 21 * 22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 23 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 27 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 28 * THE SOFTWARE. 29 * 30 */ 31 #ifndef TERM_APP_H 32 #define TERM_APP_H 33 34 35 #include <Application.h> 36 #include <String.h> 37 38 39 extern int gPfd; 40 extern char *ptyname; 41 42 class TermWindow; 43 class TermParse; 44 class BRect; 45 class AboutDlg; 46 47 class TermApp : public BApplication { 48 public: 49 TermApp(); 50 virtual ~TermApp(); 51 52 protected: 53 void ReadyToRun(); 54 void Quit(); 55 void AboutRequested(); 56 void MessageReceived(BMessage* message); 57 void RefsReceived(BMessage* message); 58 void ArgvReceived(int32 argc, char** argv); 59 60 private: 61 status_t _MakeTermWindow(BRect& frame); 62 void _SwitchTerm(); 63 void _ActivateTermWindow(team_id id); 64 bool _IsMinimized(team_id id); 65 void _SanitizeIDs(BMessage* data, uint8* windows, ssize_t length); 66 bool _UpdateIDs(bool set, uint8* windows, ssize_t maxLength, 67 ssize_t* _length); 68 void _UpdateRegistration(bool set); 69 void _UnregisterTerminal(); 70 void _RegisterTerminal(); 71 72 void _Usage(char *name); 73 74 port_id fRegistrationPort; 75 int32 fRows, fCols, fXpos, fYpos; 76 bool fStartFullscreen; 77 BString fWindowTitle; 78 int32 fWindowNumber; 79 rgb_color fFg, fBg, fCurFg, fCurBg, fSelFg, fSelbg; 80 rgb_color fImfg, fImbg, fImSel; 81 TermWindow* fTermWindow; 82 TermParse* fTermParse; 83 BRect fTermFrame; 84 BString CommandLine; 85 }; 86 87 #endif // TERM_APP_H 88