Merge branch 'filebox_allow_multi_select' of https://github.com/beru/nana into beru-filebox_allow_multi_select

This commit is contained in:
Jinhao
2019-01-18 00:54:01 +08:00
2 changed files with 81 additions and 12 deletions

View File

@@ -68,8 +68,12 @@ namespace nana
};
::std::string path() const;
::std::string file() const;
const ::std::string& path() const;
const ::std::string& file() const;
#if defined(NANA_WINDOWS)
const ::std::vector<::std::string>& files() const;
void allow_multi_select(bool allow);
#endif
/// Display the filebox dialog
bool show() const;