zengine-gewi/include/GewiWindow.h

46 lines
1.3 KiB
C
Raw Normal View History

2003-05-19 22:58:01 +00:00
/*******************************************************************************
This file is Part of the Gewi GUI Library for ZEngine.
Gewi and ZEngine Copyright (C) 2002, 2003 James Turk
Licensed under a BSD-style license. (see licensing.txt)
The maintainer of this library is James Turk (james@conceptofzero.net)
this library is found at the home of ZEngine http://zengine.sourceforge.net
*******************************************************************************/
/*!
\file ZE_ZConfigFile.h
\brief Definition file for ZConfigFile.
Definition file for ZConfigFile, an INI-style config file format.
<br>$ id: ZE_ZConfigFile.h,v 1.9 2003/02/10 04:40:16 cozman Exp $<br>
\author James Turk
**/
#ifndef __gewiwindow_h__
#define __gewiwindow_h__
#include "GewiEngine.h"
#include "GewiContainer.h"
namespace Gewi
{
class GWindow : public GContainer
{
protected:
bool rDrag;
float rDragX,rDragY;
ResourceID rBackground;
public:
GWindow();
virtual void Create(float x, float y, float width, float height, ResourceID backgroundImg);
virtual void Message(SDL_Event *rawEvent, GewiEvent event, Uint16 mouseX, Uint16 mouseY, char ch);
virtual void Show();
};
}
#endif //__gewiwindow_h__