Anyone have any luck doing some fancy filtering with this?
fancy_filter = #exclude files with a keyword in the name. i.e. ‘hero’, ‘@’, etc.
QtGui.QFileDialog.getOpenFileName(filter = fancy_filter)
It seems the filter does only wildcard matching, not full regex. Is that the case? Should I override a QSortFilterProxyModel, and use that as the file dialog’s proxy model?