widget to show files search result

Does wxPython have a widget that resembles the plain file explorer window for file search results? That is, a window displaying in the same list files located all over the disk, where the user can change visualization (large icons, small icons, details, etc.), add or remove columns (file size, date, extension, etc.) and sort by any column (if present). The window should also be a source for drag and drop operations.

If such a widget does not exist, is it possible to adapt an existing widget? And how easily?

Thanks in advance for any clue.

Take a look at the wx.ListCtrl class. It is basically the same widget that Windows Explorer uses, but you’'ll need to implement all of the support for content and any behavior beyond the basics that you need.