The qfiledialog tag has no wiki summary.
5
votes
3answers
2k views
qfiledialog - Filtering Folders?
1)I want to get the name of the folder for a folder monitoring Application..
Is there a way that i can filter out specific folders from being displayed using QFileDialog (For example i don't want the ...
4
votes
1answer
539 views
Multiple files AND folder selection in a QFileDialog?
I am using pyQt4 and want to have a Browse button in my GUI which opens up a Dialog box allowing user to select multiple files AND folders.
I have researched quite a bit but din't find any way to be ...
4
votes
2answers
263 views
QFileDialog::DontUseNativeDialog is not working
I have an issue with a simple program.
I'm opening a QFileDialog this way:
QFileDialog fileDialog(this);
fileDialog.setAcceptMode(QFileDialog::AcceptOpen);
if (!fileDialog.exec())
return;
However ...
4
votes
2answers
650 views
QFileDialog filter from mime-types
I want the filter in a QFileDialog to match all audio file types supported by Phonon on the platform in question.
1 - However I am not able to find a way in Qt to use mime types in a filter. How can ...
3
votes
3answers
342 views
What determines sorting of files in a QFileDialog?
Users open files in our app through a QFileDialog. The order of the filenames is bizarre. What is determining the sorting order, and how can we make it sort by filenames, or otherwise impose our own ...
3
votes
3answers
253 views
How do I find out which suffix user has chosen when using a QFileDialog?
Well I'm using the following code to get the filename for a file that needs to be stored ..
QString fileName = QFileDialog::getSaveFileName(this, tr("Save File"),"/home/user/MyDocs/",tr("JPG files ...
2
votes
1answer
235 views
QFileDialog for directories that have certain content
I would like to build a dialog similar to QFileDialog::getExistingDirectory() for which the OK-button only is enabled when the selected directory contains certain files.
I know I cannot achieve this ...
1
vote
0answers
46 views
How can I get a QFileDialog to prompt for overwrite in Qt 4?
I have a QDialog that opens a QFileDialog like so:
QFileDialog fd(this);
fd.setFileMode(QFileDialog::AnyFile);
if (fd.exec()) {
// save data to a file
}
Unfortunately, the default behavior ...
1
vote
1answer
79 views
QFileDialog::getOpenFileName() does not work in slot function?
I created this slot:
public slots:
void openNSelect();
then in the function :
QFileDialog::getOpenFileName(this,tr("select file"),"/home/",tr("text file(*.txt)"));
it doesn't show me the ...
1
vote
0answers
87 views
QFileDialog doesn’t list tty* files in /dev/ on Linux
I’m working on a Linux desktop application that needs to open a USB serial port, typically /dev/ttyUSB0 or /dev/ttyUSB1. I’m using QFileDialog to let the user select the file:
QFileDialog ...
1
vote
1answer
200 views
Specify default extension in QFileDialog::getSaveFileName
Is there an equivalent of the lpstrDefExt member of OPENFILENAME struct used in the Win32 function GetSaveFileName?
Here's description from MSDN:
LPCTSTR lpstrDefExt
The default extension. ...
1
vote
1answer
188 views
PyQt4 filename dialog
I am a bit of a novice so be kind ;-)
I had a GUI that I made using PyQt4 and python 2.6 with a working file dialog, (ie you clicked a button and a window popped up and allowed you to pick a file to ...
1
vote
1answer
698 views
Filtering in QFileDialog
I would like to filter the files that are shown in a QFileDialog more specifically than just by file extensions. The examples I found in the Qt documentation only show filters like "Images (*.png ...
1
vote
1answer
226 views
Qt and files in shared folders
Can I use Qt to pick/open files on shared folder?
I've tried to use QFileDialog, but it seems that there is no "network" category, as in standrd windows explorer.
1
vote
0answers
305 views
QFileDialog problem (native: fast but no input field; non-native: has input field but slow)
This seems a known problem but I have not found a good workaround. I like the style of the
non-native QFileDialog, especially the feature that allows the user to input the path directly
which is very ...
1
vote
2answers
514 views
PyQt4 File select widget
I want to make a QT4 (using QT designer) dialog, that contains a part where a file has to be selected.
Now, I know QFileDialog exists, and I can program something that does what I want.
But can I ...
1
vote
2answers
411 views
How to set the directory separator character to match the operating system?
I am writing a qt application, with the goal of it being portable to the 3 major operating systems.
I am using QFileDialog to select a folder, and then adding it to a QListWidget. However the folder ...
1
vote
2answers
1k views
Qt QFileDialog - native dialogs only with static functions?
I'm trying to simply save a file. However, I need a filename entered without a suffix to automatically get a default suffix (which setDefaultSuffix() does).
I'd rather not completely lose the native ...
1
vote
2answers
1k views
QFileDialog: adding extension automatically when saving file?
When using a QFileDialog to save a file and to specify the extension (like *.pdf) and the user types in a name without this extension, also the saved file hasn't this extension.
Example-Code:
...
0
votes
1answer
21 views
QPushButton remains pressed if QFileDialog is invoked in its slot
I have a simple QPushButton on the MainWindow. I've added a slot for it:
void MainWindow::on_mybutton_pressed() {
QString file_name = QFileDialog::getSaveFileName(
this,
...
0
votes
0answers
50 views
QFileDialog::getOpenFileName crashes in function dropEvent in the debug mode in win7
QFileDialog::getOpenFileName crashes in function dropEvent in the Debug mode in Windows 7, but it works well in the Release mode. I don't know why.
I get the following error:
...
0
votes
0answers
29 views
QFileDialog in QTCreator fails to locate file system *sometimes*
I am having an issue in a QT project where the QFileDialog sometimes fails. The trickiest part is that it isn't consistent. Sometimes it works fine and then without changing the code, it will fail. ...
0
votes
2answers
39 views
PyQt: How can I get a large list of filenames from the user?
The FileDialog in pyqt is an excellent way to get one path for a file from the user, but is there a good way to get a large number of file selections from the user?
0
votes
1answer
293 views
C++/QT - QFileDialog::getOpenFileName filter *.xml disables files with japanese characters in their name
I'm trying to use a QFileDialog::getOpenFileName with an xml filter defined tr("XML Files (*.xml)") to ask the user to select an XML file.
However, in case there's a file in the directory that has ...
0
votes
2answers
242 views
How to know the file's type to save, using QFileDialog
About pyQt4
I prefer to use the static method for the getSaveFilename in the QFileDialog so that the user sees the Windows/Mac native dialog.
My problem is that if the user doesn't type the file ...
0
votes
2answers
360 views
QFileDialog used as widget
My goal is: user can choose file (only *mp3) and after clicking twice on it it should play (so the QString to file should be send to play() funtion)
Firstly I started to work with QTreeView, but it ...
0
votes
2answers
176 views
Call QFileDialog when trying to edit cell in QTableView
Is there a way of doing this without using a QItemDelegate? I've been having a lot of trouble with it. For example, if I use a Delegate:
1) Won't have a native dialog.
2) I'll have to implement my ...
0
votes
1answer
371 views
Opening a file from a Qt String
I am making a Qt application and I have a button to open a file, which is connected to a custom slot. This is the slot code so far:
void MainWindow::file_dialog() {
const QFileDialog *fd;
...
0
votes
1answer
161 views
QT QFileDialog how to hide hidden/backup folders (“.folder”)
Basically when browsing folders inside a QFileDialog I find very annoying to have everything bloated with hidden or backup folders (don't know how to call them really); specially on home.
Is there a ...
0
votes
2answers
695 views
how to set filter for directories qt qfiledialog
i would like to know is there any way to select only some directories and some files at a time using qfiledialog class.here i set filesfilter..but i also need to set folder filter i mean i want only ...