Re: [Interest] QFileDialog and wasm sandbox security

2021-05-15 Thread Nicholas Yue
Answering my own email. I found this and it worked. https://wiki.qt.io/Qt_for_WebAssembly#Files_and_local_file_system_access Cheers On Sat, 15 May 2021 at 17:32, Nicholas Yue wrote: > Hi, > > Given the sandbox security of WASM, application only have access to the > virtual filesystem access

[Interest] QFileDialog and wasm sandbox security

2021-05-15 Thread Nicholas Yue
Hi, Given the sandbox security of WASM, application only have access to the virtual filesystem accessing file that one might have package with the application via emcc How have others building Qt-wasm been handling getting data into and out of such applications? Is there some other Qt widget/

Re: [Interest] QFileDialog not localizing in Qt 5.4.2

2018-02-05 Thread Thiago Macieira
On segunda-feira, 5 de fevereiro de 2018 08:55:49 PST Bob Hood wrote: > On 2/4/2018 9:14 PM, Thiago Macieira wrote: > > On domingo, 4 de fevereiro de 2018 11:52:20 PST Boudewijn Rempt wrote: > >> On Sunday, 4 February 2018 18:44:52 CET Thiago Macieira wrote: > >>> On Sunday, 4 February 2018 09:32:2

Re: [Interest] QFileDialog not localizing in Qt 5.4.2

2018-02-05 Thread Bob Hood
On 2/4/2018 9:14 PM, Thiago Macieira wrote: On domingo, 4 de fevereiro de 2018 11:52:20 PST Boudewijn Rempt wrote: On Sunday, 4 February 2018 18:44:52 CET Thiago Macieira wrote: On Sunday, 4 February 2018 09:32:24 PST Bob Hood wrote: Has anybody else had problems with this?Might I be doing some

Re: [Interest] QFileDialog not localizing in Qt 5.4.2

2018-02-04 Thread Thiago Macieira
On domingo, 4 de fevereiro de 2018 11:52:20 PST Boudewijn Rempt wrote: > On Sunday, 4 February 2018 18:44:52 CET Thiago Macieira wrote: > > On Sunday, 4 February 2018 09:32:24 PST Bob Hood wrote: > > > Has anybody else had problems with this?Might I be doing something > > > incorrectly? > > > > Wh

Re: [Interest] QFileDialog not localizing in Qt 5.4.2

2018-02-04 Thread Bob Hood
(Sorry for the late reply...on a plane all afternoon) On 2/4/2018 10:44 AM, Thiago Macieira wrote: On Sunday, 4 February 2018 09:32:24 PST Bob Hood wrote: Has anybody else had problems with this?Might I be doing something incorrectly? What OS is that? As Boudewjin points out, it is OS X.  T

Re: [Interest] QFileDialog not localizing in Qt 5.4.2

2018-02-04 Thread Boudewijn Rempt
On Sunday, 4 February 2018 18:44:52 CET Thiago Macieira wrote: > On Sunday, 4 February 2018 09:32:24 PST Bob Hood wrote: > > Has anybody else had problems with this?Might I be doing something > > incorrectly? > > What OS is that? That's the native OSX or macOS file dialog. -- Boudewijn Rempt |

Re: [Interest] QFileDialog not localizing in Qt 5.4.2

2018-02-04 Thread Thiago Macieira
On Sunday, 4 February 2018 09:32:24 PST Bob Hood wrote: > Has anybody else had problems with this?Might I be doing something > incorrectly? What OS is that? -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center _

Re: [Interest] QFileDialog and Gtk-Message: GtkDialog mapped without a transient parent message

2017-12-25 Thread Thiago Macieira
On segunda-feira, 25 de dezembro de 2017 01:07:23 -02 Jerome wrote: > problem between qt and GTK... > > here: > https://stackoverflow.com/questions/47847739/qfiledialog-gtkdialog-mapped-wi > thout-a-transient-parent > > an answer on how to fix that please ? File a bug report with a sample progra

[Interest] QFileDialog and Gtk-Message: GtkDialog mapped without a transient parent message

2017-12-24 Thread Jerome
problem between qt and GTK... here: https://stackoverflow.com/questions/47847739/qfiledialog-gtkdialog-mapped-without-a-transient-parent an answer on how to fix that please ? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.o

