How to impliment standard save functionality
Solved
General and Desktop
-
I have QDialog box with Ok button . WHen I press ok I want following dialog box to save the file . how to get the same
-
@Qt-Enthusiast QString QFileDialog::getSaveFileName creates a dialog that on completion returns a QString(path+Name) of the potential new file.
You'll have to do the QFile::open/QFile::write stuff yourself of course.
-
QFileDialog::getSaveFileName( seems to be a solution to me