Displaying 3 results from an estimated 3 matches for "fd_overwrite_prompt".
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 been the best GUI toolkit I have played with, alot easier
and more function than... java (eek!)
thank you for all of your hard work on wxruby I am looking forward to
further updates to thi...
2007 Aug 28
0
[ wxruby-Bugs-13457 ] Missing constants for FileDialog
...stedt (tbergstedt)
Assigned to: Nobody (None)
Summary: Missing constants for FileDialog
Initial Comment:
According to the documentation, the FileDialog has a number of style constants, prefixed with FD_. However, those are not recognized when trying to use them. I''ve tried the FD_SAVE and FD_OVERWRITE_PROMPT to no avail.
----------------------------------------------------------------------
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=13457&group_id=35
2007 Mar 28
0
[925] branches/wxruby2/wxwidgets_282/doc/textile/filedialog.txtl: Improvements to doc from wxWidgets 2.8
...og; usually this means that the default button''s label of the dialog is "Open". Cannot be combined with FD_SAVE.|
+|@FD_SAVE@|This is a save dialog; usually this means that the default button''s label of the dialog is "Save". Cannot be combined with FD_OPEN.|
+|@FD_OVERWRITE_PROMPT@|For save dialog only: prompt for a confirmation if a file will be overwritten.|
+|@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 dir...