Re: [Interest] QFileDialog Query

2017-10-23 Thread Dan Allen
Thanks Giuseppe. I've created a bug report, number QTBUG-63972. I've stated in the report that this appears to only be an issue with Linux (or at least Ubuntu). I tested using Windows and OSX and the dialog always requests confirmation. Thanks, Dan. On 23/10/17 10:48, Giuseppe D'Angelo wro

Re: [Interest] QFileDialog Query

2017-10-23 Thread Giuseppe D'Angelo
Il 22/10/2017 20:46, Dan Allen ha scritto: Hi Guiseppe, If that line was left out the dialog would return just "text" (i.e. without the suffix). Right, so we're back in Qt territory, with this option which might be misleading. Please go ahead and file a bug report, so that the discussion ca

Re: [Interest] QFileDialog Query

2017-10-22 Thread Dan Allen
Hi Guiseppe, If that line was left out the dialog would return just "text" (i.e. without the suffix). Thanks, Dan. On 22/10/17 19:25, Giuseppe D'Angelo wrote: Hi, Il 21/10/2017 20:39, Dan Allen ha scritto: fileDialog.setDefaultSuffix("txt"); Just wondering, what happens without thi

Re: [Interest] QFileDialog Query

2017-10-22 Thread Giuseppe D'Angelo
Hi, Il 21/10/2017 20:39, Dan Allen ha scritto:     fileDialog.setDefaultSuffix("txt"); Just wondering, what happens without this line? Cheers, -- Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Senior Software Engineer KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908 KDAB - Qt,

Re: [Interest] QFileDialog Query

2017-10-21 Thread Dan Allen
Hi Guiseppe, Here is a quick test case: #include #include #include int main(int argc, char *argv[]) {     QApplication a(argc, argv);     QString savePath = QDir::homePath();     savePath.append("/text.txt");     QFile saveFile(savePath);     if(!saveFile.exists())     {     saveFile.ope

Re: [Interest] QFileDialog Query

