Update of /cvsroot/wxlua/wxLua/modules/wxbind/include
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv14219/wxLua/modules/wxbind/include
Modified Files:
wxbind.h
Log Message:
Huge changes, overloaded functions by default
replace wx.wxNull with wx.NULL
change WXLUA_VERSION and others with wxLUA_VERSION
class member enums are part of class table
static class member functions are part of class table
%properties are generated on the fly
... and more, see docs/changelog.txt
Index: wxbind.h
===================================================================
RCS file: /cvsroot/wxlua/wxLua/modules/wxbind/include/wxbind.h,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -d -r1.64 -r1.65
*** wxbind.h 23 Mar 2007 04:27:22 -0000 1.64
--- wxbind.h 31 May 2007 17:18:47 -0000 1.65
***************
*** 43,49 ****
// the current version of the bindings.
// See 'bindings/genwxbind.lua' and 'modules/wxlua/include/wxldefs.h'
! #if WXLUA_BINDING_VERSION > 6
# error "The WXLUA_BINDING_VERSION in the bindings is too old, regenerate bindings."
! #endif //WXLUA_BINDING_VERSION > 6
// ---------------------------------------------------------------------------
--- 43,49 ----
// the current version of the bindings.
// See 'bindings/genwxbind.lua' and 'modules/wxlua/include/wxldefs.h'
[...2656 lines suppressed...]
extern WXDLLIMPEXP_DATA_WXBIND(int) wxWizard_methodCount;
+ extern WXDLLIMPEXP_WXBIND WXLUADEFINE wxWizard_enums[];
+ extern WXDLLIMPEXP_DATA_WXBIND(int) wxWizard_enumCount;
extern WXDLLIMPEXP_DATA_WXBIND(int) s_wxluatag_wxWizardEvent;
extern WXDLLIMPEXP_WXBIND WXLUAMETHOD wxWizardEvent_methods[];
extern WXDLLIMPEXP_DATA_WXBIND(int) wxWizardEvent_methodCount;
+ extern WXDLLIMPEXP_WXBIND WXLUADEFINE wxWizardEvent_enums[];
+ extern WXDLLIMPEXP_DATA_WXBIND(int) wxWizardEvent_enumCount;
extern WXDLLIMPEXP_DATA_WXBIND(int) s_wxluatag_wxWizardPage;
extern WXDLLIMPEXP_WXBIND WXLUAMETHOD wxWizardPage_methods[];
extern WXDLLIMPEXP_DATA_WXBIND(int) wxWizardPage_methodCount;
+ extern WXDLLIMPEXP_WXBIND WXLUADEFINE wxWizardPage_enums[];
+ extern WXDLLIMPEXP_DATA_WXBIND(int) wxWizardPage_enumCount;
extern WXDLLIMPEXP_DATA_WXBIND(int) s_wxluatag_wxWizardPageSimple;
extern WXDLLIMPEXP_WXBIND WXLUAMETHOD wxWizardPageSimple_methods[];
extern WXDLLIMPEXP_DATA_WXBIND(int) wxWizardPageSimple_methodCount;
+ extern WXDLLIMPEXP_WXBIND WXLUADEFINE wxWizardPageSimple_enums[];
+ extern WXDLLIMPEXP_DATA_WXBIND(int) wxWizardPageSimple_enumCount;
#endif // wxUSE_WIZARDDLG && wxLUA_USE_wxWizard
|