QFileDialog is a class from the Qt toolkit which provides a dialog allowing users to select files or directories.
I want to make a QT4 (using QT designer) dialog, that contains a part where a file has to be …
python qt4 pyqt4 filedialog qfiledialogI'm trying to use a QFileDialog to prompt a user to provide a filename and location to save a text …
python pyqt pyqt4 exec qfiledialogIs there any way to directly browse to a folder using QFileDialog? Meaning, instead of double clicking on each folder …
python qt pyqt qfiledialogAccording to getOpenFileName instructions: QString fileName = QFileDialog.getOpenFileName(this, tr("Open File"), "/home", tr("Images (*.png *.xpm *.jpg)")); How can …
python pyqt qfiledialogI would like to use options in the static method QFileDialog.getOpenFileName. For example i would like to set two …
python pyqt pyside options qfiledialogI try to create "Save as..." dialog in Mac OS X. But I don't want to use QFileDialog::getSaveFileName() function, …
macos qt4 qfiledialogWhen using a QFileDialog to save a file and to specify the extension (like *.pdf) and the user types in …
c++ qt qt4 save qfiledialog(Windows 7 64 Bit, PyCharm 3.4.1 Pro, Python 3.4.0, PySide 1.2.2) I want to make a file dialog with filters and preselect one filter. If …
python pyqt pyside qfiledialogI need to display QLineEdit with "Browse" button at my form. When user clicks button, QFileDialog should be opened, and …
c++ qt qt-designer qtgui qfiledialogThis is my first time attempting to create a GUI. I have created a simple program with a button that …
python pyqt pyqt5 qt-designer qfiledialog