Displaying 2 results from an estimated 2 matches for "fd_preview".
Did you mean:
id_preview
2007 May 19
1
Wx::FileDialog Styles are not working
The Constants for the Styles for FileDialog are not initialized to a value
and the class will not work without those, the Dialog will come up when you
call the show_modal method but the filenames are not showing up
I specifically need the values for
FD_OPEN
FD_SAVE
FD_OVERWRITE_PROMPT
FD_FILE_MUST_EXIST
but if I can''t get those then I''ll find a workaround
so far this has
2007 Mar 28
0
[925] branches/wxruby2/wxwidgets_282/doc/textile/filedialog.txtl: Improvements to doc from wxWidgets 2.8
...erwritten.|
+|@FD_FILE_MUST_EXIST@|For open dialog only: the user may only select files that actually exist.|
+|@FD_MULTIPLE@|For open dialog only: allows selecting multiple files.|
+|@FD_CHANGE_DIR@|Change the current working directory to the directory where the file(s) chosen by the user are.|
+|@FD_PREVIEW@|Show the preview of the selected files (currently only supported by GTK using GTK+ 2.4 or later).|
+
+
+*NB:* Previous versions of Widgets used @FD_CHANGE_DIR@ by default
+under MS Windows which allowed the program to simply remember the last
+directory where user selected the files to open/save....