Deprecated PyShell and PyShellWindow, added a snapshot of PyCrust.
Added the new virtual list capabilities to wxListCtrl. Other odds and ends. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11380 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
51
wxPython/demo/VirtualListCtrl.py
Normal file
51
wxPython/demo/VirtualListCtrl.py
Normal file
@@ -0,0 +1,51 @@
|
||||
|
||||
|
||||
from wxPython.wx import *
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
class TestVirtualList(wxListCtrl):
|
||||
def __init__(self, parent, log):
|
||||
wxListCtrl.__init__(self, parent, -1,
|
||||
style=wxLC_REPORT|wxLC_VIRTUAL|wxLC_HRULES|wxLC_VRULES)
|
||||
self.log = log
|
||||
|
||||
self.InsertColumn(0, "First")
|
||||
self.InsertColumn(1, "Second")
|
||||
self.InsertColumn(2, "Third")
|
||||
self.SetColumnWidth(0, 175)
|
||||
self.SetColumnWidth(1, 175)
|
||||
self.SetColumnWidth(2, 175)
|
||||
|
||||
self.SetItemCount(1000000)
|
||||
|
||||
|
||||
|
||||
|
||||
def OnGetItemText(self, item, col):
|
||||
return "Item %d, column %d" % (item, col)
|
||||
|
||||
def OnGetItemImage(self, item):
|
||||
return 0
|
||||
|
||||
def OnGetItemAttr(self, item):
|
||||
return None
|
||||
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
def runTest(frame, nb, log):
|
||||
win = TestVirtualList(nb, log)
|
||||
return win
|
||||
|
||||
#----------------------------------------------------------------------
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
overview = """\
|
||||
"""
|
Reference in New Issue
Block a user