From: Ray G. <ray...@sc...> - 2005-06-20 22:52:37
|
I am currently working on generating a set of *.i files directly from wxWidgets headers, instead of hand coding them each time. This will allow us to maintain a complete up to date binding with less effort. =20 I wonder if it is better to follow the wxWidgets structure of =20 Base, Gui, Adv, Net, Html, etc=20 =20 as _wx_base.i=20 _wx_net.i _wx_gui.i _wx_adv.i=20 etc =20 and for specific toolkits _wx_gui_gtk.i=20 _wx_gui_mac.i=20 _wx_gui_mac_carbon.i=20 _wx_gui_mac_cocoa.i=20 _wx_gui_msw.i=20 _wx_gui_os2.i =20 (I have been able to get a nice set of *.h files for ctags to use from wxWidgets files.bkl) =20 Internally have still have equivalants of each wxUSE_ with wxLUA_USE_ =20 The will enable end users to only bind the wx modules they are using, and the power to customise what is exposed by lua interpreter =20 Ray |