Add flag for displaying hidden files in the file dialog

Add wxFD_SHOW_HIDDEN and implement support for it for all the major
ports.

Closes https://github.com/wxWidgets/wxWidgets/pull/1413

Closes #9342.
This commit is contained in:
oneeyeman1
2019-07-14 14:26:29 -05:00
committed by Vadim Zeitlin
parent 7e90def99a
commit 8748a476c3
7 changed files with 36 additions and 4 deletions

View File

@@ -48,7 +48,8 @@ enum
wxFD_FILE_MUST_EXIST = 0x0010,
wxFD_CHANGE_DIR = 0x0080,
wxFD_PREVIEW = 0x0100,
wxFD_MULTIPLE = 0x0200
wxFD_MULTIPLE = 0x0200,
wxFD_SHOW_HIDDEN = 0x0400
};
#define wxFD_DEFAULT_STYLE wxFD_OPEN