Added wrappers for wxTreeListCtrl, only to wxPython so far but it

could probably go into contrib/gizmos with some more work.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20515 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-05-07 00:44:13 +00:00
parent aeeb59a436
commit 2f511ce8d0
10 changed files with 10228 additions and 5 deletions

View File

@@ -983,11 +983,14 @@ if BUILD_GIZMOS:
contrib_copy_tree(opj(CTRB_SRC, 'gizmos'), GIZMOLOC)
ext = Extension('gizmosc', [
'%s/dynamicsash.cpp' % GIZMOLOC,
'%s/editlbox.cpp' % GIZMOLOC,
#'%s/multicell.cpp' % GIZMOLOC,
'%s/splittree.cpp' % GIZMOLOC,
'%s/ledctrl.cpp' % GIZMOLOC,
'%s/dynamicsash.cpp' % GIZMOLOC,
'%s/editlbox.cpp' % GIZMOLOC,
'%s/splittree.cpp' % GIZMOLOC,
'%s/ledctrl.cpp' % GIZMOLOC,
#'%s/multicell.cpp' % GIZMOLOC,
'%s/treelistctrl.cpp' % location,
] + swig_sources,
include_dirs = gizmos_includes,