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
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
/*!
|
2003-05-19 23:53:53 +00:00
|
|
|
\file GewiIncludes.h
|
|
|
|
\brief Include file for Gewi.
|
2003-05-19 22:58:01 +00:00
|
|
|
|
2003-05-19 23:53:53 +00:00
|
|
|
Include file for Gewi, contains external includes for Gewi.
|
|
|
|
<br>$id$<br>
|
2003-05-19 22:58:01 +00:00
|
|
|
\author James Turk
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __gewiincludes_h__
|
|
|
|
#define __gewiincludes_h__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <cmath>
|
|
|
|
#include <limits>
|
|
|
|
#include "ZEngine.h"
|
|
|
|
typedef unsigned int WidgetID;
|
|
|
|
typedef unsigned int ResourceID;
|
|
|
|
enum GewiEvent { GE_LDOWN, GE_LUP, GE_RDOWN, GE_RUP, GE_KDOWN, GE_KUP, GE_GOTFOCUS, GE_LOSTFOCUS };
|
|
|
|
enum _GewiJustify { GJ_CENTER = 0, GJ_LEFT = 1<<0, GJ_RIGHT = 1<<1, GJ_TOP = 1<<2, GJ_BOTTOM = 1<<3 };
|
|
|
|
enum GButtonType { G_PRESS, G_HOVER };
|
|
|
|
typedef unsigned int GewiJustify;
|
|
|
|
using namespace std;
|
|
|
|
using namespace ZE;
|
|
|
|
|
|
|
|
#endif //__gewiincludes_h__
|