Issue: File Chooser "Select" Button
Phil Weinstein, 9-20-2013

A file chooser feature not supported by the static (native Windows chooser) QFileDialog API is the ability to provide text other than "Save" or "Open" for the accept button. This is relevant specifically when the file chooser is used to populate a file path line-entry widget in another dialog. See the two screenshots below.

Qt File Chooser: Can show "Select":

dlg.setLabelText (RwFile::Accept, tr ("Select"));
dlg.setOptions (RwFile::DontConfirmOverwrite);


Native Windows File Chooser: Can only show "Save" (or "Open"):

For what it's worth, this Qt Centre thread also points out that the instance-based QFileDialog methods need to be used in order to set the accept button label.

---