Displaying 1 result from an estimated 1 matches for "wxfd_open".
Did you mean:
  fd_open
  
2007 May 19
0
[1020] trunk/wxruby2/swig/classes/FileDialog.i: Added the Wx::FD_XXX constants for FileDialog variants
...1020)
</span><span class="lines">@@ -5,6 +5,17 @@
</span><span class="cx"> 
</span><span class="cx"> %module(directors="1") wxFileDialog
</span><span class="cx"> 
</span><ins>+enum
+{
+    wxFD_OPEN              = 0x0001,
+    wxFD_SAVE              = 0x0002,
+    wxFD_OVERWRITE_PROMPT  = 0x0004,
+    wxFD_FILE_MUST_EXIST   = 0x0010,
+    wxFD_MULTIPLE          = 0x0020,
+    wxFD_CHANGE_DIR        = 0x0080,
+    wxFD_PREVIEW           = 0x0100
+};
+
</ins><span class="cx"&g...