What is the best choice for a Python GUI application to display large number of thumbnails, e.g. 10000 or more? For performance reasons such thumbnail control must support virtual items, i.e. request application for those thumbnails only which are currently visible to user.
|
|
If you had to resort to writing your own, I've had good results using the Python Imaging Library to create thumbnails in the past. http://www.pythonware.com/products/pil/ |
||
|
|
|
|
In wxPython you can use wxGrid for this as it supports virtual mode and custom cell renderers. This is the minimal interface you have to implement for a wxGrid "data provider":
This is the minimal interface you have to implement for a wxGrid cell renderer:
You can find a working example that utilizes these classes in wxPython docs and demos, it's called Grid_MegaExample. |
||
|
|
|
|
Just for completeness: there is a thumbnailCtrl written in/for wxPython, which might be a good starting point. |
||
|
|
