Revision: 460
http://saggui.svn.sourceforge.net/saggui/?rev=460&view=rev
Author: juvinious
Date: 2007-08-24 15:19:22 -0700 (Fri, 24 Aug 2007)
Log Message:
-----------
Modified creationEngine and fixed typo in comments in common.h
Modified Paths:
--------------
trunk/include/saggui/common.h
trunk/include/saggui/creationengine.h
Modified: trunk/include/saggui/common.h
===================================================================
--- trunk/include/saggui/common.h 2007-08-24 21:23:12 UTC (rev 459)
+++ trunk/include/saggui/common.h 2007-08-24 22:19:22 UTC (rev 460)
@@ -48,7 +48,7 @@
/*! A common set of definitions used throughout SAGGUI which can be easily accessible */
//! \name WINDOW RELATED
- /*! Set \ref window::windowType to one of the following:\n
+ /*! Set \ref winType to one of the following:\n
* W_Basic - (default) A basic widget \n
* W_PushButton - A button style type of widget \n
* W_LineEdit - Input based widget \n
Modified: trunk/include/saggui/creationengine.h
===================================================================
--- trunk/include/saggui/creationengine.h 2007-08-24 21:23:12 UTC (rev 459)
+++ trunk/include/saggui/creationengine.h 2007-08-24 22:19:22 UTC (rev 460)
@@ -81,6 +81,16 @@
//! Map of all widgets
std::map<const std::string, window *> windows;
+
+ /*! \ref creationEngine::typeInfo is a type list for windows and data:\n
+ * to store data
+ * TI_TYPE - widget type \n
+ */
+ enum typeInfo
+ {
+ TI_TYPE = 0,
+ TI_TEXT
+ };
};
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|