2017-10-21 Thread Giuseppe D'Angelo
Il 21/10/2017 18:45, Dan Allen ha scritto: I don't know much about GTK directly.  I had a quick look at the GTK file chooser documentation and I couldn't see anything that suggests GTK supports a default suffix.  Therefore, would that suggest this is probably a Qt issue (i.e. GTK considered it

Re: [Interest] QFileDialog Query

2017-10-21 Thread Dan Allen
Hi Guiseppe, I don't know much about GTK directly.  I had a quick look at the GTK file chooser documentation and I couldn't see anything that suggests GTK supports a default suffix.  Therefore, would that suggest this is probably a Qt issue (i.e. GTK considered it "text" against "text.txt" an

Re: [Interest] QFileDialog Query

2017-10-21 Thread Giuseppe D'Angelo
Il 21/10/2017 11:33, Dan Allen ha scritto: Hi Guiseppe, I am using the native dialog.  I've tested again after setting QFileDialog::DontUseNativeDialog and this does not appear to have the problem. Then please submit a bug against GTK/Ubuntu :) Cheers, -- Giuseppe D'Angelo | giuseppe.dang..

Re: [Interest] QFileDialog Query

2017-10-21 Thread Dan Allen
Hi Guiseppe, I am using the native dialog.  I've tested again after setting QFileDialog::DontUseNativeDialog and this does not appear to have the problem. Thanks, Dan. On 21/10/17 09:27, Giuseppe D'Angelo wrote: Hi, Il 21/10/2017 10:07, Dan Allen ha scritto: Hi, I'm currently working on

Re: [Interest] QFileDialog Query

2017-10-21 Thread Giuseppe D'Angelo
Hi, Il 21/10/2017 10:07, Dan Allen ha scritto: Hi, I'm currently working on a save dialog for my application (currently testing in Ubuntu).  The dialog is in accept mode QFileDialog::AcceptSave and a default suffix of "txt" is set. I've noticed something that appears to be strange when the fil

[Interest] QFileDialog Query

2017-10-21 Thread Dan Allen
Hi, I'm currently working on a save dialog for my application (currently testing in Ubuntu).  The dialog is in accept mode QFileDialog::AcceptSave and a default suffix of "txt" is set. I've noticed something that appears to be strange when the file provided exists as follows (assuming a file

Re: [Interest] QFileDialog Qt5

2015-12-17 Thread Duane
On 17/12/2015 3:15 AM, Jan Dasselaar wrote: On 16-12-2015 15:02, Duane wrote: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Q

Re: [Interest] QFileDialog Qt5

2015-12-17 Thread Jan Dasselaar
On 16-12-2015 15:02, Duane wrote: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any sugge

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane
On 16/12/2015 10:33 AM, Jan Dasselaar wrote: On 16-12-2015 16:16, Duane wrote: On 16/12/2015 9:24 AM, André Somers wrote: Op 16/12/2015 om 15:02 schreef Duane: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog.

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Jan Dasselaar
On 16-12-2015 16:16, Duane wrote: On 16/12/2015 9:24 AM, André Somers wrote: Op 16/12/2015 om 15:02 schreef Duane: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box.

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Giuseppe D'Angelo
Il 16/12/2015 14:10, Duane ha scritto: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? Where are you doing that findChild? A non-native QFileDialog is lazily populated. T

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane
On 16/12/2015 9:24 AM, André Somers wrote: Op 16/12/2015 om 15:02 schreef Duane: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() w

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread André Somers
Op 16/12/2015 om 15:02 schreef Duane: On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane
On 16/12/2015 8:53 AM, Thiago Macieira wrote: On Wednesday 16 December 2015 08:10:44 Duane wrote: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? XY problem. Why do you n

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane
On 16/12/2015 8:14 AM, André Somers wrote: Op 16/12/2015 om 14:10 schreef Duane: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? Are you sure you are not getting a nativ

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Thiago Macieira
On Wednesday 16 December 2015 08:10:44 Duane wrote: > I'm subclassing a QFileDialog. I need to get a pointer to the filename > box. I was doing this with findChild() with Qt4 but with > Qt5 this returns null. Any suggestions? XY problem. Why do you need to get the pointer to the line edit? Wha

Re: [Interest] QFileDialog Qt5

2015-12-16 Thread André Somers
Op 16/12/2015 om 14:10 schreef Duane: I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? Are you sure you are not getting a native file dialog? If so, then obviously there

[Interest] QFileDialog Qt5

2015-12-16 Thread Duane
I'm subclassing a QFileDialog. I need to get a pointer to the filename box. I was doing this with findChild() with Qt4 but with Qt5 this returns null. Any suggestions? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/m

[Interest] QFileDialog on IOS: selecting several files

2015-08-31 Thread maitai
Hello, I can use QFileDialog::getOpenFileNames() on iOS but is it really possible to select several files? I mean using fingers only? Thanks Philippe ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interes

Re: [Interest] QFileDialog

2015-01-14 Thread Thiago Macieira
On Wednesday 14 January 2015 12:35:01 Graham Labdon wrote: > Hi > In my application I want that all file dialogs set the DontUseNativeDialog > flag. Is this possible by using style sheets or do I have to subclass file > dialog and make sure that developers use this subclass? Is there a better > way

[Interest] QFileDialog

2015-01-14 Thread Graham Labdon
Hi In my application I want that all file dialogs set the DontUseNativeDialog flag. Is this possible by using style sheets or do I have to subclass file dialog and make sure that developers use this subclass? Is there a better way Thanks for your time _

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-18 Thread Duane
On 6/18/2013 8:41 AM, André Somers wrote: > Op 17-6-2013 19:07, Constantin Makshin schreef: >> >> 1) On Windows directories can have custom icons. Not 100% sure about >> other platforms. >> >> 2) Directories have at least "last modification" timestamp which is >> needed for the detailed view mode.

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-18 Thread André Somers
Op 17-6-2013 19:07, Constantin Makshin schreef: 1) On Windows directories can have custom icons. Not 100% sure about other platforms. 2) Directories have at least "last modification" timestamp which is needed for the detailed view mode. What approach is better -- get all information at once

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-18 Thread Duane
On 6/17/2013 1:07 PM, Constantin Makshin wrote: > 1) On Windows directories can have custom icons. Not 100% sure about > other platforms. > > 2) Directories have at least "last modification" timestamp which is > needed for the detailed view mode. What approach is better -- get all > information at

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-17 Thread Constantin Makshin
1) On Windows directories can have custom icons. Not 100% sure about other platforms. 2) Directories have at least "last modification" timestamp which is needed for the detailed view mode. What approach is better -- get all information at once or quickly get names, deferring timestamp retrieval un

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-17 Thread Duane
On 6/17/2013 10:09 AM, william.croc...@analog.com wrote: > On 06/17/2013 09:57 AM, Duane wrote: >> On 6/14/2013 5:06 PM, Till Oliver Knoll wrote: >>> Am 14.06.2013 um 23:02 schrieb Till Oliver >>> Knoll: >>> That said, the Qt "cross-platform file dialog" is (was?) terribly slow wit

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-17 Thread william.croc...@analog.com
On 06/17/2013 09:57 AM, Duane wrote: > On 6/14/2013 5:06 PM, Till Oliver Knoll wrote: >> Am 14.06.2013 um 23:02 schrieb Till Oliver >> Knoll: >> >>> >>> That said, the Qt "cross-platform file dialog" is (was?) terribly slow with >>> network mapped drives >> That's the price we pay for viewing th

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-17 Thread Duane
On 6/15/2013 3:48 AM, Etienne Sandré-Chardonnal wrote: > Hello, > > Are you sure you are not compiling in debug mode? > I use QFileDialog native (static) in my application, it's very fast to > load, except in debug mode (where it takes a few seconds loading all > dlls). Qt 4.8.1 under windows, ming

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-17 Thread Duane
On 6/14/2013 5:06 PM, Till Oliver Knoll wrote: > Am 14.06.2013 um 23:02 schrieb Till Oliver Knoll: > >> >> That said, the Qt "cross-platform file dialog" is (was?) terribly slow with >> network mapped drives > > On Windows, I should add. Yes, on Windows it's very slow. I would love to use the n

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-15 Thread Etienne Sandré-Chardonnal
Hello, Are you sure you are not compiling in debug mode? I use QFileDialog native (static) in my application, it's very fast to load, except in debug mode (where it takes a few seconds loading all dlls). Qt 4.8.1 under windows, mingw compiler Etienne 2013/6/14 Mojmír Svoboda > Hello again, >

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-14 Thread Till Oliver Knoll
Am 14.06.2013 um 23:02 schrieb Till Oliver Knoll : > > That said, the Qt "cross-platform file dialog" is (was?) terribly slow with > network mapped drives On Windows, I should add. Cheers, Oliver ___ Interest mailing list Interest@qt-project.org ht

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-14 Thread Till Oliver Knoll
Am 14.06.2013 um 22:19 schrieb Duane : > On 6/14/2013 3:01 PM, Andre Somers wrote: >> Op 14-6-2013 19:27, Constantin Makshin schreef: >>> >>> Try non-static QFileDialog members -- it's more likely to ignore >>> various system [shell] extensions. >> And way less likely to look and feel anything cl

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-14 Thread Duane
On 6/14/2013 3:01 PM, Andre Somers wrote: > Op 14-6-2013 19:27, Constantin Makshin schreef: >> >> Try non-static QFileDialog members -- it's more likely to ignore >> various system [shell] extensions. >> > And way less likely to look and feel anything close to what the user > expects in a file dial

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-14 Thread Constantin Makshin
There's not much choice for Mojmir -- either non-native, but [likely to be] fast, dialog or native, but with all that third-party stuff which makes things slower than they are supposed to be. :-) On Jun 14, 2013 11:01 PM, "Andre Somers" wrote: > Op 14-6-2013 19:27, Constantin Makshin schreef: >

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-14 Thread Andre Somers
Op 14-6-2013 19:27, Constantin Makshin schreef: Try non-static QFileDialog members -- it's more likely to ignore various system [shell] extensions. And way less likely to look and feel anything close to what the user expects in a file dialog on his platform... At least, on windows, the Qt f

