This commit is contained in:
cozman 2003-06-16 04:47:54 +00:00
parent 3849f459c4
commit 4bf838ff0b
7 changed files with 26 additions and 9 deletions

View File

@ -1,5 +1,15 @@
Gewi Version Log for Version 0.2.0
$Id: changelog.txt,v 1.2 2003/06/16 04:47:54 cozman Exp $
0.2.0
-Began doxygen documentation.
-Packaged for release (VC7 only).
-Revision of all source code, cleaned up various areas.
-Fixed a few bugs involving empty containers.
-Faster + smaller container methods.
-Slightly modified event handling (will rely on ZEngine 0.8.4).
-Added ZEngine version check.
-Changed memory handling and resource management usage.
-Wrote all doxygen documentation.
-Fixed bugs, cleaned up interface.
-BSD style license.
-Changed namespaces from ZE to Gewi.

View File

@ -4,7 +4,7 @@
Header file for the Gewi GUI lib, an addon for the ZEngine Game Engine, both from Concept of Zero, this is the
file that programs that wish to use should include.
<br>$Id: Gewi.h,v 1.1 2003/06/07 05:42:08 cozman Exp $<br>
<br>$Id: Gewi.h,v 1.2 2003/06/16 04:47:54 cozman Exp $<br>
\author James Turk
**/
@ -13,7 +13,7 @@
\author James Turk
\version 0.2.0
\date June 7th, 2003
\date June 16th, 2003
\section Gewi About ZEngine and Gewi
<br>

View File

@ -13,7 +13,7 @@
\brief Implementation of GewiEngine.
Implementation of GewiEngine, core engine for Gewi GUI control.
<br>$Id: GewiEngine.cpp,v 1.8 2003/06/12 09:32:33 cozman Exp $<br>
<br>$Id: GewiEngine.cpp,v 1.9 2003/06/16 04:47:54 cozman Exp $<br>
\author James Turk
**/
@ -23,8 +23,8 @@
namespace Gewi
{
VersionInfo GewiEngine::Version(0,2,0,"dev");
VersionInfo GewiEngine::MinZEVersion(0,8,4,"dev"); //important to keep this accurate
VersionInfo GewiEngine::Version(0,2,0);
VersionInfo GewiEngine::MinZEVersion(0,8,4); //important to keep this accurate
GewiEngine *GewiEngine::sInstance=NULL;
GewiEngine::GewiEngine()

View File

@ -113,8 +113,6 @@ void Test1()
int main(int argc, char *argv[])
{
ZEngine *ze = ZEngine::GetInstance();
Init();
Test1();

View File

@ -1,4 +1,6 @@
Gewi Todo List
-Documentation
-More Widgets
-Linux
-More examples.
Feel free to contribute, Gewi is a side project and I will rely on the community for new widget ideas and such.

View File

@ -17,6 +17,7 @@ Global
{F5974221-8DB8-4BC1-B944-EE62F44A9114}.Release.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
DPBuild = 5
EndGlobalSection
GlobalSection(ExtensibilityAddIns) = postSolution
EndGlobalSection

View File

@ -88,12 +88,18 @@
<Filter
Name="Header Files"
Filter="h;hpp;hxx;hm;inl;inc">
<File
RelativePath="..\include\Gewi.h">
</File>
<File
RelativePath="..\include\GewiButton.h">
</File>
<File
RelativePath="..\include\GewiContainer.h">
</File>
<File
RelativePath="..\include\GewiDefines.h">
</File>
<File
RelativePath="..\include\GewiEngine.h">
</File>