From: John L. <jr...@us...> - 2006-02-02 16:12:56
|
Update of /cvsroot/wxlua/wxLua/modules/wxbind/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8578/wxbind/src Added Files: datetime.cpp Log Message: add datetime binding file --- NEW FILE: datetime.cpp --- // --------------------------------------------------------- // This file was generated by genwxbind.lua // // Any changes made to this file may be lost when file // is regenerated // --------------------------------------------------------- #include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop #endif #ifndef WX_PRECOMP #include "wx/wx.h" #endif [...3201 lines suppressed...] // Map Lua Class Methods to C Binding Functions static WXLUAMETHOD s_wxCalendarEvent_methods[] = { #if (wxLUA_USE_wxDateTime) && (wxLUA_USE_wxCalendarCtrl) { LuaMethod, "GetDate", wxCalendarEvent_GetDate, 0, 0 }, { LuaGetProp, "Date", wxCalendarEvent_GetDate, 0, 0 }, { LuaMethod, "GetWeekDay", wxCalendarEvent_GetWeekDay, 0, 0 }, { LuaGetProp, "WeekDay", wxCalendarEvent_GetWeekDay, 0, 0 }, #endif { LuaConstructor, "wxCalendarEvent", wxCalendarEvent_constructor, 2, 2 }, { LuaDelete, "wxCalendarEvent", wxCalendarEvent_destructor, 0, 0 }, { LuaMethod, "Delete", wxCalendarEvent_Delete, 0, 0 }, }; // Extern accessor to class method map WXLUAMETHOD* wxCalendarEvent_methods = s_wxCalendarEvent_methods; int wxCalendarEvent_methodCount = sizeof(s_wxCalendarEvent_methods)/sizeof(s_wxCalendarEvent_methods[0]); #endif |