Re: [Interest] QFileDialog is lovelier the second time around...

2013-06-14 Thread Constantin Makshin
Try non-static QFileDialog members -- it's more likely to ignore various system [shell] extensions. On Jun 14, 2013 3:11 PM, "Mojmír Svoboda" wrote: > Hello again, > > I tried to use QFileDialog for classic file selection, but > it feels very sluggish, expecially the first time. > > I think it's

[Interest] QFileDialog is lovelier the second time around...

2013-06-14 Thread Mojmír Svoboda
Hello again, I tried to use QFileDialog for classic file selection, but it feels very sluggish, expecially the first time. I think it's due to heavy dll dependencies that are to be loaded, in my case it makes ~85 dlls. I wonder why of course and I'd like to know whether there is some more lightw

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-29 Thread Friedemann Kleint
Hi, since I also ran into this on my machine, I created https://bugreports.qt-project.org/browse/QTBUG-29366 with an example and a bit of analysis. The underlying reason is that the creation of a QInotifyFileSystemWatcherEngine fails due to "Too many open files". Regards, Friedemann -- Frie

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-23 Thread Samuel Rødal
On 01/21/2013 07:33 PM, Wilhelm wrote: > Hi all, > > if I compile this stripped down minimal example > - > #include > #include > > int main(int argc, char *argv[]) > { > QApplication a(argc, argv); > QFileDialog fd(0, "Load from file", > QDir::currentP

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-22 Thread Wilhelm
. > > Any Qt5 hints? > > > > > > > > > > ---- > > *From:* Wilhelm <mailto:wilhelm.me...@fh-kl.de>> > > *To:* Qt Interest <mailto:interest@qt-pr

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-21 Thread Wilhelm
*Sent:* Monday, January 21, 2013 1:33 PM > *Subject:* [Interest] QFileDialog: what's wrong with this minimal example > > Hi all, > > if I compile this stripped down minimal example > - > #include > #include > > int main(int argc, char *argv[]) >

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-21 Thread Scott Aron Bloom
[mailto:interest-bounces+scott.bloom=onshorecs@qt-project.org] On Behalf Of Wilhelm Sent: Monday, January 21, 2013 10:33 AM To: Qt Interest Subject: [Interest] QFileDialog: what's wrong with this minimal example Hi all, if I compile this stripped down minimal example - #include #include

