#ifndef INFORMATIONWINDOW_HPP
#define INFORMATIONWINDOW_HPP

// $VER: InformationWindow.hpp 39.1 (22.06.97)
//
//
// (C) Copyright 1996,97 Markus Hillenbrand
//     All Rights Reserved, No Warranty

#include "GUICINCLUDE:GUIC_Window.hpp"

class GUIC_ScreenC;
class GUIC_ApplicationC;
class GUIC_GGFXPictureC;
class GUIC_ButtonC;
class GUIC_TextC;
class GUIC_EventC;
class GUIC_FrameC;

class InformationWindowC	: public GUIC_WindowC
	{
	public:
		InformationWindowC 				(GUIC_ApplicationC &app, GUIC_ScreenC &screen);
		~InformationWindowC 			(VOID);
		STRPTR	getClass					(VOID);
		BOOL		action						(GUIC_EventC &event);
		VOID	 	setPictures				(STRPTR fileName1, STRPTR fileName2);
		LONG		getResult				(VOID);
	protected:
		VOID		cleanUp 					(VOID);
	private:
		GUIC_ApplicationC		*app;
		GUIC_ScreenC				*screen;
		GUIC_FrameC				*frame1, *frame2;
		GUIC_GGFXPictureC	*pic1, *pic2;
		GUIC_TextC					*text1, *text2;
	};

#endif

