+ """
+ wx.FileDialog allows the user to select one or more files from the
+ filesystem.
+
+ In Windows, this is the common file selector dialog. On X based
+ platforms a generic alternative is used. The path and filename are
+ distinct elements of a full file pathname. If path is "", the
+ current directory will be used. If filename is "", no default
+ filename will be supplied. The wildcard determines what files are
+ displayed in the file selector, and file extension supplies a type
+ extension for the required filename.
+
+ Both the X and Windows versions implement a wildcard filter. Typing a
+ filename containing wildcards (*, ?) in the filename text item, and
+ clicking on Ok, will result in only those files matching the pattern
+ being displayed. The wildcard may be a specification for multiple
+ types of file with a description for each, such as::
+
+ "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
+
+
+ Window Styles
+ --------------
+ ================== ==========================================
+ wx.OPEN This is an open dialog.
+
+ wx.SAVE This is a save dialog.
+
+ wx.HIDE_READONLY For open dialog only: hide the checkbox
+ allowing to open the file in read-only mode.
+
+ wx.OVERWRITE_PROMPT For save dialog only: prompt for a confirmation
+ if a file will be overwritten.
+
+ wx.MULTIPLE For open dialog only: allows selecting multiple
+ files.
+
+ wx.CHANGE_DIR Change the current working directory to the
+ directory where the file(s) chosen by the user
+ are.
+ ================== ==========================================
+
+ """