xref: /haiku/src/apps/processcontroller/PCWindow.h (revision ed7a35012e2c301208b3a6b720cf389876f47ac5)
1*ed7a3501SAxel Dörfler /*
2*ed7a3501SAxel Dörfler 
3*ed7a3501SAxel Dörfler 	PCWindow.h
4*ed7a3501SAxel Dörfler 
5*ed7a3501SAxel Dörfler 	ProcessController
6*ed7a3501SAxel Dörfler 	� 2000, Georges-Edouard Berenger, All Rights Reserved.
7*ed7a3501SAxel Dörfler 	Copyright (C) 2004 beunited.org
8*ed7a3501SAxel Dörfler 
9*ed7a3501SAxel Dörfler 	This library is free software; you can redistribute it and/or
10*ed7a3501SAxel Dörfler 	modify it under the terms of the GNU Lesser General Public
11*ed7a3501SAxel Dörfler 	License as published by the Free Software Foundation; either
12*ed7a3501SAxel Dörfler 	version 2.1 of the License, or (at your option) any later version.
13*ed7a3501SAxel Dörfler 
14*ed7a3501SAxel Dörfler 	This library is distributed in the hope that it will be useful,
15*ed7a3501SAxel Dörfler 	but WITHOUT ANY WARRANTY; without even the implied warranty of
16*ed7a3501SAxel Dörfler 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17*ed7a3501SAxel Dörfler 	Lesser General Public License for more details.
18*ed7a3501SAxel Dörfler 
19*ed7a3501SAxel Dörfler 	You should have received a copy of the GNU Lesser General Public
20*ed7a3501SAxel Dörfler 	License along with this library; if not, write to the Free Software
21*ed7a3501SAxel Dörfler 	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22*ed7a3501SAxel Dörfler 
23*ed7a3501SAxel Dörfler */
24*ed7a3501SAxel Dörfler 
25*ed7a3501SAxel Dörfler #ifndef _PCWINDOW_H_
26*ed7a3501SAxel Dörfler #define _PCWINDOW_H_
27*ed7a3501SAxel Dörfler 
28*ed7a3501SAxel Dörfler #include <Window.h>
29*ed7a3501SAxel Dörfler 
30*ed7a3501SAxel Dörfler class PCWindow : public BWindow {
31*ed7a3501SAxel Dörfler 
32*ed7a3501SAxel Dörfler public:
33*ed7a3501SAxel Dörfler 				PCWindow();
34*ed7a3501SAxel Dörfler 				~PCWindow();
35*ed7a3501SAxel Dörfler virtual	bool	QuitRequested();
36*ed7a3501SAxel Dörfler 
37*ed7a3501SAxel Dörfler private:
38*ed7a3501SAxel Dörfler 		bool	wasShowing;
39*ed7a3501SAxel Dörfler };
40*ed7a3501SAxel Dörfler 
41*ed7a3501SAxel Dörfler #endif // _PCWINDOW_H_
42