A QFileDialog is a class from the Qt toolkit which provides a dialog allowing users to select files or directories.
0
votes
0answers
12 views
qt 5, QFileDialog, win, getExistingDirectory: return dir parameter when I chose an entry on left side of Dialog
QString dir_path = QFileDialog::getExistingDirectory(
this
, "Open Directory"
, "./"
, QFileDialog::ShowDirsOnly);
When I ...
0
votes
1answer
42 views
QFileDialog - create files without an extension
I'd like to use the QFileDialog to get the name of a new directory, where I will create several configuration files.
It will be nice if a directory name will not contain an extension part. How can I ...
-1
votes
2answers
22 views
QFileDialog returns selected file with wrong seperators
I noticed that QFileDialog instance is returning absolute paths for the member function selectedFile() that have the wrong separator for the given operating system. This is not expected on a cross ...
1
vote
0answers
45 views
Crash/misfunction of QFileDialog in debug builds
I know this post is quite old, but I'm experiencing the same kind of problem.
I'm using Qt 4.6 on Windows 7 64 bits, application is built with Visual Studio 2008.
I have the same kind of use of the ...
1
vote
1answer
115 views
PyQt getOpenFileName default directory
I'm using Qt.Gui.QFileDialog.getOpenFileName method to open a file. If I set the default file directory to "/Users/me/Documents/data/2013/today/" the dialog box opens to ...
0
votes
0answers
211 views
QFileDialog: how to set default filename in “Save as…” dialog
I try to create "Save as..." dialog in Mac OS X. But I don't want to use QFileDialog::getSaveFileName() function, because dialog that created by this function is NOT truly-native in Mac OS X Lion. So ...
1
vote
1answer
72 views
QFileDialog sheets
Is it possible to display QFileDialog::getSaveFileName() as a sheet on Mac OS?
Setting the parent widget does not seem to help, I'm using Qt5.
Edit: @troyane suggest something along the lines:
...
0
votes
1answer
74 views
how to hide sidebar in QFileDialog?
I need to hide/disable the sidebar (QSidebar) in the QFileDialog.
I've solved this problem using magic-woodoo with d-pointer and editing Qt source code (just like this).
Is there any more simple way ...
1
vote
1answer
240 views
PyQt: QtGui.QFileDialog.getSaveFileName won't close after selection
In my PyQt4 application, there is a functionality that allows users to save a avi file.
To this aim, a saveMovie method has been implemented in the main window:
def saveMovie(self):
""" Let the ...
0
votes
1answer
95 views
Qt on Mac: how to get a file dialog that allows to write the desired file path manually?
On Mac OS-X, usually directory dialogues are shown without the possibility to enter the path with the keyboard. This seems to be the default behaviour when I build a Qt application on OS-X.
How can ...
2
votes
1answer
136 views
QFileDialog history
i'm trying to set the history on the QFileDialog, but it doesn't seem to appear anywhere.
QFileDialog dialog(parent, caption, path, filter);
dialog.setHistory(history);
dialog.exec();
But i don't ...
1
vote
0answers
157 views
QDir absolutePath still returning the filename
QString FilePath2 = QFileDialog::getOpenFileName(this, tr("Open Directory"), "C:/", tr("Text files (*.txt)"));
QDir a = FilePath2;
qDebug() << a.absolutePath();
Code works fine. But ...
2
votes
1answer
72 views
How to localize the QFileDialog called from QPrintDialog?
The following works fine for localizing the QPrintDialog:
#include <QtGui/QApplication>
#include <QTranslator>
#include <QPrintDialog>
int main(int argc, char *argv[])
{
...
2
votes
1answer
390 views
PyQt QFileDialog exec_ is slow
I'm using a custom QFileDialog because I want to select multiple directories.
But the exec_ function is very slow, and I can't figure out why. I'm using the newest version of PyQt.
Code Snippet:
...
0
votes
2answers
227 views
Is it possible to have a QFileDialog allowing either 'files only' or 'directories only'?
For a QFileDialog, is it possible to have either files or directories selectable, the choice being given to user on the same UI (like the way a user selects different filetypes amongst filters and the ...
0
votes
1answer
220 views
QFileDialog is crashing my application
QFileDialog in the following simple code is crashing my application. It worked the first 3 times I lunched my application and then without even change the function in which QFileDialog is used it is ...
1
vote
1answer
178 views
Saving file using the QFileDialog::getSaveFileName to restricted location doesn't give error message
i Am working on sample QT project on MAC and to save files i am using the QFileDialog::getSaveFileName API with native dialog and if i save the file to directory which is read only it still gets ...
1
vote
0answers
192 views
QFileDialog::getOpenFileName is very slow on mac
I am working on sample qt project which involves reading the existing directories , requirement is that i have to use getOpenFileName function and while working on it i have observed that this ...
1
vote
2answers
175 views
QFileDialog disable buttons
I'd like to create a subclass of QFileDialog which will be used to open only directories with some particular content. I can set my own proxy model to handle behavior of files list but how can I ...
5
votes
1answer
326 views
No files visible in the QFileDialog window
I am writing a simple code using pyqt
In the code, I invoke a QFileDialog, however when I invoke it using the static functions all works fine, but with the normal method i.e. using dialog.exec_(), I ...
1
vote
0answers
100 views
QFileDialog encoding error (Windows 7)
When i try to use standart filechooser:
QString fileName = QFileDialog::getOpenFileName(a.allWidgets().first(),
"Open Image", "C:\\", "Image Files (*.png *.jpg *.bmp)");
the error is appear. I ...
0
votes
2answers
238 views
QFileDialog opening two dialogs
I want to store a selected file's location as a string in Python. I am trying to use QFileDialog to accomplish this, I have:
self.filedialog = QtGui.QFileDialog(self)
self.filedialog.show()
filepath ...
1
vote
2answers
362 views
QFileDialog::getExistingDirectory does not close after choosing a folder
In Qt,
QFileDialog *dlg = new QFileDialog();
QDir dir = dlg->getExistingDirectory(this, tr("Choose folder"), qgetenv("HOME"));
opens a folder choose dialog. Once I select a folder (press ...
0
votes
2answers
91 views
Data load infile_ python and Qfiledialog
hello i want to import data from an excel file or .txt to the database with the "load data Infile" but the path to my file contains "\" witch is not accepted by Mysql
to be clear this is my PYTHON ...
0
votes
0answers
138 views
QFileDialog under OSX dumps many errors to console
Trying to use QFileDialog under OSX 10.6.8, Qt 4.7:
QFileDialog *dialog = new QFileDialog(0,tr("Load Band Recordings"),qbh,tr("Wave Files (*.wav)"));
...
0
votes
1answer
450 views
Custom QFIleSystemModel with QFileDialog
I am currently implementing a project system that uses an archive instead of a directory to hold subfiles. I keep a data structure that holds the project's virtual file system, and write it out as ...
3
votes
2answers
557 views
Is there a way to automatically add extensions to a file using QFileDialog on Linux
I want the user to be able to enter a name for a file that will be saved as an xml file. Currently on Windows and Mac if you enter "test" as the file name it will automatically add ".xml" which is ...
3
votes
2answers
1k views
Modifying QFileDialog::getOpenFileName to have an additional drop down
I am a student programmer using Qt to build a reader Table for my company. This reader is both an editor and converter. It reads in a .i file allows table editing of a text document and then puts out ...
0
votes
1answer
61 views
Are there any signals emitted when creating or opening a directory with QFileDialog::getExistingDirectory?
I use something like:
CreateChooseDir()
{
QString OpenedCreatedDirectory = QFileDialog::getExistingDirectory(this, tr("Choose Directory"),
...
1
vote
2answers
976 views
How to specify the QFileDialog::getExistingDirectory() method?
With the method/command:
OpenCreateDirectory()
{
QString Directory = QFileDialog::getExistingDirectory(this,
tr("Choose Or Create Directory"),
...
2
votes
1answer
320 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 ...
0
votes
1answer
156 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
255 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
1answer
383 views
QFileDialog::getOpenFileName() does not work in slot function? [closed]
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
2answers
349 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?
2
votes
1answer
267 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 ...
2
votes
2answers
603 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. ...
0
votes
1answer
490 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 ...
5
votes
1answer
2k 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 ...
7
votes
2answers
915 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 ...
1
vote
1answer
1k 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
2answers
894 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 ...
1
vote
1answer
2k 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
502 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.
0
votes
2answers
672 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 ...
1
vote
0answers
415 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
307 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:
Won't have a native dialog.
I'll have to implement my own ...
4
votes
3answers
552 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 ...
2
votes
1answer
343 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
2answers
3k 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 ...
