xref: /haiku/src/apps/terminal/TermApp.h (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
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 class Arguments;
39 class BRect;
40 class BWindow;
41 class TermApp : public BApplication {
42 	public:
43 		TermApp();
44 		virtual ~TermApp();
45 
46 	protected:
47 		void ReadyToRun();
48 		void Quit();
49 		void AboutRequested();
50 		void MessageReceived(BMessage* message);
51 		void RefsReceived(BMessage* message);
52 		void ArgvReceived(int32 argc, char** argv);
53 
54 	private:
55 		status_t _MakeTermWindow(BRect& frame);
56 		void _SwitchTerm();
57 		void _ActivateTermWindow(team_id id);
58 		bool _IsMinimized(team_id id);
59 		void _SanitizeIDs(BMessage* data, uint8* windows, ssize_t length);
60 		bool _UpdateIDs(bool set, uint8* windows, ssize_t maxLength,
61 			ssize_t* _length);
62 		void _UpdateRegistration(bool set);
63 		void _UnregisterTerminal();
64 		void _RegisterTerminal();
65 
66 		void _HandleChildCleanup();
67 		static void _SigChildHandler(int signal, void* data);
68 		static status_t _ChildCleanupThread(void* data);
69 
70 		void _Usage(char *name);
71 
72 		bool		fStartFullscreen;
73 		BString		fWindowTitle;
74 		int32		fWindowNumber;
75 
76 		BWindow*	fTermWindow;
77 		BRect		fTermFrame;
78 		Arguments	*fArgs;
79 };
80 
81 #endif	// TERM_APP_H
82