Added wx/listbase.h with wxListCtrl types, so we can

have wxGenericListCtrl available on all platforms


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16330 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-07-30 19:04:18 +00:00
parent 93e8d870e8
commit e81a301cbd
5 changed files with 451 additions and 414 deletions

View File

@@ -47,7 +47,16 @@
#include "wx/textctrl.h"
#endif
#include "wx/listctrl.h"
// Include wx/listctrl.h (with wxListView declaration)
// only when wxGenericListCtrl is the only
// implementation, and therefore wxListView needs
// to be derived from the 'generic' version.
#if defined(__WIN32__) && !defined(__WXUNIVERSAL__)
#include "wx/generic/listctrl.h"
#else
#include "wx/listctrl.h"
#endif
#if defined(__WXGTK__)
#include <gtk/gtk.h>