Re: [Interest] QFileDialog: what's wrong with this minimal example

2013-01-21 Thread Jason H
Looks ok. But try calling a.exec() and using a singleshot zero timeout timer (beforr a.exec()) to bring up the file dialog. Let us know if that works. From: Wilhelm To: Qt Interest Sent: Monday, January 21, 2013 1:33 PM Subject: [Interest] QFileDialog

[Interest] QFileDialog: what's wrong with this minimal example

2013-01-21 Thread Wilhelm
Hi all, if I compile this stripped down minimal example - #include #include int main(int argc, char *argv[]) { QApplication a(argc, argv); QFileDialog fd(0, "Load from file", QDir::currentPath(), "All Files (*)"); //return

Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7

2012-06-28 Thread Eric Clark
to:interest-bounces+tony=rightsoft.com...@qt-project.org]<mailto:[mailto:interest-bounces+tony=rightsoft.com...@qt-project.org]> On Behalf Of Eric Clark Sent: Thursday, 28 June 2012 5:14 AM To: Qt Interest Subject: Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on

Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7

2012-06-27 Thread Tony Rietwyk
o: Qt Interest Subject: Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7 Oliver, Thanks for your suggestion. I didn’t think to look at that because I have been used to seeing the Windows Vista and XP file dialogs for so long and those ones do expand, but the

Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7

2012-06-27 Thread Eric Clark
-bounces+eclark=ara@qt-project.org] On Behalf Of Till Oliver Knoll Sent: Wednesday, June 27, 2012 1:00 PM To: Qt Interest Subject: Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7 Am 27.06.2012 um 19:03 schrieb Eric Clark mailto:ecl...@ara.com>>: Hel

Re: [Interest] QFileDialog::getExistingDirectory does not expand tree on Windows 7

2012-06-27 Thread Till Oliver Knoll
Am 27.06.2012 um 19:03 schrieb Eric Clark : > Hello All, > > ...QFileDialog::getExistingDirectory(…) and pass in a default directory to > open to, the native dialog does open to the correct directory. However, the > tree in the left-hand pane of the Windows dialog does not expand to that >